Fix a sm100 gemm wrong defined static constexpr that breaks compilation on Windows

This commit is contained in:
Javier
2025-03-13 02:44:19 -05:00
parent 06e560d98a
commit 768c13d4c8
2 changed files with 2 additions and 4 deletions

View File

@ -461,8 +461,7 @@ public:
return grid_shape;
}
static constexpr
dim3
static dim3
get_block_shape() {
return dim3(MaxThreadsPerBlock, 1, 1);
}

View File

@ -399,8 +399,7 @@ public:
params.hw_info);
}
static constexpr
dim3
static dim3
get_block_shape() {
return dim3(MaxThreadsPerBlock, 1, 1);
}