Set omp_stacksize in testsuite to 100M as first guess

This commit is contained in:
Tuomas Koskela 2023-09-21 12:28:29 +01:00
parent 75273fd1c7
commit d26859d3bf
2 changed files with 2 additions and 0 deletions

View File

@ -15,6 +15,7 @@ jobs:
F77: mpif77
OMP_NUM_THREADS: ${{matrix.threads}}
OPENBLAS_NUM_THREADS: 1
OMP_STACKSIZE: 100M
strategy:
fail-fast: false
matrix:

View File

@ -11,6 +11,7 @@
NP=${1:-1}
NT=${2:-1}
export OMP_NUM_THREADS=$NT
export OMP_STACKSIZE=100M
echo "Running tests on $NP processes and $NT threads"
(cd ../src; make -j $NP)