Skip to content

Commit

Permalink
direct and tri config dispatch
Browse files Browse the repository at this point in the history
  • Loading branch information
yhmtsai committed Oct 28, 2024
1 parent fa6a4e2 commit 3179d32
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions core/config/solver_config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,10 @@ GKO_PARSE_VALUE_TYPE_WITH_HALF(Idr, gko::solver::Idr);
GKO_PARSE_VALUE_TYPE_WITH_HALF(Gcr, gko::solver::Gcr);
GKO_PARSE_VALUE_TYPE_WITH_HALF(Gmres, gko::solver::Gmres);
GKO_PARSE_VALUE_TYPE(CbGmres, gko::solver::CbGmres);
GKO_PARSE_VALUE_AND_INDEX_TYPE(Direct, gko::experimental::solver::Direct);
GKO_PARSE_VALUE_AND_INDEX_TYPE(LowerTrs, gko::solver::LowerTrs);
GKO_PARSE_VALUE_AND_INDEX_TYPE(UpperTrs, gko::solver::UpperTrs);
GKO_PARSE_VALUE_AND_INDEX_TYPE_WITH_HALF(Direct,
gko::experimental::solver::Direct);
GKO_PARSE_VALUE_AND_INDEX_TYPE_WITH_HALF(LowerTrs, gko::solver::LowerTrs);
GKO_PARSE_VALUE_AND_INDEX_TYPE_WITH_HALF(UpperTrs, gko::solver::UpperTrs);


template <>
Expand Down

0 comments on commit 3179d32

Please sign in to comment.