Skip to content

Commit

Permalink
Add debug info
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexKurek committed Jan 30, 2025
1 parent 7b7ab5d commit d6ab4ca
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions singularity/Singularity.intel_mkl
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,9 @@ EOF
rm numpy-1.26.4.tar.gz
cd numpy-1.26.4/
pip install . -Csetup-args=-Dblas-order=mkl-dynamic-lp64-iomp -Csetup-args=-Dlapack-order=mkl-dynamic-lp64-iomp
if [ $DEBUG = true ]; then
python -c 'import numpy; numpy.show_config()'
fi
cd ..
rm -rf numpy-1.26.4/

Expand All @@ -227,6 +230,9 @@ EOF
rm scipy-1.15.1.tar.gz
cd scipy-1.15.1/
pip install . -Csetup-args=-Dblas=mkl-dynamic-lp64-iomp -Csetup-args=-Dlapack=mkl-dynamic-lp64-iomp
if [ $DEBUG = true ]; then
python -c 'import numpy; numpy.show_config()'
fi
cd ..
rm -rf scipy-1.15.1/

Expand Down

0 comments on commit d6ab4ca

Please sign in to comment.