Skip to content

Commit

Permalink
[sor] review updates:
Browse files Browse the repository at this point in the history
- documentation
- tests
- don't build upper solver if not symmetric

Co-authored-by: Yu-Hsiang M. Tsai <[email protected]>
  • Loading branch information
MarcelKoch and yhmtsai committed Jul 11, 2024
1 parent f8cbc05 commit db0557d
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 28 deletions.
5 changes: 3 additions & 2 deletions core/preconditioner/sor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,11 @@ std::unique_ptr<LinOp> Sor<ValueType, IndexType>::generate_impl(

auto l_trs_factory =
parameters_.l_solver ? parameters_.l_solver : LTrs::build().on(exec);
auto u_trs_factory =
parameters_.u_solver ? parameters_.u_solver : UTrs::build().on(exec);

if (parameters_.symmetric) {
auto u_trs_factory = parameters_.u_solver ? parameters_.u_solver
: UTrs::build().on(exec);

array<index_type> l_row_ptrs{exec, size[0] + 1};
array<index_type> u_row_ptrs{exec, size[0] + 1};
exec->run(make_initialize_row_ptrs_l_u(
Expand Down
8 changes: 4 additions & 4 deletions core/test/config/preconditioner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -327,10 +327,10 @@ struct Sor
param.with_relaxation_factor(0.8f);
config_map["l_solver"] = pnode{
{{"type", pnode{"solver::Ir"}}, {"value_type", pnode{"float32"}}}};
param.with_l_solver(DummyIr::build());
param.with_l_solver(Ir::build());
config_map["u_solver"] = pnode{
{{"type", pnode{"solver::Ir"}}, {"value_type", pnode{"float32"}}}};
param.with_u_solver(DummyIr::build());
param.with_u_solver(Ir::build());
}

template <bool from_reg, typename AnswerType>
Expand Down Expand Up @@ -374,10 +374,10 @@ struct GaussSeidel
param.with_symmetric(true);
config_map["l_solver"] = pnode{
{{"type", pnode{"solver::Ir"}}, {"value_type", pnode{"float32"}}}};
param.with_l_solver(DummyIr::build());
param.with_l_solver(Ir::build());
config_map["u_solver"] = pnode{
{{"type", pnode{"solver::Ir"}}, {"value_type", pnode{"float32"}}}};
param.with_u_solver(DummyIr::build());
param.with_u_solver(Ir::build());
}

template <bool from_reg, typename AnswerType>
Expand Down
7 changes: 4 additions & 3 deletions include/ginkgo/core/preconditioner/gauss_seidel.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ namespace preconditioner {
/**
* This class generates the Gauss-Seidel preconditioner.
*
* This is the special case of $\omega = 1$ of the (S)SOR preconditioner.
* This is the special case of the relaxation factor $\omega = 1$ of the (S)SOR
* preconditioner.
*
* @see Sor
*/
Expand All @@ -49,12 +50,12 @@ class GaussSeidel
// determines if Gauss-Seidel or symmetric Gauss-Seidel should be used
bool GKO_FACTORY_PARAMETER_SCALAR(symmetric, false);

// factory for the lower triangular factor solver
// factory for the lower triangular factor solver, defaults to LowerTrs
std::shared_ptr<const LinOpFactory> GKO_DEFERRED_FACTORY_PARAMETER(
l_solver);

// factory for the upper triangular factor solver, unused if symmetric
// is false
// is false, defaults to UpperTrs
std::shared_ptr<const LinOpFactory> GKO_DEFERRED_FACTORY_PARAMETER(
u_solver);
};
Expand Down
6 changes: 4 additions & 2 deletions include/ginkgo/core/preconditioner/sor.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ namespace preconditioner {
* M = \frac{1}{\omega (2 - \omega)} (D + \omega L) D^{-1} (D + \omega U) ,
* \quad 0 < \omega < 2.
* $$
* A detailed description can be found in Iterative Methods for Sparse Linear
* Systems (Y. Saad) ch. 4.1.
*
* This class is a factory, which will only generate the preconditioner. The
* resulting LinOp will represent the application of $M^{-1}$.
Expand Down Expand Up @@ -69,12 +71,12 @@ class Sor
remove_complex<value_type> GKO_FACTORY_PARAMETER_SCALAR(
relaxation_factor, remove_complex<value_type>(1.2));

// factory for the lower triangular factor solver
// factory for the lower triangular factor solver, defaults to LowerTrs
std::shared_ptr<const LinOpFactory> GKO_DEFERRED_FACTORY_PARAMETER(
l_solver);

// factory for the upper triangular factor solver, unused if symmetric
// is false
// is false, defaults to UpperTrs
std::shared_ptr<const LinOpFactory> GKO_DEFERRED_FACTORY_PARAMETER(
u_solver);
};
Expand Down
2 changes: 1 addition & 1 deletion reference/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ target_sources(ginkgo_reference
matrix/sparsity_csr_kernels.cpp
multigrid/pgm_kernels.cpp
preconditioner/batch_jacobi_kernels.cpp
preconditioner/sor_kernels.cpp
preconditioner/sor_kernels.cpp
preconditioner/isai_kernels.cpp
preconditioner/jacobi_kernels.cpp
reorder/rcm_kernels.cpp
Expand Down
32 changes: 16 additions & 16 deletions reference/test/preconditioner/sor_kernels.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -80,15 +80,15 @@ TYPED_TEST(Sor, CanInitializeLFactorWithWeight)
result->scale(
gko::initialize<gko::matrix::Dense<value_type>>({0.0}, this->exec));
std::shared_ptr<csr_type> expected_l =
gko::initialize<csr_type>({{1, 0, 0, 0, 0},
{-2, 1, 0, 0, 0},
{0, -5, 1, 0, 0},
{-3, 0, 0, 1, 0},
{-4, 0, -6, -7, 1}},
gko::initialize<csr_type>({{2 * this->diag_value, 0, 0, 0, 0},
{-2, 2 * this->diag_value, 0, 0, 0},
{0, -5, 2 * this->diag_value, 0, 0},
{-3, 0, 0, 2 * this->diag_value, 0},
{-4, 0, -6, -7, 2 * this->diag_value}},
this->exec);

gko::kernels::reference::sor::initialize_weighted_l(
this->exec, this->mtx.get(), this->diag_value, result.get());
this->exec, this->mtx.get(), 0.5f, result.get());

GKO_ASSERT_MTX_NEAR(result, expected_l, r<value_type>::value);
}
Expand Down Expand Up @@ -122,15 +122,16 @@ TYPED_TEST(Sor, CanInitializeLAndUFactorWithWeight)
gko::initialize<gko::matrix::Dense<value_type>>({0.0}, this->exec));
result_u->scale(
gko::initialize<gko::matrix::Dense<value_type>>({0.0}, this->exec));
auto diag_weight = static_cast<gko::remove_complex<value_type>>(
1.0 / (2 - this->diag_value));
auto off_diag_weight = this->diag_value * diag_weight;
auto factor = static_cast<gko::remove_complex<value_type>>(0.5);
auto diag_weight =
static_cast<gko::remove_complex<value_type>>(1.0 / (2 - factor));
auto off_diag_weight = factor * diag_weight;
std::shared_ptr<csr_type> expected_l =
gko::initialize<csr_type>({{1, 0, 0, 0, 0},
{-2, 1, 0, 0, 0},
{0, -5, 1, 0, 0},
{-3, 0, 0, 1, 0},
{-4, 0, -6, -7, 1}},
gko::initialize<csr_type>({{2 * this->diag_value, 0, 0, 0, 0},
{-2, 2 * this->diag_value, 0, 0, 0},
{0, -5, 2 * this->diag_value, 0, 0},
{-3, 0, 0, 2 * this->diag_value, 0},
{-4, 0, -6, -7, 2 * this->diag_value}},
this->exec);
std::shared_ptr<csr_type> expected_u = gko::initialize<csr_type>(
{{this->diag_value * diag_weight, 2 * off_diag_weight, 0,
Expand All @@ -142,8 +143,7 @@ TYPED_TEST(Sor, CanInitializeLAndUFactorWithWeight)
this->exec);

gko::kernels::reference::sor::initialize_weighted_l_u(
this->exec, this->mtx.get(), this->diag_value, result_l.get(),
result_u.get());
this->exec, this->mtx.get(), factor, result_l.get(), result_u.get());

GKO_ASSERT_MTX_NEAR(result_l, expected_l, r<value_type>::value);
GKO_ASSERT_MTX_NEAR(result_u, expected_u, r<value_type>::value);
Expand Down

0 comments on commit db0557d

Please sign in to comment.