LAPACK 3.12.0
LAPACK: Linear Algebra PACKage
Loading...
Searching...
No Matches

◆ dsymm()

subroutine dsymm ( character  side,
character  uplo,
integer  m,
integer  n,
double precision  alpha,
double precision, dimension(lda,*)  a,
integer  lda,
double precision, dimension(ldb,*)  b,
integer  ldb,
double precision  beta,
double precision, dimension(ldc,*)  c,
integer  ldc 
)

DSYMM

Purpose:
 DSYMM  performs one of the matrix-matrix operations

    C := alpha*A*B + beta*C,

 or

    C := alpha*B*A + beta*C,

 where alpha and beta are scalars,  A is a symmetric matrix and  B and
 C are  m by n matrices.
Parameters
[in]SIDE
          SIDE is CHARACTER*1
           On entry,  SIDE  specifies whether  the  symmetric matrix  A
           appears on the  left or right  in the  operation as follows:

              SIDE = 'L' or 'l'   C := alpha*A*B + beta*C,

              SIDE = 'R' or 'r'   C := alpha*B*A + beta*C,
[in]UPLO
          UPLO is CHARACTER*1
           On  entry,   UPLO  specifies  whether  the  upper  or  lower
           triangular  part  of  the  symmetric  matrix   A  is  to  be
           referenced as follows:

              UPLO = 'U' or 'u'   Only the upper triangular part of the
                                  symmetric matrix is to be referenced.

              UPLO = 'L' or 'l'   Only the lower triangular part of the
                                  symmetric matrix is to be referenced.
[in]M
          M is INTEGER
           On entry,  M  specifies the number of rows of the matrix  C.
           M  must be at least zero.
[in]N
          N is INTEGER
           On entry, N specifies the number of columns of the matrix C.
           N  must be at least zero.
[in]ALPHA
          ALPHA is DOUBLE PRECISION.
           On entry, ALPHA specifies the scalar alpha.
[in]A
          A is DOUBLE PRECISION array, dimension ( LDA, ka ), where ka is
           m  when  SIDE = 'L' or 'l'  and is  n otherwise.
           Before entry  with  SIDE = 'L' or 'l',  the  m by m  part of
           the array  A  must contain the  symmetric matrix,  such that
           when  UPLO = 'U' or 'u', the leading m by m upper triangular
           part of the array  A  must contain the upper triangular part
           of the  symmetric matrix and the  strictly  lower triangular
           part of  A  is not referenced,  and when  UPLO = 'L' or 'l',
           the leading  m by m  lower triangular part  of the  array  A
           must  contain  the  lower triangular part  of the  symmetric
           matrix and the  strictly upper triangular part of  A  is not
           referenced.
           Before entry  with  SIDE = 'R' or 'r',  the  n by n  part of
           the array  A  must contain the  symmetric matrix,  such that
           when  UPLO = 'U' or 'u', the leading n by n upper triangular
           part of the array  A  must contain the upper triangular part
           of the  symmetric matrix and the  strictly  lower triangular
           part of  A  is not referenced,  and when  UPLO = 'L' or 'l',
           the leading  n by n  lower triangular part  of the  array  A
           must  contain  the  lower triangular part  of the  symmetric
           matrix and the  strictly upper triangular part of  A  is not
           referenced.
[in]LDA
          LDA is INTEGER
           On entry, LDA specifies the first dimension of A as declared
           in the calling (sub) program.  When  SIDE = 'L' or 'l'  then
           LDA must be at least  max( 1, m ), otherwise  LDA must be at
           least  max( 1, n ).
[in]B
          B is DOUBLE PRECISION array, dimension ( LDB, N )
           Before entry, the leading  m by n part of the array  B  must
           contain the matrix B.
[in]LDB
          LDB is INTEGER
           On entry, LDB specifies the first dimension of B as declared
           in  the  calling  (sub)  program.   LDB  must  be  at  least
           max( 1, m ).
[in]BETA
          BETA is DOUBLE PRECISION.
           On entry,  BETA  specifies the scalar  beta.  When  BETA  is
           supplied as zero then C need not be set on input.
[in,out]C
          C is DOUBLE PRECISION array, dimension ( LDC, N )
           Before entry, the leading  m by n  part of the array  C must
           contain the matrix  C,  except when  beta  is zero, in which
           case C need not be set on entry.
           On exit, the array  C  is overwritten by the  m by n updated
           matrix.
[in]LDC
          LDC is INTEGER
           On entry, LDC specifies the first dimension of C as declared
           in  the  calling  (sub)  program.   LDC  must  be  at  least
           max( 1, m ).
Author
Univ. of Tennessee
Univ. of California Berkeley
Univ. of Colorado Denver
NAG Ltd.
Further Details:
  Level 3 Blas routine.

  -- Written on 8-February-1989.
     Jack Dongarra, Argonne National Laboratory.
     Iain Duff, AERE Harwell.
     Jeremy Du Croz, Numerical Algorithms Group Ltd.
     Sven Hammarling, Numerical Algorithms Group Ltd.

Definition at line 188 of file dsymm.f.

189*
190* -- Reference BLAS level3 routine --
191* -- Reference BLAS is a software package provided by Univ. of Tennessee, --
192* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
193*
194* .. Scalar Arguments ..
195 DOUBLE PRECISION ALPHA,BETA
196 INTEGER LDA,LDB,LDC,M,N
197 CHARACTER SIDE,UPLO
198* ..
199* .. Array Arguments ..
200 DOUBLE PRECISION A(LDA,*),B(LDB,*),C(LDC,*)
201* ..
202*
203* =====================================================================
204*
205* .. External Functions ..
206 LOGICAL LSAME
207 EXTERNAL lsame
208* ..
209* .. External Subroutines ..
210 EXTERNAL xerbla
211* ..
212* .. Intrinsic Functions ..
213 INTRINSIC max
214* ..
215* .. Local Scalars ..
216 DOUBLE PRECISION TEMP1,TEMP2
217 INTEGER I,INFO,J,K,NROWA
218 LOGICAL UPPER
219* ..
220* .. Parameters ..
221 DOUBLE PRECISION ONE,ZERO
222 parameter(one=1.0d+0,zero=0.0d+0)
223* ..
224*
225* Set NROWA as the number of rows of A.
226*
227 IF (lsame(side,'L')) THEN
228 nrowa = m
229 ELSE
230 nrowa = n
231 END IF
232 upper = lsame(uplo,'U')
233*
234* Test the input parameters.
235*
236 info = 0
237 IF ((.NOT.lsame(side,'L')) .AND.
238 + (.NOT.lsame(side,'R'))) THEN
239 info = 1
240 ELSE IF ((.NOT.upper) .AND. (.NOT.lsame(uplo,'L'))) THEN
241 info = 2
242 ELSE IF (m.LT.0) THEN
243 info = 3
244 ELSE IF (n.LT.0) THEN
245 info = 4
246 ELSE IF (lda.LT.max(1,nrowa)) THEN
247 info = 7
248 ELSE IF (ldb.LT.max(1,m)) THEN
249 info = 9
250 ELSE IF (ldc.LT.max(1,m)) THEN
251 info = 12
252 END IF
253 IF (info.NE.0) THEN
254 CALL xerbla('DSYMM ',info)
255 RETURN
256 END IF
257*
258* Quick return if possible.
259*
260 IF ((m.EQ.0) .OR. (n.EQ.0) .OR.
261 + ((alpha.EQ.zero).AND. (beta.EQ.one))) RETURN
262*
263* And when alpha.eq.zero.
264*
265 IF (alpha.EQ.zero) THEN
266 IF (beta.EQ.zero) THEN
267 DO 20 j = 1,n
268 DO 10 i = 1,m
269 c(i,j) = zero
270 10 CONTINUE
271 20 CONTINUE
272 ELSE
273 DO 40 j = 1,n
274 DO 30 i = 1,m
275 c(i,j) = beta*c(i,j)
276 30 CONTINUE
277 40 CONTINUE
278 END IF
279 RETURN
280 END IF
281*
282* Start the operations.
283*
284 IF (lsame(side,'L')) THEN
285*
286* Form C := alpha*A*B + beta*C.
287*
288 IF (upper) THEN
289 DO 70 j = 1,n
290 DO 60 i = 1,m
291 temp1 = alpha*b(i,j)
292 temp2 = zero
293 DO 50 k = 1,i - 1
294 c(k,j) = c(k,j) + temp1*a(k,i)
295 temp2 = temp2 + b(k,j)*a(k,i)
296 50 CONTINUE
297 IF (beta.EQ.zero) THEN
298 c(i,j) = temp1*a(i,i) + alpha*temp2
299 ELSE
300 c(i,j) = beta*c(i,j) + temp1*a(i,i) +
301 + alpha*temp2
302 END IF
303 60 CONTINUE
304 70 CONTINUE
305 ELSE
306 DO 100 j = 1,n
307 DO 90 i = m,1,-1
308 temp1 = alpha*b(i,j)
309 temp2 = zero
310 DO 80 k = i + 1,m
311 c(k,j) = c(k,j) + temp1*a(k,i)
312 temp2 = temp2 + b(k,j)*a(k,i)
313 80 CONTINUE
314 IF (beta.EQ.zero) THEN
315 c(i,j) = temp1*a(i,i) + alpha*temp2
316 ELSE
317 c(i,j) = beta*c(i,j) + temp1*a(i,i) +
318 + alpha*temp2
319 END IF
320 90 CONTINUE
321 100 CONTINUE
322 END IF
323 ELSE
324*
325* Form C := alpha*B*A + beta*C.
326*
327 DO 170 j = 1,n
328 temp1 = alpha*a(j,j)
329 IF (beta.EQ.zero) THEN
330 DO 110 i = 1,m
331 c(i,j) = temp1*b(i,j)
332 110 CONTINUE
333 ELSE
334 DO 120 i = 1,m
335 c(i,j) = beta*c(i,j) + temp1*b(i,j)
336 120 CONTINUE
337 END IF
338 DO 140 k = 1,j - 1
339 IF (upper) THEN
340 temp1 = alpha*a(k,j)
341 ELSE
342 temp1 = alpha*a(j,k)
343 END IF
344 DO 130 i = 1,m
345 c(i,j) = c(i,j) + temp1*b(i,k)
346 130 CONTINUE
347 140 CONTINUE
348 DO 160 k = j + 1,n
349 IF (upper) THEN
350 temp1 = alpha*a(j,k)
351 ELSE
352 temp1 = alpha*a(k,j)
353 END IF
354 DO 150 i = 1,m
355 c(i,j) = c(i,j) + temp1*b(i,k)
356 150 CONTINUE
357 160 CONTINUE
358 170 CONTINUE
359 END IF
360*
361 RETURN
362*
363* End of DSYMM
364*
subroutine xerbla(srname, info)
Definition cblat2.f:3285
logical function lsame(ca, cb)
LSAME
Definition lsame.f:48
Here is the call graph for this function:
Here is the caller graph for this function: