2018-11-15 04:07:47 -06:00
/*
Copyright 2015 SINTEF ICT , Applied Mathematics .
Copyright 2015 IRIS AS
Copyright 2015 Dr . Blatt - HPC - Simulation - Software & Services
Copyright 2015 NTNU
Copyright 2015 Statoil AS
This file is part of the Open Porous Media project ( OPM ) .
OPM is free software : you can redistribute it and / or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation , either version 3 of the License , or
( at your option ) any later version .
OPM is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
GNU General Public License for more details .
You should have received a copy of the GNU General Public License
along with OPM . If not , see < http : //www.gnu.org/licenses/>.
*/
# ifndef OPM_FLOWLINEARSOLVERPARAMETERS_HEADER_INCLUDED
# define OPM_FLOWLINEARSOLVERPARAMETERS_HEADER_INCLUDED
# include <opm/common/utility/parameters/ParameterGroup.hpp>
2019-05-07 06:06:02 -05:00
# include <opm/simulators/linalg/ParallelOverlappingILU0.hpp>
2018-11-15 04:07:47 -06:00
2020-05-19 03:04:35 -05:00
# include <opm/simulators/linalg/linalgproperties.hh>
2019-09-16 03:58:20 -05:00
# include <opm/models/utils/parametersystem.hh>
2018-11-15 04:07:47 -06:00
# include <array>
# include <memory>
2018-11-12 04:03:54 -06:00
namespace Opm {
template < class TypeTag >
class ISTLSolverEbos ;
}
2020-08-21 06:42:08 -05:00
namespace Opm : : Properties {
2018-11-15 04:07:47 -06:00
2020-08-27 03:30:29 -05:00
namespace TTag {
struct FlowIstlSolverParams { } ;
}
2018-11-15 04:07:47 -06:00
NEW_PROP_TAG ( LinearSolverReduction ) ;
NEW_PROP_TAG ( IluRelaxation ) ;
NEW_PROP_TAG ( LinearSolverMaxIter ) ;
NEW_PROP_TAG ( LinearSolverRestart ) ;
NEW_PROP_TAG ( FlowLinearSolverVerbosity ) ;
NEW_PROP_TAG ( IluFillinLevel ) ;
NEW_PROP_TAG ( MiluVariant ) ;
NEW_PROP_TAG ( IluRedblack ) ;
NEW_PROP_TAG ( IluReorderSpheres ) ;
NEW_PROP_TAG ( UseGmres ) ;
NEW_PROP_TAG ( LinearSolverRequireFullSparsityPattern ) ;
NEW_PROP_TAG ( LinearSolverIgnoreConvergenceFailure ) ;
NEW_PROP_TAG ( UseAmg ) ;
NEW_PROP_TAG ( UseCpr ) ;
2018-11-12 04:03:54 -06:00
NEW_PROP_TAG ( PreconditionerAddWellContributions ) ;
2019-03-12 07:55:11 -05:00
NEW_PROP_TAG ( SystemStrategy ) ;
NEW_PROP_TAG ( ScaleLinearSystem ) ;
NEW_PROP_TAG ( CprSolverVerbose ) ;
NEW_PROP_TAG ( CprUseDrs ) ;
2019-03-20 04:24:44 -05:00
NEW_PROP_TAG ( CprMaxEllIter ) ;
2019-03-12 07:55:11 -05:00
NEW_PROP_TAG ( CprEllSolvetype ) ;
NEW_PROP_TAG ( CprReuseSetup ) ;
2019-08-22 14:14:48 -05:00
NEW_PROP_TAG ( LinearSolverConfiguration ) ;
2019-05-20 06:23:57 -05:00
NEW_PROP_TAG ( LinearSolverConfigurationJsonFile ) ;
2020-06-22 11:26:49 -05:00
NEW_PROP_TAG ( GpuMode ) ;
2020-07-01 12:43:22 -05:00
NEW_PROP_TAG ( BdaDeviceId ) ;
NEW_PROP_TAG ( OpenclPlatformId ) ;
2018-11-15 04:07:47 -06:00
2020-08-27 04:38:38 -05:00
template < class TypeTag >
struct LinearSolverReduction < TypeTag , TTag : : FlowIstlSolverParams > {
using type = GetPropType < TypeTag , Scalar > ;
static constexpr type value = 1e-2 ;
} ;
template < class TypeTag >
struct IluRelaxation < TypeTag , TTag : : FlowIstlSolverParams > {
using type = GetPropType < TypeTag , Scalar > ;
static constexpr type value = 0.9 ;
} ;
2020-08-27 04:38:38 -05:00
template < class TypeTag >
struct LinearSolverMaxIter < TypeTag , TTag : : FlowIstlSolverParams > {
static constexpr int value = 200 ;
} ;
template < class TypeTag >
struct LinearSolverRestart < TypeTag , TTag : : FlowIstlSolverParams > {
static constexpr int value = 40 ;
} ;
template < class TypeTag >
struct FlowLinearSolverVerbosity < TypeTag , TTag : : FlowIstlSolverParams > {
static constexpr int value = 0 ;
} ;
template < class TypeTag >
struct IluFillinLevel < TypeTag , TTag : : FlowIstlSolverParams > {
static constexpr int value = 0 ;
} ;
2020-08-27 04:38:38 -05:00
template < class TypeTag >
struct MiluVariant < TypeTag , TTag : : FlowIstlSolverParams > {
static constexpr auto value = " ILU " ;
} ;
2020-08-27 04:38:38 -05:00
template < class TypeTag >
struct IluRedblack < TypeTag , TTag : : FlowIstlSolverParams > {
static constexpr bool value = false ;
} ;
template < class TypeTag >
struct IluReorderSpheres < TypeTag , TTag : : FlowIstlSolverParams > {
static constexpr bool value = false ;
} ;
template < class TypeTag >
struct UseGmres < TypeTag , TTag : : FlowIstlSolverParams > {
static constexpr bool value = false ;
} ;
template < class TypeTag >
struct LinearSolverRequireFullSparsityPattern < TypeTag , TTag : : FlowIstlSolverParams > {
static constexpr bool value = false ;
} ;
template < class TypeTag >
struct LinearSolverIgnoreConvergenceFailure < TypeTag , TTag : : FlowIstlSolverParams > {
static constexpr bool value = false ;
} ;
template < class TypeTag >
struct UseAmg < TypeTag , TTag : : FlowIstlSolverParams > {
static constexpr bool value = false ;
} ;
template < class TypeTag >
struct UseCpr < TypeTag , TTag : : FlowIstlSolverParams > {
static constexpr bool value = false ;
} ;
2018-11-12 04:03:54 -06:00
SET_TYPE_PROP ( FlowIstlSolverParams , LinearSolverBackend , Opm : : ISTLSolverEbos < TypeTag > ) ;
2020-08-27 04:38:38 -05:00
template < class TypeTag >
struct PreconditionerAddWellContributions < TypeTag , TTag : : FlowIstlSolverParams > {
static constexpr bool value = false ;
} ;
2020-08-27 04:38:38 -05:00
template < class TypeTag >
struct SystemStrategy < TypeTag , TTag : : FlowIstlSolverParams > {
static constexpr auto value = " none " ;
} ;
2020-08-27 04:38:38 -05:00
template < class TypeTag >
struct ScaleLinearSystem < TypeTag , TTag : : FlowIstlSolverParams > {
static constexpr bool value = false ;
} ;
2020-08-27 04:38:38 -05:00
template < class TypeTag >
struct CprSolverVerbose < TypeTag , TTag : : FlowIstlSolverParams > {
static constexpr int value = 0 ;
} ;
2020-08-27 04:38:38 -05:00
template < class TypeTag >
struct CprUseDrs < TypeTag , TTag : : FlowIstlSolverParams > {
static constexpr bool value = false ;
} ;
2020-08-27 04:38:38 -05:00
template < class TypeTag >
struct CprMaxEllIter < TypeTag , TTag : : FlowIstlSolverParams > {
static constexpr int value = 20 ;
} ;
template < class TypeTag >
struct CprEllSolvetype < TypeTag , TTag : : FlowIstlSolverParams > {
static constexpr int value = 0 ;
} ;
template < class TypeTag >
struct CprReuseSetup < TypeTag , TTag : : FlowIstlSolverParams > {
static constexpr int value = 3 ;
} ;
2020-08-27 04:38:38 -05:00
template < class TypeTag >
struct LinearSolverConfiguration < TypeTag , TTag : : FlowIstlSolverParams > {
static constexpr auto value = " ilu0 " ;
} ;
template < class TypeTag >
struct LinearSolverConfigurationJsonFile < TypeTag , TTag : : FlowIstlSolverParams > {
static constexpr auto value = " none " ;
} ;
template < class TypeTag >
struct GpuMode < TypeTag , TTag : : FlowIstlSolverParams > {
static constexpr auto value = " none " ;
} ;
2020-08-27 04:38:38 -05:00
template < class TypeTag >
struct BdaDeviceId < TypeTag , TTag : : FlowIstlSolverParams > {
static constexpr int value = 0 ;
} ;
template < class TypeTag >
struct OpenclPlatformId < TypeTag , TTag : : FlowIstlSolverParams > {
static constexpr int value = 0 ;
} ;
2018-11-12 04:03:54 -06:00
2020-08-21 06:42:08 -05:00
} // namespace Opm::Properties
2018-11-15 04:07:47 -06:00
namespace Opm
{
/**
* \ brief Parameters used to configure the CPRPreconditioner .
*/
struct CPRParameter
{
2019-03-14 04:05:20 -05:00
double cpr_relax_ ;
double cpr_solver_tol_ ;
int cpr_ilu_n_ ;
2018-11-15 04:07:47 -06:00
MILU_VARIANT cpr_ilu_milu_ ;
bool cpr_ilu_redblack_ ;
bool cpr_ilu_reorder_sphere_ ;
2019-03-12 07:55:11 -05:00
bool cpr_use_drs_ ;
2018-11-15 04:07:47 -06:00
int cpr_max_ell_iter_ ;
2019-03-12 07:55:11 -05:00
int cpr_ell_solvetype_ ;
2018-11-15 04:07:47 -06:00
bool cpr_use_amg_ ;
bool cpr_use_bicgstab_ ;
2019-03-12 07:55:11 -05:00
int cpr_solver_verbose_ ;
2018-11-15 04:07:47 -06:00
bool cpr_pressure_aggregation_ ;
2019-03-12 07:55:11 -05:00
int cpr_reuse_setup_ ;
2018-11-15 04:07:47 -06:00
CPRParameter ( ) { reset ( ) ; }
void reset ( )
{
2019-03-14 04:05:20 -05:00
cpr_solver_tol_ = 1e-2 ;
2018-11-15 04:07:47 -06:00
cpr_ilu_n_ = 0 ;
cpr_ilu_milu_ = MILU_VARIANT : : ILU ;
cpr_ilu_redblack_ = false ;
cpr_ilu_reorder_sphere_ = true ;
cpr_max_ell_iter_ = 25 ;
2019-03-14 03:04:51 -05:00
cpr_ell_solvetype_ = 0 ;
cpr_use_drs_ = false ;
2018-11-15 04:07:47 -06:00
cpr_use_amg_ = true ;
cpr_use_bicgstab_ = true ;
2019-03-12 07:55:11 -05:00
cpr_solver_verbose_ = 0 ;
2018-11-15 04:07:47 -06:00
cpr_pressure_aggregation_ = false ;
2019-03-14 03:04:51 -05:00
cpr_reuse_setup_ = 0 ;
2018-11-15 04:07:47 -06:00
}
} ;
/// This class carries all parameters for the NewtonIterationBlackoilInterleaved class.
struct FlowLinearSolverParameters
: public CPRParameter
{
double linear_solver_reduction_ ;
double ilu_relaxation_ ;
int linear_solver_maxiter_ ;
int linear_solver_restart_ ;
int linear_solver_verbosity_ ;
int ilu_fillin_level_ ;
Opm : : MILU_VARIANT ilu_milu_ ;
bool ilu_redblack_ ;
bool ilu_reorder_sphere_ ;
bool newton_use_gmres_ ;
bool require_full_sparsity_pattern_ ;
bool ignoreConvergenceFailure_ ;
bool linear_solver_use_amg_ ;
bool use_cpr_ ;
2019-03-12 07:55:11 -05:00
std : : string system_strategy_ ;
bool scale_linear_system_ ;
2019-08-22 14:14:48 -05:00
std : : string linear_solver_configuration_ ;
2019-05-20 06:23:57 -05:00
std : : string linear_solver_configuration_json_file_ ;
2020-06-22 11:26:49 -05:00
std : : string gpu_mode_ ;
2020-07-01 12:43:22 -05:00
int bda_device_id_ ;
int opencl_platform_id_ ;
2018-11-15 04:07:47 -06:00
template < class TypeTag >
void init ( )
{
// TODO: these parameters have undocumented non-trivial dependencies
linear_solver_reduction_ = EWOMS_GET_PARAM ( TypeTag , double , LinearSolverReduction ) ;
ilu_relaxation_ = EWOMS_GET_PARAM ( TypeTag , double , IluRelaxation ) ;
linear_solver_maxiter_ = EWOMS_GET_PARAM ( TypeTag , int , LinearSolverMaxIter ) ;
linear_solver_restart_ = EWOMS_GET_PARAM ( TypeTag , int , LinearSolverRestart ) ;
linear_solver_verbosity_ = EWOMS_GET_PARAM ( TypeTag , int , FlowLinearSolverVerbosity ) ;
ilu_fillin_level_ = EWOMS_GET_PARAM ( TypeTag , int , IluFillinLevel ) ;
ilu_milu_ = convertString2Milu ( EWOMS_GET_PARAM ( TypeTag , std : : string , MiluVariant ) ) ;
ilu_redblack_ = EWOMS_GET_PARAM ( TypeTag , bool , IluRedblack ) ;
ilu_reorder_sphere_ = EWOMS_GET_PARAM ( TypeTag , bool , IluReorderSpheres ) ;
newton_use_gmres_ = EWOMS_GET_PARAM ( TypeTag , bool , UseGmres ) ;
require_full_sparsity_pattern_ = EWOMS_GET_PARAM ( TypeTag , bool , LinearSolverRequireFullSparsityPattern ) ;
ignoreConvergenceFailure_ = EWOMS_GET_PARAM ( TypeTag , bool , LinearSolverIgnoreConvergenceFailure ) ;
linear_solver_use_amg_ = EWOMS_GET_PARAM ( TypeTag , bool , UseAmg ) ;
use_cpr_ = EWOMS_GET_PARAM ( TypeTag , bool , UseCpr ) ;
2019-03-14 03:04:51 -05:00
system_strategy_ = EWOMS_GET_PARAM ( TypeTag , std : : string , SystemStrategy ) ;
scale_linear_system_ = EWOMS_GET_PARAM ( TypeTag , bool , ScaleLinearSystem ) ;
cpr_solver_verbose_ = EWOMS_GET_PARAM ( TypeTag , int , CprSolverVerbose ) ;
cpr_use_drs_ = EWOMS_GET_PARAM ( TypeTag , bool , CprUseDrs ) ;
2019-03-20 04:24:44 -05:00
cpr_max_ell_iter_ = EWOMS_GET_PARAM ( TypeTag , int , CprMaxEllIter ) ;
2019-03-14 03:04:51 -05:00
cpr_ell_solvetype_ = EWOMS_GET_PARAM ( TypeTag , int , CprEllSolvetype ) ;
cpr_reuse_setup_ = EWOMS_GET_PARAM ( TypeTag , int , CprReuseSetup ) ;
2019-08-22 14:14:48 -05:00
linear_solver_configuration_ = EWOMS_GET_PARAM ( TypeTag , std : : string , LinearSolverConfiguration ) ;
2019-05-20 06:23:57 -05:00
linear_solver_configuration_json_file_ = EWOMS_GET_PARAM ( TypeTag , std : : string , LinearSolverConfigurationJsonFile ) ;
2020-06-22 11:26:49 -05:00
gpu_mode_ = EWOMS_GET_PARAM ( TypeTag , std : : string , GpuMode ) ;
2020-07-01 12:43:22 -05:00
bda_device_id_ = EWOMS_GET_PARAM ( TypeTag , int , BdaDeviceId ) ;
opencl_platform_id_ = EWOMS_GET_PARAM ( TypeTag , int , OpenclPlatformId ) ;
2018-11-15 04:07:47 -06:00
}
template < class TypeTag >
static void registerParameters ( )
{
EWOMS_REGISTER_PARAM ( TypeTag , double , LinearSolverReduction , " The minimum reduction of the residual which the linear solver must achieve " ) ;
EWOMS_REGISTER_PARAM ( TypeTag , double , IluRelaxation , " The relaxation factor of the linear solver's ILU preconditioner " ) ;
EWOMS_REGISTER_PARAM ( TypeTag , int , LinearSolverMaxIter , " The maximum number of iterations of the linear solver " ) ;
EWOMS_REGISTER_PARAM ( TypeTag , int , LinearSolverRestart , " The number of iterations after which GMRES is restarted " ) ;
EWOMS_REGISTER_PARAM ( TypeTag , int , FlowLinearSolverVerbosity , " The verbosity level of the linear solver (0: off, 2: all) " ) ;
EWOMS_REGISTER_PARAM ( TypeTag , int , IluFillinLevel , " The fill-in level of the linear solver's ILU preconditioner " ) ;
EWOMS_REGISTER_PARAM ( TypeTag , std : : string , MiluVariant , " Specify which variant of the modified-ILU preconditioner ought to be used. Possible variants are: ILU (default, plain ILU), MILU_1 (lump diagonal with dropped row entries), MILU_2 (lump diagonal with the sum of the absolute values of the dropped row entries), MILU_3 (if diagonal is positive add sum of dropped row entrires. Otherwise substract them), MILU_4 (if diagonal is positive add sum of dropped row entrires. Otherwise do nothing " ) ;
EWOMS_REGISTER_PARAM ( TypeTag , bool , IluRedblack , " Use red-black partioning for the ILU preconditioner " ) ;
EWOMS_REGISTER_PARAM ( TypeTag , bool , IluReorderSpheres , " Whether to reorder the entries of the matrix in the red-black ILU preconditioner in spheres starting at an edge. If false the original ordering is preserved in each color. Otherwise why try to ensure D4 ordering (in a 2D structured grid, the diagonal elements are consecutive). " ) ;
EWOMS_REGISTER_PARAM ( TypeTag , bool , UseGmres , " Use GMRES as the linear solver " ) ;
EWOMS_REGISTER_PARAM ( TypeTag , bool , LinearSolverRequireFullSparsityPattern , " Produce the full sparsity pattern for the linear solver " ) ;
EWOMS_REGISTER_PARAM ( TypeTag , bool , LinearSolverIgnoreConvergenceFailure , " Continue with the simulation like nothing happened after the linear solver did not converge " ) ;
EWOMS_REGISTER_PARAM ( TypeTag , bool , UseAmg , " Use AMG as the linear solver's preconditioner " ) ;
EWOMS_REGISTER_PARAM ( TypeTag , bool , UseCpr , " Use CPR as the linear solver's preconditioner " ) ;
2019-03-20 04:24:44 -05:00
EWOMS_REGISTER_PARAM ( TypeTag , std : : string , SystemStrategy , " Strategy for reformulating and scaling linear system (none: no scaling -- should not be used with CPR, original: use weights that are equivalent to no scaling -- should not be used with CPR, simple: form pressure equation as simple sum of conservation equations, quasiimpes: form pressure equation based on diagonal block, trueimpes: form pressure equation based on linearization of accumulation term) " ) ;
2019-03-14 03:04:51 -05:00
EWOMS_REGISTER_PARAM ( TypeTag , bool , ScaleLinearSystem , " Scale linear system according to equation scale and primary variable types " ) ;
2019-03-20 04:24:44 -05:00
EWOMS_REGISTER_PARAM ( TypeTag , int , CprSolverVerbose , " Verbosity of cpr solver (0: silent, 1: print summary of inner linear solver, 2: print extensive information about inner linear solve, including setup information) " ) ;
EWOMS_REGISTER_PARAM ( TypeTag , bool , CprUseDrs , " Use dynamic row sum using weights " ) ;
EWOMS_REGISTER_PARAM ( TypeTag , int , CprMaxEllIter , " MaxIterations of the elliptic pressure part of the cpr solver " ) ;
EWOMS_REGISTER_PARAM ( TypeTag , int , CprEllSolvetype , " Solver type of elliptic pressure solve (0: bicgstab, 1: cg, 2: only amg preconditioner) " ) ;
2019-03-14 03:04:51 -05:00
EWOMS_REGISTER_PARAM ( TypeTag , int , CprReuseSetup , " Reuse Amg Setup " ) ;
2020-03-31 03:18:20 -05:00
EWOMS_REGISTER_PARAM ( TypeTag , std : : string , LinearSolverConfiguration , " Configuration of solver valid is: ilu0 (default), cpr_quasiimpes, cpr_trueimpes or file (specified in LinearSolverConfigurationJsonFile) " ) ;
2019-05-20 06:23:57 -05:00
EWOMS_REGISTER_PARAM ( TypeTag , std : : string , LinearSolverConfigurationJsonFile , " Filename of JSON configuration for flexible linear solver system. " ) ;
2020-07-07 07:26:02 -05:00
EWOMS_REGISTER_PARAM ( TypeTag , std : : string , GpuMode , " Use GPU cusparseSolver or openclSolver as the linear solver, usage: '--gpu-mode=[none|cusparse|opencl]' " ) ;
EWOMS_REGISTER_PARAM ( TypeTag , int , BdaDeviceId , " Choose device ID for cusparseSolver or openclSolver, use 'nvidia-smi' or 'clinfo' to determine valid IDs " ) ;
EWOMS_REGISTER_PARAM ( TypeTag , int , OpenclPlatformId , " Choose platform ID for openclSolver, use 'clinfo' to determine valid platform IDs " ) ;
2018-11-15 04:07:47 -06:00
}
FlowLinearSolverParameters ( ) { reset ( ) ; }
// set default values
void reset ( )
{
use_cpr_ = false ;
newton_use_gmres_ = false ;
linear_solver_reduction_ = 1e-2 ;
linear_solver_maxiter_ = 150 ;
linear_solver_restart_ = 40 ;
linear_solver_verbosity_ = 0 ;
require_full_sparsity_pattern_ = false ;
ignoreConvergenceFailure_ = false ;
linear_solver_use_amg_ = false ;
ilu_fillin_level_ = 0 ;
ilu_relaxation_ = 0.9 ;
ilu_milu_ = MILU_VARIANT : : ILU ;
ilu_redblack_ = false ;
ilu_reorder_sphere_ = true ;
2020-06-22 11:26:49 -05:00
gpu_mode_ = " none " ;
2020-07-01 12:43:22 -05:00
bda_device_id_ = 0 ;
opencl_platform_id_ = 0 ;
2018-11-15 04:07:47 -06:00
}
} ;
} // namespace Opm
# endif // OPM_FLOWLINEARSOLVERPARAMETERS_HEADER_INCLUDED