From 4e005f245780d97a05d75c9ed1bc5e0663a082ee Mon Sep 17 00:00:00 2001 From: rocking Date: Mon, 8 Apr 2024 10:11:51 +0000 Subject: [PATCH] Avoid warning --- .../ck_tile/ops/fmha/kernel/fmha_fwd_kernel.hpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 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 9f54008457..5e25479e25 100644 --- a/include/ck_tile/ops/fmha/kernel/fmha_fwd_kernel.hpp +++ b/include/ck_tile/ops/fmha/kernel/fmha_fwd_kernel.hpp @@ -38,14 +38,14 @@ struct FmhaFwdKernel using VLayout = ck_tile::remove_cvref_t; using ElementFunctions = typename FmhaPipeline::Problem::ElementFunctions; - // using QElementFunction = ElementFunctions::QElementFunction; - // using KElementFunction = ElementFunctions::KElementFunction; - // using VElementFunction = ElementFunctions::VElementFunction; - // using BiasElementFunction = ElementFunctions::BiasElementFunction; - // using LSEElementFunction = ElementFunctions::LSEElementFunction; - // using SAccElementFunction = ElementFunctions::SAccElementFunction; - using PComputeElementFunction = ElementFunctions::PComputeElementFunction; - using OAccElementFunction = ElementFunctions::OAccElementFunction; + // using QElementFunction = typename ElementFunctions::QElementFunction; + // using KElementFunction = typename ElementFunctions::KElementFunction; + // using VElementFunction = typename ElementFunctions::VElementFunction; + // using BiasElementFunction = typename ElementFunctions::BiasElementFunction; + // using LSEElementFunction = typename ElementFunctions::LSEElementFunction; + // using SAccElementFunction = typename ElementFunctions::SAccElementFunction; + using PComputeElementFunction = typename ElementFunctions::PComputeElementFunction; + using OAccElementFunction = typename ElementFunctions::OAccElementFunction; static constexpr bool kIsGroupMode = FmhaPipeline::kIsGroupMode; static constexpr bool kPadSeqLenQ = FmhaPipeline::kPadSeqLenQ;