Intel® Math Kernel Library 2019 Developer Reference - Fortran
Create a GEMM kernel that computes a scalar-matrix-matrix product and adds the result to a scalar-matrix product.
status = mkl_jit_create_sgemm(jitter, transa, transb, m, n, k, alpha, lda, ldb, beta, ldc)
status = mkl_jit_create_dgemm(jitter, transa, transb, m, n, k, alpha, lda, ldb, beta, ldc)
The mkl_jit_create_?gemm functions belong to a set of related routines that enable use of just-in-time code generation.
The mkl_jit_create_?gemm functions create a handle on a jitter and generate a GEMM kernel that computes a scalar-matrix-matrix product and adds the result to a scalar-matrix product, with general matrices. The operation of the generated GEMM kernel is defined as follows:
C := alpha*op(A)*op(B) + beta*C
Where:
Just-in-time (JIT) code generation introduces a runtime overhead when calling mkl_jit_create_?gemm. To benefit from JIT code generation, use this feature when you need to call the generated kernel many times (for example, several hundred calls).
The JIT API requires Fortran 90 and the ISO_C_BINDING module.
CHARACTER*1.
Specifies the form of op(A) used in the generated matrix multiplication:
CHARACTER*1.
Specifies the form of op(B) used in the generated matrix multiplication:
INTEGER.
Specifies the number of rows of the matrix op(A) and of the matrix C. The value of m must be at least zero.
INTEGER.
Specifies the number of columns of the matrix op(B) and of the matrix C. The value of n must be at least zero.
INTEGER.
Specifies the number of columns of the matrix op(A) and the number of rows of the matrix op(B). The value of k must be at least zero.
REAL for mkl_jit_create_sgemm
DOUBLE PRECISION for mkl_jit_create_dgemm.
Specifies the scalar alpha.
INTEGER.
Specifies the leading dimension of a.
If transa = 'N'lda must be at least max(1,m).
If transa = 'T'lda must be at least max(1,k).
INTEGER.
Specifies the leading dimension of b:
If transb = 'N'ldb must be at least max(1,k).
If transb = 'T'ldb must be at least max(1,n).
REAL for mkl_jit_create_sgemm
DOUBLE PRECISION for mkl_jit_create_dgemm.
Specifies the scalar beta.
INTEGER.
Specifies the leading dimension of c which must be at least max(1,m).
jitter |
TYPE(C_PTR). C pointer to a jitter handle. |
INTEGER
Returns one of the following:
MKL_JIT_ERROR if the handle cannot be created (no memory)
—or—
MKL_JIT_SUCCESS if the jitter has been created and a GEMM kernel JIT-ed
—or—
MKL_NO_JIT if the jitter has been created and the GEMM kernel will point to a standard GEMM function