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/cutlass
4 changes: 4 additions & 0 deletions cpp/tensorrt_llm/kernels/cutlass_kernels/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ function(process_target target_name enable_hopper enable_blackwell)
if(${enable_hopper} AND "90" IN_LIST CMAKE_CUDA_ARCHITECTURES_ORIG)
# No kernels should be parsed, unless hopper is specified. This is a build
# time improvement
target_compile_options(${target_name}
PRIVATE "-DCUTLASS_ENABLE_GDC_FOR_SM90=1")
target_compile_definitions(${target_name} PUBLIC COMPILE_HOPPER_TMA_GEMMS)
target_compile_definitions(${target_name}
PUBLIC COMPILE_HOPPER_TMA_GROUPED_GEMMS)
Expand All @@ -77,6 +79,8 @@ function(process_target target_name enable_hopper enable_blackwell)
OR "121" IN_LIST CMAKE_CUDA_ARCHITECTURES_ORIG
))

target_compile_options(${target_name}
PRIVATE "-DCUTLASS_ENABLE_GDC_FOR_SM100=1")
# Both 100 and 103 support these kernels
if("100" IN_LIST CMAKE_CUDA_ARCHITECTURES_ORIG
OR "103" IN_LIST CMAKE_CUDA_ARCHITECTURES_ORIG)
Expand Down
2 changes: 1 addition & 1 deletion jenkins/L0_Test.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ BUILD_CORES_REQUEST = "8"
BUILD_CORES_LIMIT = "8"
BUILD_MEMORY_REQUEST = "48Gi"
BUILD_MEMORY_LIMIT = "64Gi"
BUILD_JOBS = "8"
BUILD_JOBS = "4"

SLURM_CORES_REQUEST = "1"
SLURM_CORES_LIMIT = "1"
Expand Down