Skip to content

Commit

Permalink
dockerfile reordering
Browse files Browse the repository at this point in the history
  • Loading branch information
Berke-Ates committed Nov 29, 2022
1 parent 8e9429a commit 37b2f02
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
################################################################################
Expand All @@ -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
################################################################################
Expand Down

0 comments on commit 37b2f02

Please sign in to comment.