Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions docker/Dockerfile.cu130
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@ ENV TRITON_PTXAS_PATH="/usr/local/cuda/bin/ptxas"
# Install torch and other python packages
COPY requirements.txt /install/requirements.txt
COPY docker/install/install_python_packages.sh /install/install_python_packages.sh
# use nightly/cu130 temporarily and change to cu130 when torch releases stable version
RUN bash /install/install_python_packages.sh nightly/cu130
RUN bash /install/install_python_packages.sh cu130

# Install mpi4py in the conda environment
RUN conda install -n py312 -y mpi4py
3 changes: 1 addition & 2 deletions docker/Dockerfile.cu130.dev
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,7 @@ ENV PATH="/home/$USERNAME/conda/envs/py312/bin:$PATH"
# Install torch and other python packages
COPY requirements.txt /install/requirements.txt
COPY docker/install/install_python_packages.sh /install/install_python_packages.sh
# use nightly/cu130 temporarily and change to cu130 when torch releases stable version
RUN bash /install/install_python_packages.sh nightly/cu130 && pip3 install pre-commit
RUN bash /install/install_python_packages.sh cu130 && pip3 install pre-commit

# Install mpi4py in the conda environment
RUN conda install -n py312 -y mpi4py
Expand Down