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 b819278 commit 7384793
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion DevicePersistent/Partition/Partition.H
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ SourceFiles

#include <ginkgo/ginkgo.hpp>

#include "HostMatrix/HostMatrix.H"
#include "DevicePersistent/Base/Base.H"
#include "DevicePersistent/ExecutorHandler/ExecutorHandler.H"
#include "HostMatrix/HostMatrix.H"
Expand Down
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

0 comments on commit 7384793

Please sign in to comment.