next up previous contents
Next: PLAPACK calls Up: Symmetric Rank-1 Update Previous: Standard FORTRAN call

PLAPACK FORTRAN-C interface

PLAPACK provides platform independent level-2 BLAS calls by adding the prefix ``PLA_''. Thus the FORTRAN call

CALL DSYR( "L", N, ALPHA, X, INCX, A, LDA )
becomes the C call
PLA_dsyr( "L", &n, &alpha, x, &incx, a, &lda );
Recall that only the first character of the string parameters are checked. Thus "L" is equivalent to "Lower triangular".


next up previous contents
Next: PLAPACK calls Up: Symmetric Rank-1 Update Previous: Standard FORTRAN call

rvdg@cs.utexas.edu