Skip to content

Commit

Permalink
TA::retile uses efficient (retile_v2) method, no more GEMM-based reti…
Browse files Browse the repository at this point in the history
…ling by default (thanks, @calewis )
  • Loading branch information
evaleev committed Aug 27, 2024
1 parent faeb652 commit c275ec5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TiledArray/conversions/retile.h
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ auto retile_v2(const DistArray<Tile, Policy>& source_array,
template <typename Tile, typename Policy>
auto retile(const DistArray<Tile, Policy>& array,
const TiledRange& target_trange) {
return detail::retile_v0(array, target_trange);
return detail::retile_v2(array, target_trange);
}

} // namespace TiledArray
Expand Down

0 comments on commit c275ec5

Please sign in to comment.