"...git@developer.sourcefind.cn:2222/OpenDAS/colossalai.git" did not exist on "b5f9e37c709656b286940f1b5e05abddfa257e3d"
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