Inquires about the number of threads targeted for parallelism.
FORTRAN:
num = mkl_get_max_threads()
C:
num = mkl_get_max_threads();
This function allows you to inquire independently of OpenMP* how many threads Intel MKL is targeting for parallelism. The number is a hint, and there is no guarantee that exactly this number of threads will be used.
See Intel MKL User's Guide for implementation details.
The output is INTEGER equal to the number of threads.