v4.4.1 update (#3079)
This commit is contained in:
@@ -212,7 +212,8 @@ struct CollectiveMma<
|
||||
|
||||
static_assert(cute::is_same_v<ElementAccumulator, ElementBlockScale>,
|
||||
"ElementAccumulator and ElementBlockScale should be same datatype");
|
||||
using NumSplitsM = cute::C<get<0>(TileShape_{}) / 128>;
|
||||
// For TileShapeM < 128, NumSplitsM should be 1
|
||||
using NumSplitsM = cute::conditional_t<get<0>(TileShape_{}) < _128{}, _1, cute::C<get<0>(TileShape_{}) / 128>>;
|
||||
static_assert(NumSplitsM{} == 1 || NumSplitsM{} == 2);
|
||||
|
||||
struct SharedStorage {
|
||||
|
||||
@@ -36,7 +36,7 @@
|
||||
|
||||
#define CUTLASS_MAJOR 4
|
||||
#define CUTLASS_MINOR 4
|
||||
#define CUTLASS_PATCH 0
|
||||
#define CUTLASS_PATCH 1
|
||||
|
||||
#ifdef CUTLASS_VERSIONS_GENERATED
|
||||
#include "cutlass/version_extended.h"
|
||||
|
||||
Reference in New Issue
Block a user