Skip to content
Snippets Groups Projects
Commit 252011cb authored by Dominic Kempf's avatar Dominic Kempf
Browse files

Restrict OpenMP to 1 thread

Otherwise, OpenMP thinks it is allowed to take as
many threads as there are cores, which leads to a
quadratic catastrophe when running tests in parallel.
OpenMP is used by Debian's installation of Suitesparse.
parent d5806fe3
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,7 @@
variables:
GIT_SUBMODULE_STRATEGY: recursive
HYPERTHREADING: "false"
OMP_NUM_THREADS: 1
before_script:
- echo "Running make concurrently with ${DUNECI_PARALLEL} cores, where possibly"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment