Skip to content

Commit

Permalink
Install libnccl-dev in base image since JAX no longer vendors NCCL (#289
Browse files Browse the repository at this point in the history
)
  • Loading branch information
yhtang authored Oct 7, 2023
1 parent ed713a9 commit 003240c
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/container/Dockerfile.base
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,15 @@ RUN pip install --upgrade --no-cache-dir pip
ADD install-cudnn.sh /usr/local/bin
RUN install-cudnn.sh

###############################################################################
## Install NCCL
###############################################################################

RUN apt-get update && \
apt-get install -y libnccl-dev && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

###############################################################################
## RoCE and InfiniteBand support
###############################################################################
Expand Down

0 comments on commit 003240c

Please sign in to comment.