Block Ellpack matrix-matrix multiply

SBELMM/DBELMM/CBELMM/ZBELMM

Name SBELMM/DBELMM/CBELMM/ZBELMM

Block Ellpack matrix-matrix multiply

Purpose Block Ellpack matrix-matrix multiply. These subprograms compute the matrix-matrix product AB, where A is a m-by-ksparse matrix, and B is a k-by-n

matrix with m=mb x lb and k=kb x lb. Optionally, A may be replaced by AT or

A*, where AT or A* is a k-by-mmatrix, and B is a m-by-nmatrix. Here AT is the transpose and A* is the conjugate-transpose of A. The product may be stored in the result matrix C or optionally may be added to or subtracted from it. This is handled in a convenient, but general way by two scalar arguments, α and β, which are used as multipliers of the matrix product and the result matrix. Specifically, these subprograms compute matrix products of the form

C ← αAB + βC C ← αATB + βC C ← αAB + βC

Usage

VECLIB:

 

 

SUBROUTINE

SBELMM

 

INTEGER*4

transa, mb, n, kb, blda, maxbnz, lb, ldb, ldc, lwork

 

INTEGER*4

descra(*), bindx(*)

 

REAL*4

alpha, beta

 

REAL*4

val(*), b(ldb,*), c(ldc,*), work(*)

CALL SBELMM (transa, mb, n, kb, alpha, descra, val, blda, bindx, maxbnz, lb, b, ldb, beta, c, ldc, work, lwork)

SUBROUTINE

DBELMM

INTEGER*4

transa, mb, n, kb, blda, maxbnz, lb, ldb, ldc, lwork

INTEGER*4

descra(*), bindx(*)

REAL*8

alpha, beta

REAL*8

val(*), b(ldb,*), c(ldc,*), work(*)

CALL DBELMM (transa, mb, n, kb, alpha, descra, val, blda, bindx, maxbnz, lb, b, ldb, beta, c, ldc, work, lwork)

SUBROUTINE

CBELMM

INTEGER*4

transa, mb, n, kb, blda, maxbnz, lb, ldb, ldc, lwork

INTEGER*4

descra(*), bindx(*)

COMPLEX*8

alpha, beta

COMPLEX*8

val(*), b(ldb,*), c(ldc,*), work(*)

CALL CBELMM (transa, mb, n, kb, alpha, descra, val, blda, bindx, maxbnz, lb, b, ldb, beta, c, ldc, work, lwork)

Chapter 4 Sparse BLAS Operations 453