Skip to content
Snippets Groups Projects
Commit a603bb7c authored by Mulas, Giacomo's avatar Mulas, Giacomo
Browse files

put the preprocessor checks for logger entries of different matrix-inversion...

put the preprocessor checks for logger entries of different matrix-inversion options in the correct order
parent 50333841
No related branches found
No related tags found
No related merge requests found
......@@ -191,10 +191,10 @@ void cluster(const string& config_file, const string& data_file, const string& o
string tppoan_name = output_path + "/c_TPPOAN";
tppoan.open(tppoan_name.c_str(), ios::out | ios::binary);
if (tppoan.is_open()) {
#ifdef USE_LAPACK
logger->log("INFO: using LAPACK calls.\n", LOG_INFO);
#elif defined USE_MAGMA
#ifdef USE_MAGMA
logger->log("INFO: using MAGMA calls.\n", LOG_INFO);
#elif defined USE_LAPACK
logger->log("INFO: using LAPACK calls.\n", LOG_INFO);
#else
logger->log("INFO: using fall-back lucin() calls.\n", LOG_INFO);
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment