Skip to content
Snippets Groups Projects
Commit 2bc39ea4 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[MaL/LIS] Fix spdlog formatters in INFO messages.

parent 7aa3e1c2
No related branches found
No related tags found
No related merge requests found
...@@ -46,21 +46,21 @@ bool LisLinearSolver::solve(LisMatrix& A, LisVector& b, LisVector& x) ...@@ -46,21 +46,21 @@ bool LisLinearSolver::solve(LisMatrix& A, LisVector& b, LisVector& x)
lis_solver_set_option(const_cast<char*>(lis_option_.option_string_.c_str()), lis_solver_set_option(const_cast<char*>(lis_option_.option_string_.c_str()),
solver); solver);
#ifdef _OPENMP #ifdef _OPENMP
INFO("-> number of threads: {:i}", (int)omp_get_max_threads()); INFO("-> number of threads: {:d}", (int)omp_get_max_threads());
#endif #endif
{ {
int precon; int precon;
ierr = lis_solver_get_precon(solver, &precon); ierr = lis_solver_get_precon(solver, &precon);
if (!checkLisError(ierr)) if (!checkLisError(ierr))
return false; return false;
INFO("-> precon: {:i}", precon); INFO("-> precon: {:d}", precon);
} }
{ {
int slv; int slv;
ierr = lis_solver_get_solver(solver, &slv); ierr = lis_solver_get_solver(solver, &slv);
if (!checkLisError(ierr)) if (!checkLisError(ierr))
return false; return false;
INFO("-> solver: {:i}", slv); INFO("-> solver: {:d}", slv);
} }
// solve // solve
......
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