Intel® Math Kernel Library 11.3 Update 4 Developer Guide
The overhead of calling an Intel MKL function for small problem sizes can be significant when the function has a large number of parameters or internally checks parameter errors. To reduce the performance overhead for these small size problems, the Intel MKL direct call feature works in conjunction with the compiler to preprocess the calling parameters to ?gemm functions and directly call or inline special optimized small-matrix kernels that bypass error checking.
To activate the feature, do the following:
Compile your C or Fortran code with the preprocessor macro depending on whether a threaded or sequential mode of Intel MKL is required by supplying the compiler option as explained below:
Intel MKL Mode |
Macro |
Compiler Option |
---|---|---|
Threaded |
MKL_DIRECT_CALL | -DMKL_DIRECT_CALL |
Sequential |
MKL_DIRECT_CALL_SEQ | -DMKL_DIRECT_CALL_SEQ |
For Fortran applications:
Intel MKL skips error checking and intermediate function calls if the problem size is small enough (for example, a dgemm function call with matrix ranks smaller than 50).
Intel's compilers may or may not optimize to the same degree for non-Intel microprocessors for optimizations that are not unique to Intel microprocessors. These optimizations include SSE2, SSE3, and SSSE3 instruction sets and other optimizations. Intel does not guarantee the availability, functionality, or effectiveness of any optimization on microprocessors not manufactured by Intel. Microprocessor-dependent optimizations in this product are intended for use with Intel microprocessors. Certain optimizations not specific to Intel microarchitecture are reserved for Intel microprocessors. Please refer to the applicable product User and Reference Guides for more information regarding the specific instruction sets covered by this notice. Notice revision #20110804 |