Skip to content

Commit 0dbcfe9

Browse files
committed
Added modules required for performance benchmark
1 parent 323c7e8 commit 0dbcfe9

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

scripts/install_modules.sh

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,22 @@ popd >> /dev/null
1515
export NPY_NUM_BUILD_JOBS=$(nproc --ignore 1)
1616
echo "Numpy using ${NPY_NUM_BUILD_JOBS} cores"
1717
pushd ${PROJ_ROOT}/third-party/numpy >> /dev/null
18-
pip install .
18+
# pip install .
1919
popd >> /dev/null
2020

2121
# Pyfaasm
2222
pushd ${PROJ_ROOT}/third-party/pyfaasm >> /dev/null
2323
pip install .
2424
popd >> /dev/null
2525

26+
# Other modules (can be installed unmodified)
27+
pip install dulwich
28+
pip install Genshi
29+
pip install pyaes
30+
pip install pyperf
31+
pip install pyperformance
32+
pip install six
33+
34+
# Torch errors on a module import
35+
# pip install torch
36+

third-party/numpy

Submodule numpy updated from 4c1773f to 56b6cb7

0 commit comments

Comments
 (0)