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

« back to all changes in this revision

Viewing changes to src/blas/level2/kernel/ATL_trsvUTU.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_trsvUTU      16
60
 
#else
61
 
#define    MinN_trsvUTU       8
62
 
#endif
63
 
 
64
 
void Mjoin( PATL, trsvUTU )
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, trsvUTU ) solves the following triangular system of equations
77
 
 *
78
 
 *    A'* x = b,
79
 
 *
80
 
 * where b and x are n-element vectors and  A  is an n by n  unit, upper
81
 
 * triangular matrix.
82
 
 *
83
 
 * No test for  singularity  or  near-singularity  is included  in  this
84
 
 * routine. Such tests must be performed before calling this routine.
85
 
 *
86
 
 * This is a  recursive  version of the  algorithm.  For a more detailed
87
 
 * description of  the arguments of this function, see the reference im-
88
 
 * plementation in the  ATLAS/src/blas/reference directory.
89
 
 *
90
 
 * ---------------------------------------------------------------------
91
 
 */
92
 
/*
93
 
 * .. Local Variables ..
94
 
 */
95
 
#ifdef TREAL
96
 
#define    none               ATL_rnone
97
 
#define    one                ATL_rone
98
 
#else
99
 
   const TYPE                 none[2] = { ATL_rnone, ATL_rzero },
100
 
                              one [2] = { ATL_rone,  ATL_rzero };
101
 
#endif
102
 
   TYPE                       * x0;
103
 
   int                        n1, n1s, n2;
104
 
/* ..
105
 
 * .. Executable Statements ..
106
 
 *
107
 
 */
108
 
   if( N <= MinN_trsvUTU )
109
 
   { Mjoin( PATL, reftrsvUTU )( N, A, LDA, X, 1 ); }
110
 
   else
111
 
   {
112
 
      n2 = N - ( n1 = ( N >> 1 ) ); n1s = (n1 SHIFT);
113
 
      Mjoin( PATL, trsvUTU )( n1, A, LDA, X );
114
 
      x0 = X; MUrnext( n1, A, LDA ); X += n1s;
115
 
      Mjoin( PATL, gemv )( AtlasTrans, n2, n1, none, A - n1s, LDA,
116
 
                           x0, 1, one, X, 1 );
117
 
      Mjoin( PATL, trsvUTU )( n2, A, LDA, X );
118
 
   }
119
 
/*
120
 
 * End of Mjoin( PATL, trsvUTU )
121
 
 */
122
 
}