diff options
Diffstat (limited to 'src/gemma.cpp')
-rw-r--r-- | src/gemma.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gemma.cpp b/src/gemma.cpp index d59fdf9..c6863fe 100644 --- a/src/gemma.cpp +++ b/src/gemma.cpp @@ -3107,9 +3107,10 @@ 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_VERSION << " - " << openblas_get_config() << " - " << openblas_get_corename() << endl; + outfile << "## OpenBlas =" << OPENBLAS_VERSION << " - " << openblas_get_config() << endl; // For more recent OpenBlas: << " - " << openblas_get_corename() << endl; - outfile << "## threads = " << openblas_get_num_threads() << endl; + // outfile << "## threads = " << openblas_get_num_threads() << endl; + outfile << "## threads = " << OPENBLAS_GEMM_MULTITHREAD_THRESHOLD << endl; string* pStr = new string[4] { "sequential", "threaded", "openmp" }; outfile << "## parallel type = " << pStr[openblas_get_parallel()] << endl; #endif |