Skip to content

Commit

Permalink
Drop the threshold down to 16
Browse files Browse the repository at this point in the history
  • Loading branch information
brandtbucher committed Sep 12, 2024
1 parent 282ab23 commit 124d124
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Include/internal/pycore_backoff.h
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 124d124

Please sign in to comment.