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
723676b4
Unverified
Commit
723676b4
authored
Mar 05, 2026
by
Richard Huo
Committed by
GitHub
Mar 05, 2026
Browse files
fix: remove the aws-ofi-nccl plugin from linker cache in regular trtllm runtime image (#6944)
parent
e6ddf0ea
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
container/templates/trtllm_runtime.Dockerfile
container/templates/trtllm_runtime.Dockerfile
+7
-0
No files found.
container/templates/trtllm_runtime.Dockerfile
View file @
723676b4
...
...
@@ -143,6 +143,13 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
# Create libnccl.so symlink pointing to libnccl.so.2. TensorRT-LLM requires explicit libnccl.so
ln -sf /usr/lib/${ARCH_ALT}-linux-gnu/libnccl.so.2 /usr/lib/${ARCH_ALT}-linux-gnu/libnccl.so
# nvcr.io/nvidia/cuda-dl-base includes the AWS OFI NCCL plugin, which can crash TRTLLM.
# Disable it by renaming aws-ofi-nccl.conf and refreshing the dynamic linker cache.
RUN if
[
-f
/etc/ld.so.conf.d/aws-ofi-nccl.conf
]
;
then
\
mv
/etc/ld.so.conf.d/aws-ofi-nccl.conf /etc/ld.so.conf.d/aws-ofi-nccl.conf.disabled
;
\
fi
&&
\
ldconfig
{% if context.trtllm.enable_media_ffmpeg == "true" %}
# Copy ffmpeg libraries from wheel_builder (requires root, runs before USER dynamo)
RUN
--mount
=
type
=
bind
,from
=
wheel_builder,source
=
/usr/local/,target
=
/tmp/usr/local/
\
...
...
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