Fix sm100 gemm wrong static constexpr that breaks compilation on Windows (#2167)

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

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

* More Windows fixes

Signed-off-by: Javier <25750030+SystemPanic@users.noreply.github.com>

* Revert "More Windows fixes"

This reverts commit 2e8cfc1382.

---------

Signed-off-by: Javier <25750030+SystemPanic@users.noreply.github.com>
This commit is contained in:
Javier
2025-08-28 21:13:00 -05:00
committed by GitHub
parent 9ca7e877b2
commit 496654bf2c
3 changed files with 3 additions and 6 deletions

View File

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

View File

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

View File

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