From 124d124e36c29ac3773403181723cd7b0d7408dd Mon Sep 17 00:00:00 2001 From: Brandt Bucher Date: Thu, 12 Sep 2024 14:46:37 -0700 Subject: [PATCH] Drop the threshold down to 16 --- Include/internal/pycore_backoff.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Include/internal/pycore_backoff.h b/Include/internal/pycore_backoff.h index f906bfca94d278..4712d4b4c9cca2 100644 --- a/Include/internal/pycore_backoff.h +++ b/Include/internal/pycore_backoff.h @@ -118,9 +118,9 @@ initial_jump_backoff_counter(void) } /* Initial exit temperature. - * Backoff sequence 64, 128, 256, 512, 1024, 2048, 4096. */ -#define SIDE_EXIT_INITIAL_VALUE 64 -#define SIDE_EXIT_INITIAL_BACKOFF 6 + * Backoff sequence 16, 32, 64, 128, 256, 512, 1024, 2048, 4096. */ +#define SIDE_EXIT_INITIAL_VALUE 15 +#define SIDE_EXIT_INITIAL_BACKOFF 4 static inline _Py_BackoffCounter initial_temperature_backoff_counter(void)