mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-04-20 06:49:15 +00:00
This reverts commit a4f72a314a.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user