[CK TILE] Apply CK_GFX950_SUPPORT macro on ck tile GEMM unit tests (#2560)

cherry-pick c68687e30 and apply CK_GFX950_SUPPORT macro on ck tile GEMM unit tests

Co-authored-by: AviralGoelAMD <aviral.goel@amd.com>
Co-authored-by: Illia Silin <98187287+illsilin@users.noreply.github.com>
This commit is contained in:
Cong Ma
2025-07-24 17:06:32 -06:00
committed by GitHub
parent 9c04a55626
commit 2addf05b91
2 changed files with 3 additions and 1 deletions

View File

@@ -25,7 +25,7 @@ class ArgumentsNotSupportedException : public std::logic_error
template <typename PrecType, ck_tile::index_t M_Warp_Tile>
constexpr ck_tile::index_t get_k_warp_tile()
{
#if defined(__gfx950__)
#if defined(CK_GFX950_SUPPORT)
constexpr bool is_8bit_float =
std::is_same_v<PrecType, ck_tile::fp8_t> || std::is_same_v<PrecType, ck_tile::bf8_t>;
if constexpr(M_Warp_Tile == 32)