File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed
Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change 1212#cmakedefine HIGHS_HAVE_MM_PAUSE
1313#cmakedefine HIGHS_HAVE_BUILTIN_CLZ
1414#cmakedefine HIGHS_HAVE_BITSCAN_REVERSE
15+ #cmakedefine BLAS_LIBRARIES "@BLAS_LIBRARIES@"
1516
1617#define HIGHS_GITHASH "@GITHASH@"
1718#define HIGHS_VERSION_MAJOR @HIGHS_VERSION_MAJOR@
Original file line number Diff line number Diff line change @@ -1421,11 +1421,21 @@ void Solver::printOutput() const {
14211421void Solver::printInfo () const {
14221422 std::stringstream log_stream;
14231423 log_stream << " \n Running HiPO\n " ;
1424+
1425+ // Print blas path
1426+ #ifdef BLAS_LIBRARIES
1427+ log_stream << textline (" BLAS:" ) << BLAS_LIBRARIES << ' \n ' ;
1428+ #else
1429+ log_stream << textline (" BLAS:" ) << " Unknown\n " ;
1430+ #endif
1431+
1432+ // Print number of threads
14241433 if (options_.parallel == kOptionParallelOff )
14251434 log_stream << textline (" Threads:" ) << 1 << ' \n ' ;
14261435 else
14271436 log_stream << textline (" Threads:" ) << highs::parallel::num_threads ()
14281437 << ' \n ' ;
1438+
14291439 logH_.print (log_stream);
14301440
14311441 // print information about model
You can’t perform that action at this time.
0 commit comments