mirror of
https://github.com/NVIDIA/TensorRT-LLM.git
synced 2026-01-13 22:18:36 +08:00
[None] [chore] Update to cutlass 4.3 (#8637)
Signed-off-by: Kaiyu Xie <26294424+kaiyux@users.noreply.github.com>
This commit is contained in:
parent
2f8bd6fb36
commit
85b4c92d60
2
3rdparty/CMakeLists.txt
vendored
2
3rdparty/CMakeLists.txt
vendored
@ -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)
|
||||
|
||||
@ -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,
|
||||
|
||||
Loading…
Reference in New Issue
Block a user