Added cmdline parameter --ilu-reorder-strategy

This commit is contained in:
tqiu
2020-10-15 10:52:10 +02:00
parent 77099d1b65
commit a372a1e4bd
8 changed files with 44 additions and 25 deletions

View File

@@ -178,7 +178,8 @@ public:
/// \param[in] tolerance required relative tolerance for openclSolver
/// \param[in] platformID the OpenCL platform to be used
/// \param[in] deviceID the device to be used
openclSolverBackend(int linear_solver_verbosity, int maxit, double tolerance, unsigned int platformID, unsigned int deviceID);
/// \param[in] ilu_reorder_strategy select either level_scheduling or graph_coloring, see BILU0.hpp for explanation
openclSolverBackend(int linear_solver_verbosity, int maxit, double tolerance, unsigned int platformID, unsigned int deviceID, std::string ilu_reorder_strategy);
/// Destroy a openclSolver, and free memory
~openclSolverBackend();