Skip to content

Commit ecac2a7

Browse files
committed
Intermediate changes
commit_hash:420430bd2955a92b920f1a4490b1f40b822c09d3
1 parent 4890e0b commit ecac2a7

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

contrib/libs/cxxsupp/openmp/kmp.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1100,7 +1100,7 @@ extern void __kmp_init_target_mem();
11001100
#define KMP_DEFAULT_BLOCKTIME (__kmp_is_hybrid_cpu() ? (0) : (200))
11011101

11021102
#if KMP_USE_MONITOR
1103-
#define KMP_DEFAULT_MONITOR_STKSIZE ((size_t)(64 * 1024))
1103+
#define KMP_DEFAULT_MONITOR_STKSIZE ((size_t)(1024 * 1024))
11041104
#define KMP_MIN_MONITOR_WAKEUPS (1) // min times monitor wakes up per second
11051105
#define KMP_MAX_MONITOR_WAKEUPS (1000) // max times monitor can wake up per sec
11061106

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
--- contrib/libs/cxxsupp/openmp/kmp.h (index)
2+
+++ contrib/libs/cxxsupp/openmp/kmp.h (working tree)
3+
@@ -1100,7 +1100,7 @@ extern void __kmp_init_target_mem();
4+
#define KMP_DEFAULT_BLOCKTIME (__kmp_is_hybrid_cpu() ? (0) : (200))
5+
6+
#if KMP_USE_MONITOR
7+
-#define KMP_DEFAULT_MONITOR_STKSIZE ((size_t)(64 * 1024))
8+
+#define KMP_DEFAULT_MONITOR_STKSIZE ((size_t)(1024 * 1024))
9+
#define KMP_MIN_MONITOR_WAKEUPS (1) // min times monitor wakes up per second
10+
#define KMP_MAX_MONITOR_WAKEUPS (1000) // max times monitor can wake up per sec
11+

0 commit comments

Comments
 (0)