Maths

BLAS

  1. scalar-vector operations
  • sscal, dscal
  • scopy, dcopy
  • isamax, idamax
  • saxpy, daxpy
  • sdot, ddot
  • dasum
  • dnrm2
  • drot
  1. matrix-vector operations
  • sgemv, dgemv
  • strmv, dtrmv
  • strsv, dtrsv
  • dgbmv
  • sger, dger
  • dsymv
  • dtbmv
  • dsyr
  1. matrix-matrix operations
  • sgemm, dgemm
  • ssyrk, dsyrk
  • strsm, dtrsm
  • strmm, dtrmm
  • ssymm, dsymm
  • ssyr2k, dsyr2k

Precisions:

  • S: real single precision
  • D: real double precision
  • C: complex single precision
  • Z: complex double precision

Vector-vector operations

Matrix-vector operations

Matrix-matrix operations