This commit is contained in:
Chenggang Zhao 2025-05-27 11:14:13 +08:00
parent 2c5ab83c6c
commit c4e31d121b

View File

@ -48,7 +48,8 @@ struct Scheduler {
} }
} }
__device__ __forceinline__ bool is_m_valid(const uint32_t m_offset, const uint32_t& m_block_idx) const { // ReSharper disable once CppNotAllPathsReturnValue
__device__ __forceinline__ bool is_m_valid(const uint32_t& m_offset, const uint32_t& m_block_idx) const {
if constexpr (kGemmType == GemmType::Normal) { if constexpr (kGemmType == GemmType::Normal) {
return true; return true;
} else if constexpr (kGemmType == GemmType::GroupedContiguous) { } else if constexpr (kGemmType == GemmType::GroupedContiguous) {