Skip to content

Commit

Permalink
Drop the threshold down to 32
Browse files Browse the repository at this point in the history
  • Loading branch information
brandtbucher committed Sep 13, 2024
1 parent 282ab23 commit a7a7e7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Include/internal/pycore_backoff.h
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@ 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
#define SIDE_EXIT_INITIAL_VALUE 31
#define SIDE_EXIT_INITIAL_BACKOFF 5

static inline _Py_BackoffCounter
initial_temperature_backoff_counter(void)
Expand Down

0 comments on commit a7a7e7f

Please sign in to comment.