Statistiques
| Révision :

root / src / blas / dsymv.f @ 5

Historique | Voir | Annoter | Télécharger (7,63 ko)

1 1 pfleura2
      SUBROUTINE DSYMV(UPLO,N,ALPHA,A,LDA,X,INCX,BETA,Y,INCY)
2 1 pfleura2
*     .. Scalar Arguments ..
3 1 pfleura2
      DOUBLE PRECISION ALPHA,BETA
4 1 pfleura2
      INTEGER INCX,INCY,LDA,N
5 1 pfleura2
      CHARACTER UPLO
6 1 pfleura2
*     ..
7 1 pfleura2
*     .. Array Arguments ..
8 1 pfleura2
      DOUBLE PRECISION A(LDA,*),X(*),Y(*)
9 1 pfleura2
*     ..
10 1 pfleura2
*
11 1 pfleura2
*  Purpose
12 1 pfleura2
*  =======
13 1 pfleura2
*
14 1 pfleura2
*  DSYMV  performs the matrix-vector  operation
15 1 pfleura2
*
16 1 pfleura2
*     y := alpha*A*x + beta*y,
17 1 pfleura2
*
18 1 pfleura2
*  where alpha and beta are scalars, x and y are n element vectors and
19 1 pfleura2
*  A is an n by n symmetric matrix.
20 1 pfleura2
*
21 1 pfleura2
*  Arguments
22 1 pfleura2
*  ==========
23 1 pfleura2
*
24 1 pfleura2
*  UPLO   - CHARACTER*1.
25 1 pfleura2
*           On entry, UPLO specifies whether the upper or lower
26 1 pfleura2
*           triangular part of the array A is to be referenced as
27 1 pfleura2
*           follows:
28 1 pfleura2
*
29 1 pfleura2
*              UPLO = 'U' or 'u'   Only the upper triangular part of A
30 1 pfleura2
*                                  is to be referenced.
31 1 pfleura2
*
32 1 pfleura2
*              UPLO = 'L' or 'l'   Only the lower triangular part of A
33 1 pfleura2
*                                  is to be referenced.
34 1 pfleura2
*
35 1 pfleura2
*           Unchanged on exit.
36 1 pfleura2
*
37 1 pfleura2
*  N      - INTEGER.
38 1 pfleura2
*           On entry, N specifies the order of the matrix A.
39 1 pfleura2
*           N must be at least zero.
40 1 pfleura2
*           Unchanged on exit.
41 1 pfleura2
*
42 1 pfleura2
*  ALPHA  - DOUBLE PRECISION.
43 1 pfleura2
*           On entry, ALPHA specifies the scalar alpha.
44 1 pfleura2
*           Unchanged on exit.
45 1 pfleura2
*
46 1 pfleura2
*  A      - DOUBLE PRECISION array of DIMENSION ( LDA, n ).
47 1 pfleura2
*           Before entry with  UPLO = 'U' or 'u', the leading n by n
48 1 pfleura2
*           upper triangular part of the array A must contain the upper
49 1 pfleura2
*           triangular part of the symmetric matrix and the strictly
50 1 pfleura2
*           lower triangular part of A is not referenced.
51 1 pfleura2
*           Before entry with UPLO = 'L' or 'l', the leading n by n
52 1 pfleura2
*           lower triangular part of the array A must contain the lower
53 1 pfleura2
*           triangular part of the symmetric matrix and the strictly
54 1 pfleura2
*           upper triangular part of A is not referenced.
55 1 pfleura2
*           Unchanged on exit.
56 1 pfleura2
*
57 1 pfleura2
*  LDA    - INTEGER.
58 1 pfleura2
*           On entry, LDA specifies the first dimension of A as declared
59 1 pfleura2
*           in the calling (sub) program. LDA must be at least
60 1 pfleura2
*           max( 1, n ).
61 1 pfleura2
*           Unchanged on exit.
62 1 pfleura2
*
63 1 pfleura2
*  X      - DOUBLE PRECISION array of dimension at least
64 1 pfleura2
*           ( 1 + ( n - 1 )*abs( INCX ) ).
65 1 pfleura2
*           Before entry, the incremented array X must contain the n
66 1 pfleura2
*           element vector x.
67 1 pfleura2
*           Unchanged on exit.
68 1 pfleura2
*
69 1 pfleura2
*  INCX   - INTEGER.
70 1 pfleura2
*           On entry, INCX specifies the increment for the elements of
71 1 pfleura2
*           X. INCX must not be zero.
72 1 pfleura2
*           Unchanged on exit.
73 1 pfleura2
*
74 1 pfleura2
*  BETA   - DOUBLE PRECISION.
75 1 pfleura2
*           On entry, BETA specifies the scalar beta. When BETA is
76 1 pfleura2
*           supplied as zero then Y need not be set on input.
77 1 pfleura2
*           Unchanged on exit.
78 1 pfleura2
*
79 1 pfleura2
*  Y      - DOUBLE PRECISION array of dimension at least
80 1 pfleura2
*           ( 1 + ( n - 1 )*abs( INCY ) ).
81 1 pfleura2
*           Before entry, the incremented array Y must contain the n
82 1 pfleura2
*           element vector y. On exit, Y is overwritten by the updated
83 1 pfleura2
*           vector y.
84 1 pfleura2
*
85 1 pfleura2
*  INCY   - INTEGER.
86 1 pfleura2
*           On entry, INCY specifies the increment for the elements of
87 1 pfleura2
*           Y. INCY must not be zero.
88 1 pfleura2
*           Unchanged on exit.
89 1 pfleura2
*
90 1 pfleura2
*
91 1 pfleura2
*  Level 2 Blas routine.
92 1 pfleura2
*
93 1 pfleura2
*  -- Written on 22-October-1986.
94 1 pfleura2
*     Jack Dongarra, Argonne National Lab.
95 1 pfleura2
*     Jeremy Du Croz, Nag Central Office.
96 1 pfleura2
*     Sven Hammarling, Nag Central Office.
97 1 pfleura2
*     Richard Hanson, Sandia National Labs.
98 1 pfleura2
*
99 1 pfleura2
*
100 1 pfleura2
*     .. Parameters ..
101 1 pfleura2
      DOUBLE PRECISION ONE,ZERO
102 1 pfleura2
      PARAMETER (ONE=1.0D+0,ZERO=0.0D+0)
103 1 pfleura2
*     ..
104 1 pfleura2
*     .. Local Scalars ..
105 1 pfleura2
      DOUBLE PRECISION TEMP1,TEMP2
106 1 pfleura2
      INTEGER I,INFO,IX,IY,J,JX,JY,KX,KY
107 1 pfleura2
*     ..
108 1 pfleura2
*     .. External Functions ..
109 1 pfleura2
      LOGICAL LSAME
110 1 pfleura2
      EXTERNAL LSAME
111 1 pfleura2
*     ..
112 1 pfleura2
*     .. External Subroutines ..
113 1 pfleura2
      EXTERNAL XERBLA
114 1 pfleura2
*     ..
115 1 pfleura2
*     .. Intrinsic Functions ..
116 1 pfleura2
      INTRINSIC MAX
117 1 pfleura2
*     ..
118 1 pfleura2
*
119 1 pfleura2
*     Test the input parameters.
120 1 pfleura2
*
121 1 pfleura2
      INFO = 0
122 1 pfleura2
      IF (.NOT.LSAME(UPLO,'U') .AND. .NOT.LSAME(UPLO,'L')) THEN
123 1 pfleura2
          INFO = 1
124 1 pfleura2
      ELSE IF (N.LT.0) THEN
125 1 pfleura2
          INFO = 2
126 1 pfleura2
      ELSE IF (LDA.LT.MAX(1,N)) THEN
127 1 pfleura2
          INFO = 5
128 1 pfleura2
      ELSE IF (INCX.EQ.0) THEN
129 1 pfleura2
          INFO = 7
130 1 pfleura2
      ELSE IF (INCY.EQ.0) THEN
131 1 pfleura2
          INFO = 10
132 1 pfleura2
      END IF
133 1 pfleura2
      IF (INFO.NE.0) THEN
134 1 pfleura2
          CALL XERBLA('DSYMV ',INFO)
135 1 pfleura2
          RETURN
136 1 pfleura2
      END IF
137 1 pfleura2
*
138 1 pfleura2
*     Quick return if possible.
139 1 pfleura2
*
140 1 pfleura2
      IF ((N.EQ.0) .OR. ((ALPHA.EQ.ZERO).AND. (BETA.EQ.ONE))) RETURN
141 1 pfleura2
*
142 1 pfleura2
*     Set up the start points in  X  and  Y.
143 1 pfleura2
*
144 1 pfleura2
      IF (INCX.GT.0) THEN
145 1 pfleura2
          KX = 1
146 1 pfleura2
      ELSE
147 1 pfleura2
          KX = 1 - (N-1)*INCX
148 1 pfleura2
      END IF
149 1 pfleura2
      IF (INCY.GT.0) THEN
150 1 pfleura2
          KY = 1
151 1 pfleura2
      ELSE
152 1 pfleura2
          KY = 1 - (N-1)*INCY
153 1 pfleura2
      END IF
154 1 pfleura2
*
155 1 pfleura2
*     Start the operations. In this version the elements of A are
156 1 pfleura2
*     accessed sequentially with one pass through the triangular part
157 1 pfleura2
*     of A.
158 1 pfleura2
*
159 1 pfleura2
*     First form  y := beta*y.
160 1 pfleura2
*
161 1 pfleura2
      IF (BETA.NE.ONE) THEN
162 1 pfleura2
          IF (INCY.EQ.1) THEN
163 1 pfleura2
              IF (BETA.EQ.ZERO) THEN
164 1 pfleura2
                  DO 10 I = 1,N
165 1 pfleura2
                      Y(I) = ZERO
166 1 pfleura2
   10             CONTINUE
167 1 pfleura2
              ELSE
168 1 pfleura2
                  DO 20 I = 1,N
169 1 pfleura2
                      Y(I) = BETA*Y(I)
170 1 pfleura2
   20             CONTINUE
171 1 pfleura2
              END IF
172 1 pfleura2
          ELSE
173 1 pfleura2
              IY = KY
174 1 pfleura2
              IF (BETA.EQ.ZERO) THEN
175 1 pfleura2
                  DO 30 I = 1,N
176 1 pfleura2
                      Y(IY) = ZERO
177 1 pfleura2
                      IY = IY + INCY
178 1 pfleura2
   30             CONTINUE
179 1 pfleura2
              ELSE
180 1 pfleura2
                  DO 40 I = 1,N
181 1 pfleura2
                      Y(IY) = BETA*Y(IY)
182 1 pfleura2
                      IY = IY + INCY
183 1 pfleura2
   40             CONTINUE
184 1 pfleura2
              END IF
185 1 pfleura2
          END IF
186 1 pfleura2
      END IF
187 1 pfleura2
      IF (ALPHA.EQ.ZERO) RETURN
188 1 pfleura2
      IF (LSAME(UPLO,'U')) THEN
189 1 pfleura2
*
190 1 pfleura2
*        Form  y  when A is stored in upper triangle.
191 1 pfleura2
*
192 1 pfleura2
          IF ((INCX.EQ.1) .AND. (INCY.EQ.1)) THEN
193 1 pfleura2
              DO 60 J = 1,N
194 1 pfleura2
                  TEMP1 = ALPHA*X(J)
195 1 pfleura2
                  TEMP2 = ZERO
196 1 pfleura2
                  DO 50 I = 1,J - 1
197 1 pfleura2
                      Y(I) = Y(I) + TEMP1*A(I,J)
198 1 pfleura2
                      TEMP2 = TEMP2 + A(I,J)*X(I)
199 1 pfleura2
   50             CONTINUE
200 1 pfleura2
                  Y(J) = Y(J) + TEMP1*A(J,J) + ALPHA*TEMP2
201 1 pfleura2
   60         CONTINUE
202 1 pfleura2
          ELSE
203 1 pfleura2
              JX = KX
204 1 pfleura2
              JY = KY
205 1 pfleura2
              DO 80 J = 1,N
206 1 pfleura2
                  TEMP1 = ALPHA*X(JX)
207 1 pfleura2
                  TEMP2 = ZERO
208 1 pfleura2
                  IX = KX
209 1 pfleura2
                  IY = KY
210 1 pfleura2
                  DO 70 I = 1,J - 1
211 1 pfleura2
                      Y(IY) = Y(IY) + TEMP1*A(I,J)
212 1 pfleura2
                      TEMP2 = TEMP2 + A(I,J)*X(IX)
213 1 pfleura2
                      IX = IX + INCX
214 1 pfleura2
                      IY = IY + INCY
215 1 pfleura2
   70             CONTINUE
216 1 pfleura2
                  Y(JY) = Y(JY) + TEMP1*A(J,J) + ALPHA*TEMP2
217 1 pfleura2
                  JX = JX + INCX
218 1 pfleura2
                  JY = JY + INCY
219 1 pfleura2
   80         CONTINUE
220 1 pfleura2
          END IF
221 1 pfleura2
      ELSE
222 1 pfleura2
*
223 1 pfleura2
*        Form  y  when A is stored in lower triangle.
224 1 pfleura2
*
225 1 pfleura2
          IF ((INCX.EQ.1) .AND. (INCY.EQ.1)) THEN
226 1 pfleura2
              DO 100 J = 1,N
227 1 pfleura2
                  TEMP1 = ALPHA*X(J)
228 1 pfleura2
                  TEMP2 = ZERO
229 1 pfleura2
                  Y(J) = Y(J) + TEMP1*A(J,J)
230 1 pfleura2
                  DO 90 I = J + 1,N
231 1 pfleura2
                      Y(I) = Y(I) + TEMP1*A(I,J)
232 1 pfleura2
                      TEMP2 = TEMP2 + A(I,J)*X(I)
233 1 pfleura2
   90             CONTINUE
234 1 pfleura2
                  Y(J) = Y(J) + ALPHA*TEMP2
235 1 pfleura2
  100         CONTINUE
236 1 pfleura2
          ELSE
237 1 pfleura2
              JX = KX
238 1 pfleura2
              JY = KY
239 1 pfleura2
              DO 120 J = 1,N
240 1 pfleura2
                  TEMP1 = ALPHA*X(JX)
241 1 pfleura2
                  TEMP2 = ZERO
242 1 pfleura2
                  Y(JY) = Y(JY) + TEMP1*A(J,J)
243 1 pfleura2
                  IX = JX
244 1 pfleura2
                  IY = JY
245 1 pfleura2
                  DO 110 I = J + 1,N
246 1 pfleura2
                      IX = IX + INCX
247 1 pfleura2
                      IY = IY + INCY
248 1 pfleura2
                      Y(IY) = Y(IY) + TEMP1*A(I,J)
249 1 pfleura2
                      TEMP2 = TEMP2 + A(I,J)*X(IX)
250 1 pfleura2
  110             CONTINUE
251 1 pfleura2
                  Y(JY) = Y(JY) + ALPHA*TEMP2
252 1 pfleura2
                  JX = JX + INCX
253 1 pfleura2
                  JY = JY + INCY
254 1 pfleura2
  120         CONTINUE
255 1 pfleura2
          END IF
256 1 pfleura2
      END IF
257 1 pfleura2
*
258 1 pfleura2
      RETURN
259 1 pfleura2
*
260 1 pfleura2
*     End of DSYMV .
261 1 pfleura2
*
262 1 pfleura2
      END