Skip to content

Commit a8a4ed3

Browse files
committed
Crank the warmup up to 4096
1 parent 11add0f commit a8a4ed3

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

Include/internal/pycore_backoff.h

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -115,10 +115,9 @@ initial_jump_backoff_counter(void)
115115
/* Initial exit temperature.
116116
* Must be larger than ADAPTIVE_COOLDOWN_VALUE,
117117
* otherwise when a side exit warms up we may construct
118-
* a new trace before the Tier 1 code has properly re-specialized.
119-
* Backoff sequence 1024, 2048, 4096. */
120-
#define SIDE_EXIT_INITIAL_VALUE 1023
121-
#define SIDE_EXIT_INITIAL_BACKOFF 10
118+
* a new trace before the Tier 1 code has properly re-specialized. */
119+
#define SIDE_EXIT_INITIAL_VALUE 4095
120+
#define SIDE_EXIT_INITIAL_BACKOFF 12
122121

123122
static inline _Py_BackoffCounter
124123
initial_temperature_backoff_counter(void)

0 commit comments

Comments
 (0)