We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d876e87 commit 33418b2Copy full SHA for 33418b2
include/ck_tile/ops/fmha/kernel/fmha_fwd_kernel.hpp
@@ -65,9 +65,9 @@ struct FmhaFwdKernel
65
66
static constexpr bool kUseTrLoad = FmhaPipeline::Problem::kUseTrLoad;
67
#if defined(__gfx950__)
68
- static constexpr bool kIsAvialable = true;
+ static constexpr bool kIsAvailable = true;
69
#else
70
- static constexpr bool kIsAvialable = !kUseTrLoad;
+ static constexpr bool kIsAvailable = !kUseTrLoad;
71
#endif
72
static constexpr std::string_view kPipelineName = FmhaPipeline::name;
73
@@ -1046,7 +1046,7 @@ struct FmhaFwdKernel
1046
1047
CK_TILE_DEVICE void operator()(Kargs kargs) const
1048
{
1049
- if constexpr(kIsAvialable)
+ if constexpr(kIsAvailable)
1050
run_(std::move(kargs));
1051
}
1052
0 commit comments