Skip to content

Commit 33418b2

Browse files
authored
Fix naming issue (ROCm#2762)
1 parent d876e87 commit 33418b2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

include/ck_tile/ops/fmha/kernel/fmha_fwd_kernel.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ struct FmhaFwdKernel
6565

6666
static constexpr bool kUseTrLoad = FmhaPipeline::Problem::kUseTrLoad;
6767
#if defined(__gfx950__)
68-
static constexpr bool kIsAvialable = true;
68+
static constexpr bool kIsAvailable = true;
6969
#else
70-
static constexpr bool kIsAvialable = !kUseTrLoad;
70+
static constexpr bool kIsAvailable = !kUseTrLoad;
7171
#endif
7272
static constexpr std::string_view kPipelineName = FmhaPipeline::name;
7373

@@ -1046,7 +1046,7 @@ struct FmhaFwdKernel
10461046

10471047
CK_TILE_DEVICE void operator()(Kargs kargs) const
10481048
{
1049-
if constexpr(kIsAvialable)
1049+
if constexpr(kIsAvailable)
10501050
run_(std::move(kargs));
10511051
}
10521052

0 commit comments

Comments
 (0)