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

[Docker] Update DGL version to 2.3 and torch to 2.3 #883

Merged
merged 8 commits into from
Jul 10, 2024
Merged
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
7 changes: 4 additions & 3 deletions docker/local/Dockerfile.local
Original file line number Diff line number Diff line change
Expand Up @@ -27,23 +27,24 @@ RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2
RUN python3.9 -m venv /opt/gs-venv
ENV PATH="/opt/gs-venv/bin:$PATH"

# Please downgrade the numpy version when using torch <= 2.2
# Install GraphStorm dependencies
RUN pip install \
boto3==1.34.89 \
botocore==1.34.89 \
h5py==3.11.0 \
networkx==3.1 \
psutil==5.9.8 \
pyarrow==14.0.0 \
pyarrow==16.0.1 \
pydantic==2.7.0 \
scikit-learn==1.4.2 \
scipy==1.13.0 \
&& rm -rf /root/.cache

ARG DGL_VERSION=2.2.1
ARG DGL_VERSION=2.3.0
ARG DGL_CUDA_VERSION=121
ARG OGB_VERSION=1.3.6
ARG TORCH_VERSION=2.1.2
ARG TORCH_VERSION=2.3
ARG TRANSFORMERS_VERSION=4.28.1

FROM base as base-cpu
Expand Down
Loading