Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions csrc/kerutils/include/kerutils/device/sm100/gemm.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ struct SM100_MMA_F16BF16_WS_TS_NOELECT
{
static_assert(M == 32 || M == 64 || M == 128, "SM100_MMA_F16BF16_WS_TS_NOELECT M-mode size should be 32, 64 or 128 for 1 CTA cluster MMA.");
static_assert(N == 64 || N == 128 || N == 256,
"SM100_MMA_F16BF16_WS_TS_NOELECT N-mode size should be 32, 64 or 128");
"SM100_MMA_F16BF16_WS_TS_NOELECT N-mode size should be 64, 128 or 256");

using DRegisters = void;
using ARegisters = uint64_t[1];
Expand Down Expand Up @@ -114,7 +114,7 @@ struct SM100_MMA_F16BF16_WS_SS_NOELECT
{
static_assert(M == 32 || M == 64 || M == 128, "SM100_MMA_F16BF16_WS_SS_NOELECT M-mode size should be 32, 64 or 128 for 1 CTA cluster MMA.");
static_assert(N == 64 || N == 128 || N == 256,
"SM100_MMA_F16BF16_WS_SS_NOELECT N-mode size should be 32, 64 or 128");
"SM100_MMA_F16BF16_WS_SS_NOELECT N-mode size should be 64, 128 or 256");

using DRegisters = void;
using ARegisters = uint64_t[1];
Expand Down