mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-01-13 01:41:55 -06:00
Merge pull request #3150 from Tongdongq/always_print_prec_info
Always print CHOW_PATEL info if used
This commit is contained in:
commit
824df60e94
@ -98,12 +98,12 @@ BILU0<block_size>::~BILU0()
|
||||
} else {
|
||||
OPM_THROW(std::logic_error, "Error ilu reordering strategy not set correctly\n");
|
||||
}
|
||||
if(verbosity >= 3){
|
||||
if(verbosity >= 1){
|
||||
out << "BILU0 analysis took: " << t_analysis.stop() << " s, " << numColors << " colors\n";
|
||||
}
|
||||
if(verbosity >= 2){
|
||||
out << "BILU0 CHOW_PATEL: " << CHOW_PATEL << ", CHOW_PATEL_GPU: " << CHOW_PATEL_GPU;
|
||||
}
|
||||
#if CHOW_PATEL
|
||||
out << "BILU0 CHOW_PATEL: " << CHOW_PATEL << ", CHOW_PATEL_GPU: " << CHOW_PATEL_GPU;
|
||||
#endif
|
||||
OpmLog::info(out.str());
|
||||
|
||||
|
||||
|
@ -534,11 +534,9 @@ void ChowPatelIlu::decomposition(
|
||||
out << "ChowPatelIlu copy sparsity pattern time: " << t_copy_pattern.stop() << " s";
|
||||
OpmLog::info(out.str());
|
||||
}
|
||||
if (verbosity >= 2){
|
||||
std::ostringstream out;
|
||||
out << "ChowPatelIlu PARALLEL: " << PARALLEL;
|
||||
OpmLog::info(out.str());
|
||||
}
|
||||
std::ostringstream out;
|
||||
out << "ChowPatelIlu PARALLEL: " << PARALLEL;
|
||||
OpmLog::info(out.str());
|
||||
});
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user