"docs/vscode:/vscode.git/clone" did not exist on "da1f7cc12a12ea4a744d26122e9a13ea4b3f4c7b"
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 \ ...@@ -695,7 +695,9 @@ RUN if [ ${ARCH_ALT} = "x86_64" ]; then \
# System utilities and dependencies # System utilities and dependencies
curl && \ curl && \
apt-get clean && \ 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 # Switch to dynamo user
USER dynamo 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