Skip to content

Commit 89ae662

Browse files
committed
Crank the warmup up to 256
1 parent 615abb9 commit 89ae662

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 64, 128, 256, 512, 1024, 2048, 4096. */
120-
#define SIDE_EXIT_INITIAL_VALUE 63
121-
#define SIDE_EXIT_INITIAL_BACKOFF 6
119+
* Backoff sequence 256, 512, 1024, 2048, 4096. */
120+
#define SIDE_EXIT_INITIAL_VALUE 255
121+
#define SIDE_EXIT_INITIAL_BACKOFF 8
122122

123123
static inline _Py_BackoffCounter
124124
initial_temperature_backoff_counter(void)

0 commit comments

Comments
 (0)