mirror of
https://github.com/paboyle/Grid.git
synced 2025-04-07 20:50:46 +01:00
15 lines
332 B
C
15 lines
332 B
C
#pragma once
|
|
// Force Eigen to use MKL if Grid has been configured with --enable-mkl
|
|
#ifdef USE_MKL
|
|
#define EIGEN_USE_MKL_ALL
|
|
#endif
|
|
|
|
#if defined __GNUC__
|
|
#pragma GCC diagnostic push
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
#endif
|
|
#include <Grid/Eigen/Dense>
|
|
#if defined __GNUC__
|
|
#pragma GCC diagnostic pop
|
|
#endif
|