-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile
23 lines (13 loc) · 831 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
FROM intel/oneapi:2022.3.0-devel-ubuntu20.04
RUN mkdir -p /workspace
RUN pip3 install torchvision==0.11.1 numpy==1.23.3 torchmetrics==0.9.3 --no-deps
WORKDIR /workspace
RUN wget http://mlpc.intel.com/downloads/gpu-new/validation/IPEX/weekly/PVC/ww38_master/torch-1.10.0a0+git3702f05-cp39-cp39-linux_x86_64.whl
RUN wget http://mlpc.intel.com/downloads/gpu-new/validation/IPEX/weekly/PVC/ww38_master/intel_extension_for_pytorch-1.10.100+945faac5-cp39-cp39-linux_x86_64.whl
RUN wget http://mlpc.intel.com/downloads/gpu-new/validation/IPEX/weekly/PVC/ww38_master/intel_optimization_for_horovod-0.22.1up3-cp39-cp39-linux_x86_64.whl
RUN pip3 install --force-reinstall *.whl
ENV OverrideDefaultFP64Settings=1
ENV IGC_EnableDPEmulation=1
WORKDIR /workspace
RUN git clone https://github.com/adelchaibi/MoD
WORKDIR /workspace/MoD