Unverified Commit 22e36dec authored by Tanmay Verma's avatar Tanmay Verma Committed by GitHub
Browse files

fix: Add symlink for NCCL in trtllm container (#5257)

parent 6f9619a2
......@@ -695,7 +695,9 @@ RUN if [ ${ARCH_ALT} = "x86_64" ]; then \
# System utilities and dependencies
curl && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
rm -rf /var/lib/apt/lists/* && \
# 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
# Switch to dynamo user
USER dynamo
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment