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

« back to all changes in this revision

Viewing changes to interfaces/blas/F77/src/dsyr.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 DSYR( UPLO, N, ALPHA, X, INCX, A, LDA )
 
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        UPLO
 
51
      INTEGER            INCX, LDA, N
 
52
      DOUBLE PRECISION   ALPHA
 
53
*     ..
 
54
*     .. Array Arguments ..
 
55
      DOUBLE PRECISION   A( LDA, * ), X( * )
 
56
*     ..
 
57
*
 
58
*  Purpose
 
59
*  =======
 
60
*
 
61
*  DSYR performs the symmetric rank 1 operation
 
62
*
 
63
*     A := alpha*x*x' + A,
 
64
*
 
65
*  where  alpha is a scalar, x is an n-element vector and A is an n by n
 
66
*  symmetric matrix.
 
67
*
 
68
*  Arguments
 
69
*  =========
 
70
*
 
71
*  UPLO    (input)                       CHARACTER*1
 
72
*          On entry, UPLO  specifies whether the upper or lower triangu-
 
73
*          lar part of the array A is to be referenced as follows:
 
74
*
 
75
*              UPLO = 'U' or 'u'   Only the upper triangular part of A
 
76
*                                  is to be referenced.
 
77
*
 
78
*              UPLO = 'L' or 'l'   Only the lower triangular part of A
 
79
*                                  is to be referenced.
 
80
*
 
81
*          Unchanged on exit.
 
82
*
 
83
*  N       (input)                       INTEGER
 
84
*          On entry, N specifies the order of the matrix A. N must be at
 
85
*          least zero. Unchanged on exit.
 
86
*
 
87
*  ALPHA   (input)                       DOUBLE PRECISION
 
88
*          On entry, ALPHA specifies the scalar alpha.   When  ALPHA  is
 
89
*          supplied as  zero then  the array X need not be set on input.
 
90
*          Unchanged on exit.
 
91
*
 
92
*  X       (input)                       DOUBLE PRECISION array
 
93
*          On entry,  X  is an incremented array of dimension  at  least
 
94
*          ( 1 + ( n - 1 ) * abs( INCX ) ).  Before entry, the incremen-
 
95
*          ted array X must contain the vector x. Unchanged on exit.
 
96
*
 
97
*  INCX    (input)                       INTEGER
 
98
*          On entry, INCX specifies the increment for the elements of X.
 
99
*          INCX must not be zero. Unchanged on exit.
 
100
*
 
101
*  A       (input/output)                DOUBLE PRECISION array
 
102
*          On entry,  A  is an array of DIMENSION ( LDA, n ). Before en-
 
103
*          try with  UPLO = 'U' or 'u', the  leading n by n upper trian-
 
104
*          gular part of the array  A  must contain the upper triangular
 
105
*          part of the symmetric matrix and the  strictly lower triangu-
 
106
*          lar part of  A is not referenced. On exit, the upper triangu-
 
107
*          lar part of the array  A is overwritten by the upper triangu-
 
108
*          lar part of the updated matrix.  Before entry with UPLO = 'L'
 
109
*          or 'l', the leading n by n lower triangular part of the array
 
110
*          A  must  contain the lower triangular  part  of the symmetric
 
111
*          matrix  and  the  strictly  upper triangular part of A is not
 
112
*          referenced.
 
113
*
 
114
*  LDA     (input)                       INTEGER
 
115
*          On entry, LDA  specifies the first dimension of A as declared
 
116
*          in the calling (sub) program. LDA must be at least  max(1,n).
 
117
*          Unchanged on exit.
 
118
*
 
119
*  Further Details
 
120
*  ===============
 
121
*
 
122
*  For further information on the Level 1 BLAS specification, see:
 
123
*
 
124
*  ``A Proposal for Standard Linear Algebra Subprograms''  by R. Hanson,
 
125
*  F. Krogh and C. Lawson, ACM SIGNUM Newsl., 8(16), 1973,
 
126
*
 
127
*  ``Basic Linear Algebra Subprograms for Fortran Usage''  by C. Lawson,
 
128
*  R. Hanson, D. Kincaid and F. Krogh,  ACM Transactions on Mathematical
 
129
*  Software, 5(3) pp 308-323, 1979.
 
130
*
 
131
*  For further information on the Level 2 BLAS specification, see:
 
132
*
 
133
*  ``An  Extended Set of  FORTRAN  Basic Linear Algebra Subprograms'' by
 
134
*  J. Dongarra,  J. Du Croz,  S. Hammarling and R. Hanson,  ACM Transac-
 
135
*  tions on Mathematical Software, 14(1) pp 1-17, 1988.
 
136
*
 
137
*  ``Algorithm 656: An extended Set of Basic Linear Algebra Subprograms:
 
138
*  Model Implementation and Test Programs''  by J. Dongarra, J. Du Croz,
 
139
*  S. Hammarling and R. Hanson,  ACM  Transactions on Mathematical Soft-
 
140
*  ware, 14(1) pp 18-32, 1988.
 
141
*
 
142
*  For further information on the Level 3 BLAS specification, see:
 
143
*
 
144
*  ``A Set of Level 3 Basic Linear Algebra Subprograms'' by J. Dongarra,
 
145
*  J. Du Croz, I. Duff and S. Hammarling, ACM Transactions on Mathemati-
 
146
*  cal Software, 16(1), pp 1-17, 1990.
 
147
*
 
148
*  =====================================================================
 
149
*
 
150
*     .. Parameters ..
 
151
      INTEGER            ILOWER, IUPPER
 
152
      PARAMETER          ( IUPPER = 121, ILOWER = 122 )
 
153
*     ..
 
154
*     .. Local Scalars ..
 
155
      INTEGER            INFO, IUPLO
 
156
*     ..
 
157
*     .. External Subroutines ..
 
158
      EXTERNAL           ATL_F77WRAP_DSYR, XERBLA
 
159
*     ..
 
160
*     .. External Functions ..
 
161
      EXTERNAL           LSAME
 
162
      LOGICAL            LSAME
 
163
*     ..
 
164
*     .. Intrinsic Functions ..
 
165
      INTRINSIC          MAX
 
166
*     ..
 
167
*     .. Executable Statements ..
 
168
*
 
169
      INFO = 0
 
170
*
 
171
      IF(      LSAME( UPLO  , 'U' ) ) THEN
 
172
         IUPLO = IUPPER
 
173
      ELSE IF( LSAME( UPLO  , 'L' ) ) THEN
 
174
         IUPLO = ILOWER
 
175
      ELSE IF( INFO.EQ.0 ) THEN
 
176
         INFO  = 1
 
177
      END IF
 
178
*
 
179
      IF( INFO.EQ.0 ) THEN
 
180
         IF( N.LT.0 ) THEN
 
181
            INFO = 2
 
182
         ELSE IF( INCX.EQ.0 ) THEN
 
183
            INFO = 5
 
184
         ELSE IF( LDA.LT.MAX( 1, N ) ) THEN
 
185
            INFO = 7
 
186
         END IF
 
187
      END IF
 
188
*
 
189
      IF( INFO.NE.0 ) THEN
 
190
         CALL XERBLA( 'DSYR  ', INFO )
 
191
         RETURN
 
192
      END IF
 
193
*
 
194
      CALL ATL_F77WRAP_DSYR( IUPLO, N, ALPHA, X, INCX, A, LDA )
 
195
*
 
196
      RETURN
 
197
*
 
198
*     End of DSYR
 
199
*
 
200
      END