Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
greole committed Nov 17, 2023
1 parent 0be7b0c commit ff0b489
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
5 changes: 2 additions & 3 deletions Solver/GMRES/GKOGMRES.H
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,8 @@ public:
std::unique_ptr<gmres::Factory, std::default_delete<gmres::Factory>>
create_default(std::shared_ptr<gko::Executor> exec) const
{
auto gmres = gmres::build()
.with_criteria(stoppingCriterionVec_)
.on(exec);
auto gmres =
gmres::build().with_criteria(stoppingCriterionVec_).on(exec);
return gmres;
};

Expand Down
3 changes: 1 addition & 2 deletions lduLduBase/lduLduBase.H
Original file line number Diff line number Diff line change
Expand Up @@ -223,8 +223,7 @@ public:
verbose_,
solver_controls_.lookupOrDefault<label>("ranksPerGPU", 1),
psi.size(), // number of elements
this->get_communication_pattern()
};
this->get_communication_pattern()};

// TODO this is now the local matrix part for dist_A
MatrixWrapper dist_A{db_,
Expand Down

0 comments on commit ff0b489

Please sign in to comment.