From 1b9b8084bca5122ea2690ab5fbe10ee3978f2bf8 Mon Sep 17 00:00:00 2001 From: Haocong WANG Date: Tue, 2 Sep 2025 11:18:53 +0800 Subject: [PATCH] Fix naming issue (#2762) [ROCm/composable_kernel commit: 33418b201f53259ebc192441eedf1098056ba6a7] --- include/ck_tile/ops/fmha/kernel/fmha_fwd_kernel.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/ck_tile/ops/fmha/kernel/fmha_fwd_kernel.hpp b/include/ck_tile/ops/fmha/kernel/fmha_fwd_kernel.hpp index ddc5c5447f..9d848dfd7a 100644 --- a/include/ck_tile/ops/fmha/kernel/fmha_fwd_kernel.hpp +++ b/include/ck_tile/ops/fmha/kernel/fmha_fwd_kernel.hpp @@ -65,9 +65,9 @@ struct FmhaFwdKernel static constexpr bool kUseTrLoad = FmhaPipeline::Problem::kUseTrLoad; #if defined(__gfx950__) - static constexpr bool kIsAvialable = true; + static constexpr bool kIsAvailable = true; #else - static constexpr bool kIsAvialable = !kUseTrLoad; + static constexpr bool kIsAvailable = !kUseTrLoad; #endif static constexpr std::string_view kPipelineName = FmhaPipeline::name; @@ -1046,7 +1046,7 @@ struct FmhaFwdKernel CK_TILE_DEVICE void operator()(Kargs kargs) const { - if constexpr(kIsAvialable) + if constexpr(kIsAvailable) run_(std::move(kargs)); }