Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion 3rdparty/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ FetchContent_Declare(
FetchContent_Declare(
cutlass
GIT_REPOSITORY https://github.com/NVIDIA/cutlass
GIT_TAG v4.2.1 # f3fde58372d33e9a5650ba7b80fc48b3b49d40c8
GIT_TAG v4.3.0 # e67e63c331d6e4b729047c95cf6b92c8454cba89
GIT_SHALLOW TRUE
SOURCE_SUBDIR
dont-add-this-project-with-add-subdirectory)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -177,13 +177,13 @@ public:
static constexpr int PipelineStages = IsMixedInput
? (IsArrayOfPointersGemm
? detail::compute_stage_count_or_override_single_affine_transformed_input<Sm90ReducedSmemCapacityBytes,
RealElementA, RealElementB, ElementScale, ElementZero, TileShape_MNK, StageCountType::bytes,
SmemAlignment>(StageCountType{})
RealElementA, RealElementB, ElementScale, ElementZero, TileShape_MNK, SmemAlignment,
StageCountType::bytes>(StageCountType{})
: detail::compute_stage_count_or_override_single_affine_transformed_input<
detail::sm90_smem_capacity_bytes, RealElementA, RealElementB, ElementScale, ElementZero,
TileShape_MNK, StageCountType::bytes, SmemAlignment>(StageCountType{}))
TileShape_MNK, SmemAlignment, StageCountType::bytes>(StageCountType{}))
: detail::compute_stage_count_or_override<detail::sm90_smem_capacity_bytes, ElementAMma, ElementBMma,
TileShape_MNK, StageCountType::bytes, SmemAlignment>(StageCountType{});
TileShape_MNK, SmemAlignment, StageCountType::bytes>(StageCountType{});

using DispatchPolicy = cute::conditional_t<IsMixedInput,
cute::conditional_t<IsArrayOfPointersGemm,
Expand Down
Loading