Compare commits

..

6 Commits
v1.10 ... v1.6

Author SHA1 Message Date
mingzailao 6b68a607ae sd 2023-11-19 15:28:06 +08:00
mingzailao 53cdf75b23 no message 2023-11-19 15:15:07 +08:00
mingzailao 9ef92c2b2a no message 2023-11-19 14:22:44 +08:00
mingzailao eff9035e29 no message 2023-05-25 13:59:23 +08:00
mingzailao 4f66e712e7 sdas 2023-05-04 16:47:07 +08:00
mingzailao 7a0e70717a sda 2023-03-28 15:52:06 +08:00
2 changed files with 12 additions and 3 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
torch-whl/

View File

@ -1,7 +1,15 @@
FROM mingzailao/cuda:11.3.1-cudnn8-devel-ubuntu20.04
RUN pip3 install torch==1.10.1+cu113 --extra-index-url https://download.pytorch.org/whl/cu113
FROM mingzailao/cuda:10.1-cudnn7-devel-ubuntu18.04
RUN rm /usr/bin/python3
RUN ln -s /usr/bin/python3.8 /usr/bin/python3
RUN ln -s /usr/bin/python3 /usr/bin/python
RUN apt-get install build-essential libatlas-base-dev gfortran -y
RUN pip3 install Cython
RUN pip3 install --upgrade pip
COPY ./torch-whl/torch-1.6.0+cu101-cp38-cp38-linux_x86_64.whl /torch-whl/torch-1.6.0+cu101-cp38-cp38-linux_x86_64.whl
RUN pip3 install ./torch-whl/torch-1.6.0+cu101-cp38-cp38-linux_x86_64.whl