File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 51
51
# On OSX, we can get a runtime error due to multiple OpenMP libraries loaded
52
52
# simultaneously. This can happen for instance when calling BLAS inside a
53
53
# prange. Setting the following environment variable allows multiple OpenMP
54
- # libraries. It should not degrade performances since we manually take care of
55
- # potential over-subcription performance issues, in sections of the code where
56
- # nested OpenMP loops can happen, by dynamically reconfiguring the inner OpenMP
57
- # runtime to temporarily disable it while under the scope of the outer OpenMP
58
- # parallel section.
54
+ # libraries to be loaded . It should not degrade performances since we manually
55
+ # take care of potential over-subcription performance issues, in sections of
56
+ # the code where nested OpenMP loops can happen, by dynamically reconfiguring
57
+ # the inner OpenMP runtime to temporarily disable it while under the scope of
58
+ # the outer OpenMP parallel section.
59
59
os .environ .setdefault ("KMP_DUPLICATE_LIB_OK" , "True" )
60
60
61
61
You can’t perform that action at this time.
0 commit comments