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 2e8cfc13827fbc7e3f2475bbc83694c2e1514107. --------- Signed-off-by: Javier <25750030+SystemPanic@users.noreply.github.com>
This commit is contained in:
@@ -468,8 +468,7 @@ public:
|
||||
return grid_shape;
|
||||
}
|
||||
|
||||
static constexpr
|
||||
dim3
|
||||
static dim3
|
||||
get_block_shape() {
|
||||
return dim3(MaxThreadsPerBlock, 1, 1);
|
||||
}
|
||||
|
||||
@@ -396,8 +396,7 @@ public:
|
||||
params.hw_info);
|
||||
}
|
||||
|
||||
static constexpr
|
||||
dim3
|
||||
static dim3
|
||||
get_block_shape() {
|
||||
return dim3(MaxThreadsPerBlock, 1, 1);
|
||||
}
|
||||
|
||||
@@ -390,8 +390,7 @@ public:
|
||||
params.hw_info);
|
||||
}
|
||||
|
||||
static constexpr
|
||||
dim3
|
||||
static dim3
|
||||
get_block_shape() {
|
||||
return dim3(MaxThreadsPerBlock, 1, 1);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user