~ubuntu-branches/ubuntu/vivid/atlas/vivid

« back to all changes in this revision

Viewing changes to src/blas/reference/level3/ATL_zrefher2kUC.c

  • Committer: Bazaar Package Importer
  • Author(s): Camm Maguire
  • Date: 2002-04-13 10:07:52 UTC
  • Revision ID: james.westby@ubuntu.com-20020413100752-va9zm0rd4gpurdkq
Tags: upstream-3.2.1ln
ImportĀ upstreamĀ versionĀ 3.2.1ln

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* ---------------------------------------------------------------------
 
2
 *
 
3
 * -- Automatically Tuned Linear Algebra Software (ATLAS)
 
4
 *    (C) Copyright 2000 All Rights Reserved
 
5
 *
 
6
 * -- ATLAS routine -- Version 3.2 -- December 15, 2000
 
7
 *
 
8
 * -- Suggestions,  comments,  bugs reports should be sent to the follo-
 
9
 *    wing e-mail address: atlas@cs.utk.edu
 
10
 *
 
11
 * Author         : Antoine P. Petitet
 
12
 * University of Tennessee - Innovative Computing Laboratory
 
13
 * Knoxville TN, 37996-1301, USA.
 
14
 *
 
15
 * ---------------------------------------------------------------------
 
16
 *
 
17
 * -- Copyright notice and Licensing terms:
 
18
 *
 
19
 *  Redistribution  and  use in  source and binary forms, with or without
 
20
 *  modification, are  permitted provided  that the following  conditions
 
21
 *  are met:
 
22
 *
 
23
 * 1. Redistributions  of  source  code  must retain the above copyright
 
24
 *    notice, this list of conditions and the following disclaimer.
 
25
 * 2. Redistributions in binary form must reproduce  the above copyright
 
26
 *    notice,  this list of conditions, and the  following disclaimer in
 
27
 *    the documentation and/or other materials provided with the distri-
 
28
 *    bution.
 
29
 * 3. The name of the University,  the ATLAS group,  or the names of its
 
30
 *    contributors  may not be used to endorse or promote products deri-
 
31
 *    ved from this software without specific written permission.
 
32
 *
 
33
 * -- Disclaimer:
 
34
 *
 
35
 * THIS  SOFTWARE  IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 
36
 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,  INCLUDING,  BUT NOT
 
37
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 
38
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE UNIVERSITY
 
39
 * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,  INDIRECT, INCIDENTAL, SPE-
 
40
 * CIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
 
41
 * TO,  PROCUREMENT  OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
 
42
 * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEO-
 
43
 * RY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT  (IN-
 
44
 * CLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 
45
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
46
 *
 
47
 * ---------------------------------------------------------------------
 
48
 */
 
49
/*
 
50
 * Include files
 
51
 */
 
52
#include "atlas_refmisc.h"
 
53
#include "atlas_reflvl3.h"
 
54
#include "atlas_reflevel3.h"
 
55
 
 
56
void ATL_zrefher2kUC
 
57
(
 
58
   const int                  N,
 
59
   const int                  K,
 
60
   const double               * ALPHA,
 
61
   const double               * A,
 
62
   const int                  LDA,
 
63
   const double               * B,
 
64
   const int                  LDB,
 
65
   const double               BETA,
 
66
   double                     * C,
 
67
   const int                  LDC
 
68
)
 
69
{
 
70
/*
 
71
 * Purpose
 
72
 * =======
 
73
 *
 
74
 * ATL_zrefher2kUC( ... )
 
75
 *
 
76
 * <=>
 
77
 *
 
78
 * ATL_zrefher2k( AtlasUpper, AtlasConjTrans, ... )
 
79
 *
 
80
 * See ATL_zrefher2k for details.
 
81
 *
 
82
 * ---------------------------------------------------------------------
 
83
 */
 
84
/*
 
85
 * .. Local Variables ..
 
86
 */
 
87
   double                     t0_i, t0_r, t1_i, t1_r;
 
88
   int                        i, iali, ialj, ibli, iblj, icij, j, jai, jaj,
 
89
                              jbi, jbj, jcj, l, lda2 = ( LDA << 1 ),
 
90
                              ldb2 = ( LDB << 1 ), ldc2 = ( LDC << 1 );
 
91
/* ..
 
92
 * .. Executable Statements ..
 
93
 *
 
94
 */
 
95
   for( j = 0,      jaj  = 0,    jbj  = 0,    jcj  = 0;
 
96
        j < N; j++, jaj += lda2, jbj += ldb2, jcj += ldc2 )
 
97
   {
 
98
      for( i  = 0,      jai  = 0,    jbi  = 0,    icij  = jcj;
 
99
           i <= j; i++, jai += lda2, jbi += ldb2, icij += 2 )
 
100
      {
 
101
         Mset( ATL_dZERO, ATL_dZERO, t0_r, t0_i );
 
102
         Mset( ATL_dZERO, ATL_dZERO, t1_r, t1_i );
 
103
         for( l = 0,      iali  = jai, ialj  = jaj, ibli  = jbi, iblj  = jbj;
 
104
              l < K; l++, iali += 2,   ialj += 2,   ibli += 2,   iblj += 2 )
 
105
         {
 
106
            Mmla( A[iali], -A[iali+1], B[iblj], B[iblj+1], t0_r, t0_i );
 
107
            Mmla( B[ibli], -B[ibli+1], A[ialj], A[ialj+1], t1_r, t1_i );
 
108
         }
 
109
         if( i == j )
 
110
         {
 
111
            Mdelscal( BETA, C[icij] );
 
112
            Mset( C[icij] + ALPHA[0] * t0_r - ALPHA[1] * t0_i +
 
113
                            ALPHA[0] * t1_r + ALPHA[1] * t1_i,
 
114
                  ATL_dZERO, C[icij], C[icij+1] );
 
115
         }
 
116
         else
 
117
         {
 
118
            Mzelscal( BETA, ATL_dZERO, C[icij], C[icij+1] );
 
119
            Mmla( ALPHA[0],  ALPHA[1], t0_r, t0_i, C[icij], C[icij+1] );
 
120
            Mmla( ALPHA[0], -ALPHA[1], t1_r, t1_i, C[icij], C[icij+1] );
 
121
         }
 
122
      }
 
123
   }
 
124
/*
 
125
 * End of ATL_zrefher2kUC
 
126
 */
 
127
}