Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
dynamo
Commits
5c48130d
Unverified
Commit
5c48130d
authored
Mar 14, 2026
by
Tanmay Verma
Committed by
GitHub
Mar 14, 2026
Browse files
fix: remove cutlass-dsl stub that crashes TRT-LLM on CUDA 13.1 (#7372)
parent
bba70a41
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
container/templates/trtllm_runtime.Dockerfile
container/templates/trtllm_runtime.Dockerfile
+5
-1
No files found.
container/templates/trtllm_runtime.Dockerfile
View file @
5c48130d
...
@@ -280,7 +280,11 @@ RUN --mount=type=bind,source=./container/deps/requirements.common.txt,target=/tm
...
@@ -280,7 +280,11 @@ RUN --mount=type=bind,source=./container/deps/requirements.common.txt,target=/tm
--requirement
/tmp/requirements.common.txt
\
--requirement
/tmp/requirements.common.txt
\
--requirement
/tmp/requirements.planner.txt
\
--requirement
/tmp/requirements.planner.txt
\
--requirement
/tmp/requirements.benchmark.txt
\
--requirement
/tmp/requirements.benchmark.txt
\
cupy-cuda13x
cupy-cuda13x
&&
\
# nvidia-cutlass-dsl-libs-base==4.4.1 (transitive dep) ships a stub cute/experimental/__init__.py
# that unconditionally raises NotImplementedError, crashing TRT-LLM on import. cutlass-dsl==4.3.4
# (pinned by TRT-LLM) works without cute/experimental/. Remove the stub to fix the NotImplementedError.
rm -rf ${VIRTUAL_ENV}/lib/python${PYTHON_VERSION}/site-packages/nvidia_cutlass_dsl/python_packages/cutlass/cute/experimental/
# Copy tests, deploy and components for CI with correct ownership
# Copy tests, deploy and components for CI with correct ownership
# Pattern: COPY --chmod=775 <path>; chmod g+w <path> done later as root because COPY --chmod only affects <path>/*, not <path>
# Pattern: COPY --chmod=775 <path>; chmod g+w <path> done later as root because COPY --chmod only affects <path>/*, not <path>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment