xref: /petsc/src/mat/impls/aij/seq/mkl_pardiso/mkl_utils.c (revision 4f02bc6a7df4e4b03c783003a8e0899ee35fcb05)
1 /* mkl.h could conflict with petscblaslapack.h in mkl_pardiso.c */
2 /* The current translation unit contains calls specific to mkl library */
3 #include <mkl.h>
4 
5 void PetscSetMKL_PARDISOThreads(int threads)
6 {
7   mkl_domain_set_num_threads(threads,MKL_DOMAIN_PARDISO);
8 }
9