fix out of lds

This commit is contained in:
yadaish
2025-11-24 09:32:44 +00:00
parent 79f2db722e
commit fcff617424

View File

@@ -13,7 +13,11 @@
// GEMM config with 16x16 warp tile
struct A16W4_FlatmmConfig16
{
static constexpr ck_tile::index_t M_Tile = 128;
#if defined(__gfx950__)
static constexpr ck_tile::index_t M_Tile = 256;
#else
static constexpr ck_tile::index_t M_Tile = 64;
#endif
static constexpr ck_tile::index_t N_Tile = 256;
static constexpr ck_tile::index_t K_Tile = 256;