Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions include/ginkgo/core/factorization/ic.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,8 @@ class Ic : public Composition<ValueType> {

GKO_CREATE_FACTORY_PARAMETERS(parameters, Factory)
{
GKO_BEGIN_DISABLE_DEPRECATION_WARNINGS

/**
* Strategy which will be used by the L matrix. The default value
* `nullptr` will result in the strategy `classical`.
Expand All @@ -93,6 +95,8 @@ class Ic : public Composition<ValueType> {
return *this;
}

GKO_END_DISABLE_DEPRECATION_WARNINGS

/**
* Strategy which will be used by the L matrix. The default value is
* `classical`.
Expand Down
8 changes: 8 additions & 0 deletions include/ginkgo/core/factorization/ilu.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@ class Ilu : public Composition<ValueType> {

GKO_CREATE_FACTORY_PARAMETERS(parameters, Factory)
{
GKO_BEGIN_DISABLE_DEPRECATION_WARNINGS

/**
* Strategy which will be used by the L matrix. The default value
* `nullptr` will result in the strategy `classical`.
Expand All @@ -88,6 +90,8 @@ class Ilu : public Composition<ValueType> {
return *this;
}

GKO_END_DISABLE_DEPRECATION_WARNINGS

/**
* Strategy which will be used by the L matrix. The default value is
* `classical`.
Expand All @@ -101,6 +105,8 @@ class Ilu : public Composition<ValueType> {
matrix::csr::spmv_strategy l_strategy{
matrix::csr::spmv_strategy::classical};

GKO_BEGIN_DISABLE_DEPRECATION_WARNINGS

/**
* Strategy which will be used by the U matrix. The default value
* `nullptr` will result in the strategy `classical`.
Expand All @@ -117,6 +123,8 @@ class Ilu : public Composition<ValueType> {
return *this;
}

GKO_END_DISABLE_DEPRECATION_WARNINGS

/**
* Strategy which will be used by the U matrix. The default value is
* `classical`.
Expand Down
4 changes: 4 additions & 0 deletions include/ginkgo/core/factorization/par_ic.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,8 @@ class ParIc : public Composition<ValueType> {
*/
bool GKO_FACTORY_PARAMETER_SCALAR(skip_sorting, false);

GKO_BEGIN_DISABLE_DEPRECATION_WARNINGS

/**
* Strategy which will be used by the L matrix. The default value
* `nullptr` will result in the strategy `classical`.
Expand All @@ -137,6 +139,8 @@ class ParIc : public Composition<ValueType> {
return *this;
}

GKO_END_DISABLE_DEPRECATION_WARNINGS

/**
* Strategy which will be used by the L matrix. The default value is
* `classical`.
Expand Down
4 changes: 4 additions & 0 deletions include/ginkgo/core/factorization/par_ict.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,8 @@ class ParIct : public Composition<ValueType> {
*/
double GKO_FACTORY_PARAMETER_SCALAR(fill_in_limit, 2.0);

GKO_BEGIN_DISABLE_DEPRECATION_WARNINGS

/**
* Strategy which will be used by the L matrix. The default value
* `nullptr` will result in the strategy `classical`.
Expand All @@ -186,6 +188,8 @@ class ParIct : public Composition<ValueType> {
return *this;
}

GKO_END_DISABLE_DEPRECATION_WARNINGS

/**
* Strategy which will be used by the L matrix. The default value is
* `classical`.
Expand Down
8 changes: 8 additions & 0 deletions include/ginkgo/core/factorization/par_ilu.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,8 @@ class ParIlu : public Composition<ValueType> {
*/
bool GKO_FACTORY_PARAMETER_SCALAR(skip_sorting, false);

GKO_BEGIN_DISABLE_DEPRECATION_WARNINGS

/**
* Strategy which will be used by the L matrix. The default value
* `nullptr` will result in the strategy `classical`.
Expand All @@ -135,6 +137,8 @@ class ParIlu : public Composition<ValueType> {
return *this;
}

GKO_END_DISABLE_DEPRECATION_WARNINGS

/**
* Strategy which will be used by the L matrix. The default value is
* `classical`.
Expand All @@ -148,6 +152,8 @@ class ParIlu : public Composition<ValueType> {
matrix::csr::spmv_strategy l_strategy{
matrix::csr::spmv_strategy::classical};

GKO_BEGIN_DISABLE_DEPRECATION_WARNINGS

/**
* Strategy which will be used by the U matrix. The default value
* `nullptr` will result in the strategy `classical`.
Expand All @@ -164,6 +170,8 @@ class ParIlu : public Composition<ValueType> {
return *this;
}

GKO_END_DISABLE_DEPRECATION_WARNINGS

/**
* Strategy which will be used by the U matrix. The default value is
* `classical`.
Expand Down
8 changes: 8 additions & 0 deletions include/ginkgo/core/factorization/par_ilut.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,8 @@ class ParIlut : public Composition<ValueType> {
*/
double GKO_FACTORY_PARAMETER_SCALAR(fill_in_limit, 2.0);

GKO_BEGIN_DISABLE_DEPRECATION_WARNINGS

/**
* Strategy which will be used by the L matrix. The default value
* `nullptr` will result in the strategy `classical`.
Expand All @@ -192,6 +194,8 @@ class ParIlut : public Composition<ValueType> {
return *this;
}

GKO_END_DISABLE_DEPRECATION_WARNINGS

/**
* Strategy which will be used by the L matrix. The default value is
* `classical`.
Expand All @@ -205,6 +209,8 @@ class ParIlut : public Composition<ValueType> {
matrix::csr::spmv_strategy l_strategy{
matrix::csr::spmv_strategy::classical};

GKO_BEGIN_DISABLE_DEPRECATION_WARNINGS

/**
* Strategy which will be used by the U matrix. The default value
* `nullptr` will result in the strategy `classical`.
Expand All @@ -221,6 +227,8 @@ class ParIlut : public Composition<ValueType> {
return *this;
}

GKO_END_DISABLE_DEPRECATION_WARNINGS

/**
* Strategy which will be used by the U matrix. The default value is
* `classical`.
Expand Down
Loading