next up previous
Next: 3.2 Symmetric Rank-k Update Up: 3 Projects Previous: 3 Projects

3.1 Symmetric Matrix-Matrix Multiplication

Fortran BLAS call:

DSYMM( SIDE, UPLO, M, N, ALPHA, A, LDA, B, LDB, BETA, C, LDC )

place HR here

3.1.1 Team A: Ngoc Le and Cathy Delemater

Webpage

displaymath626

where A is symmetric, and stored in the lower triangular portion of array A.

Fortran call for this case:

DSYMM( "Left", "Lower", M, N, ALPHA, A, LDA, B, LDB, BETA, C, LDC )
where M and N are the dimensions of matrices C and B . Matrix A is M by M.

Special instructions:

  1. Call for C routine:
    dsymm_left_lower( m, n, alpha, a, lda, b, ldb, beta, c, ldc )

place HR here

3.1.2 Team B: : Warran Paul and Salil Gaitonde

displaymath636

where A is symmetric, and stored in the upper triangular portion of array A.

Fortran call for this case:

DSYMM( "Right", "Upper", M, N, ALPHA, A, LDA, B, LDB, BETA, C, LDC )
where M and N are the dimensions of matrices C and B . Matrix A is N by N.

Special instructions:

  1. Call for C routine:
    dsymm_right_upper( m, n, alpha, a, lda, b, ldb, beta, c, ldc )

place HR here


next up previous
Next: 3.2 Symmetric Rank-k Update Up: 3 Projects Previous: 3 Projects

rvdg@cs.utexas.edu