~ubuntu-branches/ubuntu/trusty/atlas/trusty

« back to all changes in this revision

Viewing changes to src/blas/level2/kernel/ATL_tpmvLC.c

  • Committer: Package Import Robot
  • Author(s): Sébastien Villemot
  • Date: 2013-07-27 14:26:05 UTC
  • mfrom: (18.1.8 sid)
  • Revision ID: package-import@ubuntu.com-20130727142605-5rh3p972h1whdo99
Tags: 3.10.1-2
* Allow the generic package to build on machines with CPU throttling
  enabled. Otherwise the package FTBFS on some buildds (e.g. biber).
  Implementation is done by reactivating the "-Si cputhrchk 0" flag
  (cpu-throtthling-check.diff), and using it in debian/rules.
* Add architectural defaults for armel and mips.
* armhf.diff: do not enforce 32-registers FPU for Fortran

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 25, 2000
7
 
 *
8
 
 * Author         : Antoine P. Petitet
9
 
 * Contributor(s) : R. Clint Whaley
10
 
 * Originally developed at the University of Tennessee,
11
 
 * Innovative Computing Laboratory, Knoxville TN, 37996-1301, USA.
12
 
 *
13
 
 * ---------------------------------------------------------------------
14
 
 *
15
 
 * -- Copyright notice and Licensing terms:
16
 
 *
17
 
 *  Redistribution  and  use in  source and binary forms, with or without
18
 
 *  modification, are  permitted provided  that the following  conditions
19
 
 *  are met:
20
 
 *
21
 
 * 1. Redistributions  of  source  code  must retain the above copyright
22
 
 *    notice, this list of conditions and the following disclaimer.
23
 
 * 2. Redistributions in binary form must reproduce  the above copyright
24
 
 *    notice,  this list of conditions, and the  following disclaimer in
25
 
 *    the documentation and/or other materials provided with the distri-
26
 
 *    bution.
27
 
 * 3. The name of the University,  the ATLAS group,  or the names of its
28
 
 *    contributors  may not be used to endorse or promote products deri-
29
 
 *    ved from this software without specific written permission.
30
 
 *
31
 
 * -- Disclaimer:
32
 
 *
33
 
 * THIS  SOFTWARE  IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
34
 
 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,  INCLUDING,  BUT NOT
35
 
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
36
 
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE UNIVERSITY
37
 
 * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,  INDIRECT, INCIDENTAL, SPE-
38
 
 * CIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
39
 
 * TO,  PROCUREMENT  OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
40
 
 * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEO-
41
 
 * RY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT  (IN-
42
 
 * CLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
43
 
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
44
 
 *
45
 
 * ---------------------------------------------------------------------
46
 
 */
47
 
/*
48
 
 * Include files
49
 
 */
50
 
#include "atlas_misc.h"
51
 
#include "atlas_mv.h"
52
 
#include "atlas_r1.h"
53
 
#include "atlas_level1.h"
54
 
#include "atlas_kernel2.h"
55
 
#include "atlas_reflvl2.h"
56
 
#include "atlas_lvl2.h"
57
 
 
58
 
void Mjoin( PATL, tpmvLC )
59
 
(
60
 
   const enum ATLAS_DIAG      DIAG,
61
 
   const int                  N,         /* N > 0 assumed */
62
 
   const TYPE                 * A,
63
 
   const int                  LDA,
64
 
   TYPE                       * X
65
 
)
66
 
{
67
 
/*
68
 
 * Purpose
69
 
 * =======
70
 
 *
71
 
 * Mjoin( PATL, tpmvLC ) performs the following matrix-vector operation
72
 
 *
73
 
 *    x := conjg( A  ) * x,
74
 
 *
75
 
 * where x is an n-element vector and  A is an n by n unit or  non-unit,
76
 
 * lower triangular matrix supplied in packed form.
77
 
 *
78
 
 * This is a blocked version of the algorithm.  For a more detailed des-
79
 
 * cription of  the arguments of this function, see the reference imple-
80
 
 * mentation in the  ATLAS/src/blas/reference directory.
81
 
 *
82
 
 * ---------------------------------------------------------------------
83
 
 */
84
 
/*
85
 
 * .. Local Variables ..
86
 
 */
87
 
#ifdef TREAL
88
 
#define    one                ATL_rone
89
 
#else
90
 
   TYPE                       one[2] = { ATL_rone, ATL_rzero };
91
 
#endif
92
 
#ifdef ATL_AXPYMV
93
 
   TYPE                       * A0, * x0;
94
 
   int                        incX, lda, lda0, mb, mb1, n, nb;
95
 
#else
96
 
   TYPE                       * x0;
97
 
   int                        incX, lda, m, mb, n1, nb, nb1;
98
 
#endif
99
 
   void                       (*tpmv0)( const int, const TYPE *, const int,
100
 
                              TYPE * );
101
 
#define    gpmv0              Mjoin( PATL, gpmvLNc_a1_x1_b1_y1  )
102
 
/* ..
103
 
 * .. Executable Statements ..
104
 
 *
105
 
 */
106
 
   ATL_GetPartMVN( A, LDA, &mb, &nb );
107
 
 
108
 
   if( DIAG == AtlasNonUnit ) tpmv0 = Mjoin( PATL, tpmvLCN );
109
 
   else                       tpmv0 = Mjoin( PATL, tpmvLCU );
110
 
 
111
 
#ifdef ATL_AXPYMV
112
 
   mb1  = N - ( ( N - 1 ) / mb ) * mb; incX = (mb SHIFT); x0 = X;
113
 
   lda = lda0 = LDA; A0 = (TYPE *)(A); MLpnext( N, A, lda );
114
 
 
115
 
   for( n = N - mb, X += ((N-mb) SHIFT); n > 0; n -= mb, X -= incX )
116
 
   {
117
 
      MLpprev( mb, A, lda ); tpmv0( mb, A, lda, X );
118
 
      gpmv0( mb, n, one, A0 + (n SHIFT), lda0, x0, 1, one, X, 1 );
119
 
   }
120
 
   tpmv0( mb1, A0, lda0, x0 );
121
 
#else
122
 
   nb1  = N - ( n1  = ( ( N - 1 ) / nb ) * nb );
123
 
   incX = (nb SHIFT); x0 = ( X += (n1 SHIFT) );
124
 
   lda = LDA; MLpnext( n1, A, lda ); tpmv0( nb1, A, lda, X ); x0 = X; X -= incX;
125
 
   for( m = nb1; m < N; m += nb, X -= incX, x0 -= incX )
126
 
   {
127
 
      MLpprev( nb, A, lda );
128
 
      gpmv0( m, nb, one, A + (nb SHIFT), lda, X, 1, one, x0, 1 );
129
 
      tpmv0( nb, A, lda, X );
130
 
   }
131
 
#endif
132
 
/*
133
 
 * End of Mjoin( PATL, tpmvLC )
134
 
 */
135
 
}