Revert "Grouped Gemm with looping over the tiles. (#788)" (#982)

This reverts commit a4f72a314a.
This commit is contained in:
zjing14
2023-10-11 14:27:29 -05:00
committed by GitHub
parent a4f72a314a
commit c99323be6e
21 changed files with 517 additions and 854 deletions

View File

@@ -897,14 +897,3 @@ template <index_t NSize, index_t I>
using uniform_sequence_gen_t = typename uniform_sequence_gen<NSize, I>::type;
} // namespace ck
template <ck::index_t... Is>
std::ostream& operator<<(std::ostream& os, const ck::Sequence<Is...>)
{
using S = ck::Sequence<Is...>;
os << "{";
ck::static_for<0, S::Size() - ck::Number<1>{}, 1>{}(
[&](auto i) { os << S::At(i).value << ", "; });
os << S::At(S::Size() - ck::Number<1>{}).value << "}";
return os;
}