0

My code calls the Intel MKL dgemv many times. Is it possible to inline the MKL dgemv?

user2196452
  • 361
  • 2
  • 16

1 Answers1

0

In general, compilers will not inline BLAS calls at the source level but the linker can do it under some circumstances. However, I've heard that Intel is providing some support for inlining MKL in C code in the version 15 release of the compiler. But you'll have refer to the official documentation for confirmation and details.

Jeff Hammond
  • 5,374
  • 3
  • 28
  • 45