next up previous contents
Next: PLAPACK calls Up: Triangular Matrix-Matrix Multiplication Previous: Standard FORTRAN call

PLAPACK FORTRAN-C interface

The FORTRAN call

CALL DTRMM( "L", "L", "N", "U", M, N, ALPHA, A, LDA, B, LDB )
becomes the C call
PLA_dtrmm( "L", "L", "N", "U", &m, &n, &alpha, a, &lda, b, &ldb );

next up previous contents
Next: PLAPACK calls Up: Triangular Matrix-Matrix Multiplication Previous: Standard FORTRAN call

rvdg@cs.utexas.edu