[misc] Upgrade cutedsl to 4.3.1 (#14857)

This commit is contained in:
Baizhou Zhang
2025-12-16 12:11:56 -08:00
committed by GitHub
parent 8ac350f335
commit 0261c4aff7
2 changed files with 1 additions and 4 deletions

View File

@@ -301,16 +301,13 @@ RUN --mount=type=cache,target=/root/.cache/pip \
# Patching packages for CUDA 12/13 compatibility
# TODO: Remove when torch version covers these packages
# TODO: Move cutlass-dsl to pyproject.toml after drivers on CI runners are updated
RUN --mount=type=cache,target=/root/.cache/pip if [ "${CUDA_VERSION%%.*}" = "12" ]; then \
python3 -m pip install nvidia-nccl-cu12==2.28.3 --force-reinstall --no-deps ; \
python3 -m pip install nvidia-cudnn-cu12==9.16.0.29 --force-reinstall --no-deps ; \
python3 -m pip install nvidia-cutlass-dsl==4.3.0 --force-reinstall --no-deps ; \
elif [ "${CUDA_VERSION%%.*}" = "13" ]; then \
python3 -m pip install nvidia-nccl-cu13==2.28.3 --force-reinstall --no-deps ; \
python3 -m pip install nvidia-cublas==13.1.0.3 --force-reinstall --no-deps ; \
python3 -m pip install nixl-cu13 ; \
python3 -m pip install nvidia-cutlass-dsl==4.3.1 --force-reinstall --no-deps ; \
fi
# Install development tools

View File

@@ -38,7 +38,7 @@ dependencies = [
"msgspec",
"ninja",
"numpy",
"nvidia-cutlass-dsl==4.2.1",
"nvidia-cutlass-dsl==4.3.1",
"nvidia-ml-py",
"openai-harmony==0.0.4",
"openai==2.6.1",