[Bf-blender-cvs] [da4854a8b8b] fracture_modifier: missed in last commit: rise BM_OMPLIMIT to avoid overheads with small datasets

Jens Verwiebe noreply at git.blender.org
Wed May 2 20:46:10 CEST 2018


Commit: da4854a8b8b919816aaf2290acd807ad7abd402b
Author: Jens Verwiebe
Date:   Wed May 2 20:45:37 2018 +0200
Branches: fracture_modifier
https://developer.blender.org/rBda4854a8b8b919816aaf2290acd807ad7abd402b

missed in last commit: rise BM_OMPLIMIT to avoid overheads with small datasets

===================================================================

M	source/blender/bmesh/bmesh_class.h

===================================================================

diff --git a/source/blender/bmesh/bmesh_class.h b/source/blender/bmesh/bmesh_class.h
index bec2c7a1f45..14c75cf2fbb 100644
--- a/source/blender/bmesh/bmesh_class.h
+++ b/source/blender/bmesh/bmesh_class.h
@@ -421,7 +421,7 @@ typedef bool (*BMLoopFilterFunc)(const BMLoop *, void *user_data);
 #ifdef DEBUG
 #  define BM_OMP_LIMIT 0
 #else
-#  define BM_OMP_LIMIT 10000
+#  define BM_OMP_LIMIT 1000000
 #endif
 
 #endif /* __BMESH_CLASS_H__ */



More information about the Bf-blender-cvs mailing list