use MKL's lapacke.h header when using MKL

This commit is contained in:
Gael Guennebaud
2017-08-17 21:58:39 +02:00
parent 8c858bd891
commit f727844658
5 changed files with 20 additions and 0 deletions

View File

@@ -36,7 +36,11 @@
#include "src/QR/ColPivHouseholderQR.h"
#include "src/QR/CompleteOrthogonalDecomposition.h"
#ifdef EIGEN_USE_LAPACKE
#ifdef EIGEN_USE_MKL
#include "mkl_lapacke.h"
#else
#include "src/misc/lapacke.h"
#endif
#include "src/QR/HouseholderQR_LAPACKE.h"
#include "src/QR/ColPivHouseholderQR_LAPACKE.h"
#endif