Skip to content

Commit d6ab4ca

Browse files
committed
Add debug info
1 parent 7b7ab5d commit d6ab4ca

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

singularity/Singularity.intel_mkl

+6
Original file line numberDiff line numberDiff line change
@@ -219,6 +219,9 @@ EOF
219219
rm numpy-1.26.4.tar.gz
220220
cd numpy-1.26.4/
221221
pip install . -Csetup-args=-Dblas-order=mkl-dynamic-lp64-iomp -Csetup-args=-Dlapack-order=mkl-dynamic-lp64-iomp
222+
if [ $DEBUG = true ]; then
223+
python -c 'import numpy; numpy.show_config()'
224+
fi
222225
cd ..
223226
rm -rf numpy-1.26.4/
224227

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

0 commit comments

Comments
 (0)