[CK TILE GEMM] Fix a merge conflict (#2753)

* Fixed a merge conflict in 245467f3
* Foramt the code
This commit is contained in:
Cong Ma
2025-08-27 12:08:09 -06:00
committed by GitHub
parent cfe5e448db
commit cd53e2e57e
3 changed files with 41 additions and 43 deletions

View File

@@ -40,8 +40,8 @@ template <typename FlatmmConfig, typename T>
auto shuffle_b(const ck_tile::HostTensor<T>& t)
{
assert(t.get_lengths().size() == 2);
int n_ = t.get_lengths()[1];
int k_ = t.get_lengths()[0];
int n_ = t.get_lengths()[1];
int k_ = t.get_lengths()[0];
int divisor = ck_tile::is_wave32() ? (FlatmmConfig::N_Warp_Tile == 32 ? 1 : 2)
: (FlatmmConfig::N_Warp_Tile == 32 ? 2 : 4);