diff options
author | Pjotr Prins | 2017-10-14 06:35:39 +0000 |
---|---|---|
committer | Pjotr Prins | 2017-10-14 06:35:39 +0000 |
commit | 751601a0965f66d0d1a5231f0edc1a951c583c77 (patch) | |
tree | bd1bdb36493e15c83b22bf016abce6c50cc77706 | |
parent | 0baac7f79ee8caf82a3c9d51a3dd0794663a7d24 (diff) | |
download | pangemma-751601a0965f66d0d1a5231f0edc1a951c583c77.tar.gz |
OpenBlas info
-rw-r--r-- | src/gemma.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gemma.cpp b/src/gemma.cpp index a1aeaa3..d59fdf9 100644 --- a/src/gemma.cpp +++ b/src/gemma.cpp @@ -3088,7 +3088,7 @@ void GEMMA::BatchRun(PARAM &cPar) { } #include "Eigen/Dense" -// using namespace Eigen; +#include <openblas_config.h> void GEMMA::WriteLog(int argc, char **argv, PARAM &cPar) { string file_str; @@ -3107,7 +3107,7 @@ void GEMMA::WriteLog(int argc, char **argv, PARAM &cPar) { outfile << "## Eigen Version = " << EIGEN_WORLD_VERSION << "." << EIGEN_MAJOR_VERSION << "." << EIGEN_MINOR_VERSION << endl; #ifdef OPENBLAS - outfile << "## OpenBlas = " << openblas_get_config() << " - " << openblas_get_corename() << endl; + outfile << "## OpenBlas =" << OPENBLAS_VERSION << " - " << openblas_get_config() << " - " << openblas_get_corename() << endl; outfile << "## threads = " << openblas_get_num_threads() << endl; string* pStr = new string[4] { "sequential", "threaded", "openmp" }; |