Block diagonal matrix-matrix multiply

SBDIMM/DBDIMM/CBDIMM/ZBDIMM

Name SBDIMM/DBDIMM/CBDIMM/ZBDIMM

Block diagonal matrix-matrix multiply

Purpose Block diagonal 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

SBDIMM

 

INTEGER*4

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

 

INTEGER*4

descra(*), ibdiag(*)

 

REAL*4

alpha, beta

 

REAL*4

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

CALL SBDIMM (transa, mb, n, kb, alpha, descra, val, blda, ibdiag, nbdiag, lb, b, ldb, beta, c, ldc, work, lwork)

SUBROUTINE

DBDIMM

INTEGER*4

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

INTEGER*4

descra(*), ibdiag(*)

REAL*8

alpha, beta

REAL*8

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

CALL DBDIMM (transa, mb, n, kb, alpha, descra, val, blda, ibdiag, nbdiag, lb, b, ldb, beta, c, ldc, work, lwork)

SUBROUTINE

CBDIMM

INTEGER*4

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

INTEGER*4

descra(*), ibdiag(*)

COMPLEX*8

alpha, beta

COMPLEX*8

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

CALL CBDIMM (transa, mb, n, kb, alpha, descra, val, blda, ibdiag, nbdiag, lb, b, ldb, beta, c, ldc, work, lwork)

Chapter 4 Sparse BLAS Operations 445