Skip to content

Commit

Permalink
composition and combination
Browse files Browse the repository at this point in the history
  • Loading branch information
yhmtsai committed Oct 25, 2024
1 parent 49333c3 commit dc5a7e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/base/combination.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ void Combination<ValueType>::apply_impl(const LinOp* alpha, const LinOp* b,


#define GKO_DECLARE_COMBINATION(_type) class Combination<_type>
GKO_INSTANTIATE_FOR_EACH_VALUE_TYPE(GKO_DECLARE_COMBINATION);
GKO_INSTANTIATE_FOR_EACH_VALUE_TYPE_WITH_HALF(GKO_DECLARE_COMBINATION);


} // namespace gko
2 changes: 1 addition & 1 deletion core/base/composition.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ void Composition<ValueType>::apply_impl(const LinOp* alpha, const LinOp* b,


#define GKO_DECLARE_COMPOSITION(_type) class Composition<_type>
GKO_INSTANTIATE_FOR_EACH_VALUE_TYPE(GKO_DECLARE_COMPOSITION);
GKO_INSTANTIATE_FOR_EACH_VALUE_TYPE_WITH_HALF(GKO_DECLARE_COMPOSITION);


} // namespace gko

0 comments on commit dc5a7e6

Please sign in to comment.