adjust for ILU reorder removal

This commit is contained in:
Arne Morten Kvarving 2022-10-20 13:06:14 +02:00 committed by Tong Dong Qiu
parent 5466fdd289
commit 9ce8d1ceca
2 changed files with 2 additions and 3 deletions

View File

@ -22,7 +22,6 @@
#include <opm/simulators/linalg/bda/BdaResult.hpp>
#include <opm/simulators/linalg/bda/BdaSolver.hpp>
#include <opm/simulators/linalg/bda/ILUReorder.hpp>
#include <opm/simulators/linalg/bda/WellContributions.hpp>
#include <rocalution.hpp>

View File

@ -88,7 +88,7 @@ testRocalutionSolver(const boost::property_tree::ptree& prm, Matrix<bz>& matrix,
const int linear_solver_verbosity = prm.get<int>("verbosity");
const int maxit = prm.get<int>("maxiter");
const double tolerance = prm.get<double>("tol");
const std::string opencl_ilu_reorder("none");
const bool opencl_ilu_parallel(true);
const int platformID = 0;
const int deviceID = 0;
const std::string accelerator_mode("rocalution");
@ -107,7 +107,7 @@ testRocalutionSolver(const boost::property_tree::ptree& prm, Matrix<bz>& matrix,
tolerance,
platformID,
deviceID,
opencl_ilu_reorder,
opencl_ilu_parallel,
linsolver);
} catch (const std::logic_error& error) {
BOOST_WARN_MESSAGE(true, error.what());