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

« back to all changes in this revision

Viewing changes to interfaces/blas/F77/src/strsv.f

  • 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
      SUBROUTINE STRSV( UPLO, TRANS, DIAG, N, A, LDA, X, INCX )
 
2
*
 
3
*  -- Automatically Tuned Linear Algebra Software (ATLAS)
 
4
*     (C) Copyright 2000 All Rights Reserved
 
5
*
 
6
*  -- ATLAS routine -- F77 Interface -- 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
*     .. Scalar Arguments ..
 
50
      CHARACTER*1        DIAG, TRANS, UPLO
 
51
      INTEGER            INCX, LDA, N
 
52
*     ..
 
53
*     .. Array Arguments ..
 
54
      REAL               A( LDA, * ), X( * )
 
55
*     ..
 
56
*
 
57
*  Purpose
 
58
*  =======
 
59
*
 
60
*  STRSV solves one of the systems of equations
 
61
*
 
62
*     A*x = b,   or   A'*x = b,
 
63
*
 
64
*  where b and x are n-element vectors and  A is an n by n unit, or non-
 
65
*  unit, upper or lower triangular matrix.
 
66
*
 
67
*  No test for  singularity  or  near-singularity  is included  in  this
 
68
*  routine. Such tests must be performed before calling this routine.
 
69
*
 
70
*  Arguments
 
71
*  =========
 
72
*
 
73
*  UPLO    (input)                       CHARACTER*1
 
74
*          On entry, UPLO  specifies whether  the  matrix is an upper or
 
75
*          lower triangular matrix as follows:
 
76
*
 
77
*              UPLO = 'U' or 'u'   A is an upper triangular matrix.
 
78
*
 
79
*              UPLO = 'L' or 'l'   A is a lower triangular matrix.
 
80
*
 
81
*          Unchanged on exit.
 
82
*
 
83
*  TRANS   (input)                       CHARACTER*1.
 
84
*          On entry,  TRANS specifies the equations to be solved as fol-
 
85
*          lows:
 
86
*
 
87
*             TRANS = 'N' or 'n'   A *x = b,
 
88
*
 
89
*             TRANS = 'T' or 't'   A'*x = b,
 
90
*
 
91
*             TRANS = 'T' or 't'   A'*x = b.
 
92
*
 
93
*          Unchanged on exit.
 
94
*
 
95
*  DIAG    (input)                       CHARACTER*1
 
96
*          On entry, DIAG specifies whether or not A is unit triangu-
 
97
*          lar as follows:
 
98
*
 
99
*             DIAG = 'U' or 'u'   A is assumed to be unit triangular.
 
100
*
 
101
*             DIAG = 'N' or 'n'   A is not assumed to be unit
 
102
*                                 triangular.
 
103
*
 
104
*          Unchanged on exit.
 
105
*
 
106
*  N       (input)                       INTEGER
 
107
*          On entry, N specifies the order of the matrix A. N must be at
 
108
*          least zero. Unchanged on exit.
 
109
*
 
110
*  A       (input)                       REAL array
 
111
*          On entry, A is an array of dimension ( LDA, n ). Before entry
 
112
*          with  UPLO = 'U' or 'u',  the leading n by n upper triangular
 
113
*          part of the array A must contain the upper triangular  matrix
 
114
*          and the strictly lower triangular part of  A  is not referen-
 
115
*          ced. Before entry with UPLO = 'L' or 'l', the leading  n by n
 
116
*          lower triangular part of the array  A  must contain the lower
 
117
*          triangular matrix and the strictly upper triangular part of A
 
118
*          is not referenced.
 
119
*          Note that when  DIAG = 'U' or 'u', the diagonal elements of A
 
120
*          are not referenced  either,  but are assumed to be unity. Un-
 
121
*          changed on exit.
 
122
*
 
123
*  LDA     (input)                       INTEGER
 
124
*          On entry, LDA  specifies the first dimension of A as declared
 
125
*          in the calling (sub) program. LDA must be at least  max(1,n).
 
126
*          Unchanged on exit.
 
127
*
 
128
*  X       (input/output)                REAL array
 
129
*          On entry,  X  is an incremented array of dimension  at  least
 
130
*          ( 1 + ( n - 1 ) * abs( INCX ) ).  Before entry, the incremen-
 
131
*          ted array X must contain the n element right-hand side vector
 
132
*          b. On exit, X is overwritten with the solution vector x.
 
133
*
 
134
*  INCX    (input)                       INTEGER
 
135
*          On entry, INCX specifies the increment for the elements of X.
 
136
*          INCX must not be zero. Unchanged on exit.
 
137
*
 
138
*  Further Details
 
139
*  ===============
 
140
*
 
141
*  For further information on the Level 1 BLAS specification, see:
 
142
*
 
143
*  ``A Proposal for Standard Linear Algebra Subprograms''  by R. Hanson,
 
144
*  F. Krogh and C. Lawson, ACM SIGNUM Newsl., 8(16), 1973,
 
145
*
 
146
*  ``Basic Linear Algebra Subprograms for Fortran Usage''  by C. Lawson,
 
147
*  R. Hanson, D. Kincaid and F. Krogh,  ACM Transactions on Mathematical
 
148
*  Software, 5(3) pp 308-323, 1979.
 
149
*
 
150
*  For further information on the Level 2 BLAS specification, see:
 
151
*
 
152
*  ``An  Extended Set of  FORTRAN  Basic Linear Algebra Subprograms'' by
 
153
*  J. Dongarra,  J. Du Croz,  S. Hammarling and R. Hanson,  ACM Transac-
 
154
*  tions on Mathematical Software, 14(1) pp 1-17, 1988.
 
155
*
 
156
*  ``Algorithm 656: An extended Set of Basic Linear Algebra Subprograms:
 
157
*  Model Implementation and Test Programs''  by J. Dongarra, J. Du Croz,
 
158
*  S. Hammarling and R. Hanson,  ACM  Transactions on Mathematical Soft-
 
159
*  ware, 14(1) pp 18-32, 1988.
 
160
*
 
161
*  For further information on the Level 3 BLAS specification, see:
 
162
*
 
163
*  ``A Set of Level 3 Basic Linear Algebra Subprograms'' by J. Dongarra,
 
164
*  J. Du Croz, I. Duff and S. Hammarling, ACM Transactions on Mathemati-
 
165
*  cal Software, 16(1), pp 1-17, 1990.
 
166
*
 
167
*  =====================================================================
 
168
*
 
169
*     .. Parameters ..
 
170
      INTEGER            ILOWER, IUPPER
 
171
      PARAMETER          ( IUPPER = 121, ILOWER = 122 )
 
172
      INTEGER            ICOTRAN, INOTRAN, ITRAN
 
173
      PARAMETER          ( INOTRAN = 111, ITRAN = 112, ICOTRAN = 113 )
 
174
      INTEGER            INONUNIT, IUNIT
 
175
      PARAMETER          ( INONUNIT = 131, IUNIT = 132 )
 
176
*     ..
 
177
*     .. Local Scalars ..
 
178
      INTEGER            IDIAG, INFO, ITRANS, IUPLO
 
179
*     ..
 
180
*     .. External Subroutines ..
 
181
      EXTERNAL           ATL_F77WRAP_STRSV, XERBLA
 
182
*     ..
 
183
*     .. External Functions ..
 
184
      EXTERNAL           LSAME
 
185
      LOGICAL            LSAME
 
186
*     ..
 
187
*     .. Intrinsic Functions ..
 
188
      INTRINSIC          MAX
 
189
*     ..
 
190
*     .. Executable Statements ..
 
191
*
 
192
      INFO = 0
 
193
*
 
194
      IF(      LSAME( UPLO , 'U' ) ) THEN
 
195
         IUPLO = IUPPER
 
196
      ELSE IF( LSAME( UPLO , 'L' ) ) THEN
 
197
         IUPLO = ILOWER
 
198
      ELSE IF( INFO.EQ.0 ) THEN
 
199
         INFO  = 1
 
200
      END IF
 
201
*
 
202
      IF(      LSAME( TRANS, 'N' ) ) THEN
 
203
         ITRANS = INOTRAN
 
204
      ELSE IF( LSAME( TRANS, 'T' ) ) THEN
 
205
         ITRANS = ITRAN
 
206
      ELSE IF( LSAME( TRANS, 'C' ) ) THEN
 
207
         ITRANS = ICOTRAN
 
208
      ELSE IF( INFO.EQ.0 ) THEN
 
209
         INFO   = 2
 
210
      END IF
 
211
*
 
212
      IF(      LSAME( DIAG , 'N' ) ) THEN
 
213
         IDIAG = INONUNIT
 
214
      ELSE IF( LSAME( DIAG , 'U' ) ) THEN
 
215
         IDIAG = IUNIT
 
216
      ELSE IF( INFO.EQ.0 ) THEN
 
217
         INFO  = 3
 
218
      END IF
 
219
*
 
220
      IF( INFO.EQ.0 ) THEN
 
221
         IF( N.LT.0 ) THEN
 
222
            INFO = 4
 
223
         ELSE IF( LDA.LT.MAX( 1, N ) ) THEN
 
224
            INFO = 6
 
225
         ELSE IF( INCX.EQ.0 ) THEN
 
226
            INFO = 8
 
227
         END IF
 
228
      END IF
 
229
*
 
230
      IF( INFO.NE.0 ) THEN
 
231
         CALL XERBLA( 'STRSV ', INFO )
 
232
         RETURN
 
233
      END IF
 
234
*
 
235
      CALL ATL_F77WRAP_STRSV( IUPLO, ITRANS, IDIAG, N, A, LDA,
 
236
     $                        X, INCX )
 
237
*
 
238
      RETURN
 
239
*
 
240
*     End of STRSV
 
241
*
 
242
      END