From bd32cc0de0dc8d31051a4e32f896aafe7765f027 Mon Sep 17 00:00:00 2001 From: Qianfeng Zhang Date: Fri, 19 Sep 2025 07:17:39 +0000 Subject: [PATCH] Remove useless constant statement in the kernel --- example/ck_tile/18_hstu_attention/hstu_attention_fwd_kernel.hpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/example/ck_tile/18_hstu_attention/hstu_attention_fwd_kernel.hpp b/example/ck_tile/18_hstu_attention/hstu_attention_fwd_kernel.hpp index 0cc9bd9a52..c601f8fb80 100644 --- a/example/ck_tile/18_hstu_attention/hstu_attention_fwd_kernel.hpp +++ b/example/ck_tile/18_hstu_attention/hstu_attention_fwd_kernel.hpp @@ -34,8 +34,6 @@ struct HstuAttentionFwdKernel static constexpr ck_tile::index_t kBlockSize = HstuAttentionPipeline::kBlockSize; static constexpr ck_tile::index_t kBlockPerCu = HstuAttentionPipeline::kBlockPerCu; static_assert(kBlockPerCu > 0); - static constexpr ck_tile::index_t kBlockPerCuInput = - HstuAttentionPipeline::Problem::kBlockPerCu; using QKVDataType = ck_tile::remove_cvref_t; using BiasDataType = ck_tile::remove_cvref_t;