diff --git a/Dockerfile b/Dockerfile index b7f4af5..84b7175 100644 --- a/Dockerfile +++ b/Dockerfile @@ -242,19 +242,6 @@ ENV PATH=$HOME/torch-mlir/build/bin:$PATH ENV PYTHONPATH=$HOME/torch-mlir/build/tools/torch-mlir/python_packages/torch_mlir:$PYTHONPATH ENV PYTHONPATH=$HOME/torch-mlir/build/../examples:$PYTHONPATH -################################################################################ -### Install dace -################################################################################ - -RUN git clone --depth 1 --branch cgo23 https://github.com/Berke-Ates/dace.git - -WORKDIR $HOME/dace -RUN git submodule update --init --recursive --depth 1 - -RUN pip install --editable . - -WORKDIR $HOME - ################################################################################ ### Install ICC ################################################################################ @@ -270,6 +257,19 @@ RUN apt update -y && apt install -y intel-hpckit RUN echo "source /opt/intel/oneapi/compiler/2022.2.1/env/vars.sh" >> $HOME/.bashrc +################################################################################ +### Install dace +################################################################################ + +RUN git clone --depth 1 --branch cgo23 https://github.com/Berke-Ates/dace.git + +WORKDIR $HOME/dace +RUN git submodule update --init --recursive --depth 1 + +RUN pip install --editable . + +WORKDIR $HOME + ################################################################################ ### Copy files over ################################################################################