Inquires about the number of threads targeted for parallelism.
Fortran:
num = mkl_get_max_threads()
C:
num = mkl_get_max_threads();
The FORTRAN 77 interface is specified in the mkl_service.fi include file and the C interface is specified in the mkl_service.h include file.
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.
Copyright © 1994 - 2011, Intel Corporation. All rights reserved.