We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc7e961 commit 58315d5Copy full SHA for 58315d5
src/solidmodels/render.jl
@@ -924,7 +924,8 @@ function render!(
924
925
# With the setting below, Gmsh will look for OMP_NUM_THREADS environment variables;
926
# this needs to be >1 for HXT algorithm to use parallelism.
927
- set_gmsh_option("General.NumThreads", gmsh_options, 0)
+ # Default to no threads, as there appear to be race conditions within gmsh.
928
+ set_gmsh_option("General.NumThreads", gmsh_options, 1)
929
930
# Always save meshes in binary for faster disk I/O
931
set_gmsh_option("Mesh.Binary", gmsh_options, 1)
0 commit comments