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

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Sébastien Villemot
  • Date: 2013-06-11 15:58:16 UTC
  • mfrom: (1.1.3 upstream)
  • mto: (2.2.21 experimental)
  • mto: This revision was merged to the branch mainline in revision 26.
  • Revision ID: package-import@ubuntu.com-20130611155816-b72z8f621tuhbzn0
Tags: upstream-3.10.1
Import upstream version 3.10.1

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
 
#ifdef TREAL
59
 
#define    MinN_tpmvLTU      16
60
 
#else
61
 
#define    MinN_tpmvLTU       8
62
 
#endif
63
 
 
64
 
void Mjoin( PATL, tpmvLTU )
65
 
(
66
 
   const int                  N,
67
 
   const TYPE                 * A,
68
 
   const int                  LDA,
69
 
   TYPE                       * X
70
 
)
71
 
{
72
 
/*
73
 
 * Purpose
74
 
 * =======
75
 
 *
76
 
 * Mjoin( PATL, tpmvLTU ) performs the following matrix-vector operation
77
 
 *
78
 
 *    x := A'* x,
79
 
 *
80
 
 * where x is an n-element vector and  A  is an n by n  unit, lower tri-
81
 
 * angular matrix, supplied in packed form.
82
 
 *
83
 
 * This is a  recursive  version of the  algorithm.  For a more detailed
84
 
 * description of  the arguments of this function, see the reference im-
85
 
 * plementation in the  ATLAS/src/blas/reference directory.
86
 
 *
87
 
 * ---------------------------------------------------------------------
88
 
 */
89
 
/*
90
 
 * .. Local Variables ..
91
 
 */
92
 
#ifdef TREAL
93
 
#define    one                ATL_rone
94
 
#else
95
 
   const TYPE                 one[2] = { ATL_rone, ATL_rzero };
96
 
#endif
97
 
   TYPE                       * x0;
98
 
   int                        lda = LDA, n1, n1s, n2;
99
 
/* ..
100
 
 * .. Executable Statements ..
101
 
 *
102
 
 */
103
 
   if( N <= MinN_tpmvLTU )
104
 
   { Mjoin( PATL, reftpmvLTU )( N, A, LDA, X, 1 ); }
105
 
   else
106
 
   {
107
 
      n2 = N - ( n1 = ( N >> 1 ) ); n1s = (n1 SHIFT);
108
 
      Mjoin( PATL, tpmvLTU )( n1, A, lda, X ); x0 = X; X += n1s;
109
 
      Mjoin( PATL, gpmvLT_a1_x1_b1_y1 )( n1, n2, one, A + n1s, lda, X, 1,
110
 
                                         one, x0, 1 );
111
 
      MLpnext( n1, A, lda ); Mjoin( PATL, tpmvLTU )( n2, A, lda, X );
112
 
   }
113
 
/*
114
 
 * End of Mjoin( PATL, tpmvLTU )
115
 
 */
116
 
}