Add BDCSVD_LAPACKE binding

This commit is contained in:
Melven Roehrig-Zoellner
2022-12-09 18:50:12 +00:00
committed by Rasmus Munk Larsen
parent 03c9b4738c
commit 273f803846
6 changed files with 185 additions and 4 deletions

View File

@@ -36,14 +36,17 @@
#include "src/SVD/SVDBase.h"
#include "src/SVD/JacobiSVD.h"
#include "src/SVD/BDCSVD.h"
#if defined(EIGEN_USE_LAPACKE) && !defined(EIGEN_USE_LAPACKE_STRICT)
#ifdef EIGEN_USE_LAPACKE
#ifdef EIGEN_USE_MKL
#include "mkl_lapacke.h"
#else
#include "src/misc/lapacke.h"
#endif
#ifndef EIGEN_USE_LAPACKE_STRICT
#include "src/SVD/JacobiSVD_LAPACKE.h"
#endif
#include "src/SVD/BDCSVD_LAPACKE.h"
#endif
#include "src/Core/util/ReenableStupidWarnings.h"