Skip to content

Commit

Permalink
add numpy
Browse files Browse the repository at this point in the history
  • Loading branch information
jorendumoulin committed Nov 22, 2023
1 parent 5feba1d commit 530fbdc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
6 changes: 6 additions & 0 deletions container/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,12 @@ deb-src http://apt.llvm.org/bionic/ llvm-toolchain-bionic-16 main\n" >> /etc/apt
# add python3.11 to path in bashrc
RUN echo "export PATH=/opt/python3.11/bin:$PATH" >> ~/.bashrc

# install python requirements
RUN export PATH=/opt/python3.11/bin:$PATH \
&& git clone https://github.com/kuleuven-micas/snax-mlir.git \
&& cd /snax-mlir \
&& pip3 install -r requirements.txt

# install latest xdsl and test dependencies
RUN export PATH=/opt/python3.11/bin:$PATH \
&& pip3 install git+https://github.com/xdslproject/xdsl.git@4c04de0a16df7c3b29f81aa66a7a2603d6b80f1e\
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
pre-commit
filecheck
lit
numpy

0 comments on commit 530fbdc

Please sign in to comment.