You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
312 B
13 lines
312 B
2 months ago
|
#pragma once
|
||
|
|
||
|
// use BLIS as the backend for Eigen
|
||
|
// #include <blis/cblas.h>
|
||
|
// #define EIGEN_USE_BLAS
|
||
|
// solve min() max() conflicts
|
||
|
#undef min
|
||
|
#undef max
|
||
|
|
||
|
#define EIGEN_USE_THREADS 1
|
||
|
#define EIGEN_INITIALIZE_MATRICES_BY_ZERO 1
|
||
|
#define EIGEN_NO_AUTOMATIC_RESIZING 1
|
||
|
#include <Eigen/Dense>
|