Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dockerfile: Update rccl version and fix issue in rocm5.1.1 dockerfile #354

Merged
merged 6 commits into from
May 27, 2022
Merged
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 5 additions & 4 deletions dockerfile/rocm5.1.1-pytorch1.10.0.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -110,13 +110,14 @@ RUN cd /tmp && \
cd /tmp && \
rm -rf mlc

# Install rccl with commitid 700b473
# Install rccl with commitid 6707a27
ARG NUM_MAKE_RCCL=2
RUN cd /tmp && \
git clone https://github.com/ROCmSoftwarePlatform/rccl.git && \
cd rccl && git checkout 700b473 && \
cd rccl && git checkout 6707a27 && \
mkdir build && cd build && \
CXX=/opt/rocm/bin/hipcc cmake -DCMAKE_INSTALL_PREFIX=/opt/rocm/rccl .. && \
make -j ${NUM_MAKE_JOBS} && make install && \
CXX=/opt/rocm/bin/hipcc cmake -DCMAKE_INSTALL_PREFIX=/usr/local .. && \
make -j ${NUM_MAKE_RCCL} && make install && \
yukirora marked this conversation as resolved.
Show resolved Hide resolved
cd /tmp && \
rm -rf rccl

Expand Down