about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPjotr Prins2017-10-14 06:43:22 +0000
committerPjotr Prins2017-10-14 06:43:22 +0000
commitee201807c0c8039aa968ec352a25fffcfdef8056 (patch)
tree3a2658c2f2ad5d68c408c0ec19610f3cd08d40a6
parent751601a0965f66d0d1a5231f0edc1a951c583c77 (diff)
downloadpangemma-ee201807c0c8039aa968ec352a25fffcfdef8056.tar.gz
Travis
-rw-r--r--src/gemma.cpp5
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