Skip to content

Commit

Permalink
fixing an issue in pytorch docker images with cuda failure
Browse files Browse the repository at this point in the history
  • Loading branch information
KalanaRatnayake committed Aug 8, 2024
1 parent 12cafd8 commit b0e6854
Showing 1 changed file with 24 additions and 7 deletions.
31 changes: 24 additions & 7 deletions pytorch-images/r3630.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,23 +13,40 @@ WORKDIR /
######################################################################################

RUN apt-get update -y
RUN apt-get install -y --no-install-recommends python3-pip
RUN apt-get install -y --no-install-recommends python3-pip \
libopenblas-dev

RUN python3 -m pip install --no-cache-dir numpy

#####################################################################################
## Install PyTorch 2.4
## Install PyTorch 2.3
#####################################################################################

RUN wget https://developer.download.nvidia.cn/compute/redist/jp/v60/pytorch/torch-2.4.0a0+3bcc3cddb5.nv24.07.16234504-cp310-cp310-linux_aarch64.whl
RUN wget -O torch-2.3.0-cp310-cp310-linux_aarch64.whl https://nvidia.box.com/shared/static/mp164asf3sceb570wvjsrezk1p4ftj8t.whl

RUN python3 -m pip install --no-cache-dir torch-2.4.0a0+3bcc3cddb5.nv24.07.16234504-cp310-cp310-linux_aarch64.whl
RUN python3 -m pip install --no-cache-dir torch-2.3.0-cp310-cp310-linux_aarch64.whl

RUN rm torch-2.4.0a0+3bcc3cddb5.nv24.07.16234504-cp310-cp310-linux_aarch64.whl
RUN rm torch-2.3.0-cp310-cp310-linux_aarch64.whl

#####################################################################################
## Install PyTorch
## Install Torch Vision 0.18
#####################################################################################

RUN python3 -m pip install --no-cache-dir torchvision torchaudio
RUN wget -O torchvision-0.18.0a0+6043bc2-cp310-cp310-linux_aarch64.whl https://nvidia.box.com/shared/static/xpr06qe6ql3l6rj22cu3c45tz1wzi36p.whl

RUN python3 -m pip install --no-cache-dir torchvision-0.18.0a0+6043bc2-cp310-cp310-linux_aarch64.whl

RUN rm torchvision-0.18.0a0+6043bc2-cp310-cp310-linux_aarch64.whl

#####################################################################################
## Install Torch Audio 2.3
#####################################################################################

RUN wget -O torchaudio-2.3.0+952ea74-cp310-cp310-linux_aarch64.whl https://nvidia.box.com/shared/static/9agsjfee0my4sxckdpuk9x9gt8agvjje.whl

RUN python3 -m pip install --no-cache-dir torchaudio-2.3.0+952ea74-cp310-cp310-linux_aarch64.whl

RUN rm torchaudio-2.3.0+952ea74-cp310-cp310-linux_aarch64.whl

#####################################################################################
##
Expand Down

0 comments on commit b0e6854

Please sign in to comment.