Skip to content

Commit 11add0f

Browse files
committed
Crank the warmup up to 1024
1 parent 89ae662 commit 11add0f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Include/internal/pycore_backoff.h

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

123123
static inline _Py_BackoffCounter
124124
initial_temperature_backoff_counter(void)

0 commit comments

Comments
 (0)