Intel MKL provides C and Fortran routines to perform certain data manipulation, including matrix in-place and out-of-place transposition operations combined with simple matrix arithmetic operations. Transposition operations are Copy As Is, Conjugate transpose, Transpose, and Conjugate. Each routine adds the possibility of scaling during the transposition operation by giving some alpha and/or beta parameters. Each routine supports both row-major orderings and column-major orderings.
There is also ?gemm3m, a routine that computes a matrix-matrix product of general complex matrices using matrix multiplication.
Table “BLAS-like Extensions” lists these routines.
The <?> symbol in the routine short names is a precision prefix that indicates the data type:
REAL for Fortran interface, or float for C interface
DOUBLE PRECISION for Fortran interface, or double for C interface.
COMPLEX for Fortran interface, or MKL_Complex8 for C interface.
DOUBLE COMPLEX for Fortran interface, or MKL_Complex16 for C interface.
Routine |
Data Types |
Description |
---|---|---|
s, d, c, z |
Performs scaling and in-place transposition/copying of matrices. |
|
s, d, c, z |
Performs scaling and out-of-place transposition/copying of matrices. |
|
s, d, c, z |
Performs two-strided scaling and out-of-place transposition/copying of matrices. |
|
s, d, c, z |
Performs scaling and sum of two matrices including their out-of-place transposition/copying. |
|
c, z |
Computes a scalar-matrix-matrix product using matrix multiplications and adds the result to a scalar-matrix product. |
Copyright © 1994 - 2010, Intel Corporation. All rights reserved.