fix tile_example_gemm_basic example compiling error

This commit is contained in:
joye
2025-04-21 18:21:15 +08:00
parent c318ec0778
commit 3f21c16f0b
2 changed files with 4 additions and 2 deletions

View File

@@ -30,7 +30,8 @@ struct GemmPipelineProblemBase
using BLayout = remove_cvref_t<typename Traits::BLayout>;
using CLayout = remove_cvref_t<typename Traits::CLayout>;
static constexpr bool TransposeC = Traits::TransposeC;
static constexpr bool TransposeC = Traits::TransposeC;
static constexpr bool UseStructuredSparsity = Traits::UseStructuredSparsity;
static constexpr index_t kBlockSize = BlockGemmShape::NumWarps * get_warp_size();

View File

@@ -26,7 +26,8 @@ struct TileGemmTraits
using BLayout = BLayout_;
using CLayout = CLayout_;
static constexpr bool TransposeC = false;
static constexpr bool TransposeC = false;
static constexpr bool UseStructuredSparsity = false;
};
template <bool kPadM_,