Skip to content

Commit

Permalink
Crank the warmup up to 32768
Browse files Browse the repository at this point in the history
  • Loading branch information
brandtbucher committed Nov 12, 2024
1 parent 1723e00 commit c561277
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 @@ -103,9 +103,9 @@ backoff_counter_triggers(_Py_BackoffCounter counter)

/* Initial JUMP_BACKWARD counter.
* This determines when we create a trace for a loop.
* Backoff sequence 16384. */
#define JUMP_BACKWARD_INITIAL_VALUE 16383
#define JUMP_BACKWARD_INITIAL_BACKOFF 14
* Backoff sequence 32768. */
#define JUMP_BACKWARD_INITIAL_VALUE 32767
#define JUMP_BACKWARD_INITIAL_BACKOFF 15
static inline _Py_BackoffCounter
initial_jump_backoff_counter(void)
{
Expand Down

0 comments on commit c561277

Please sign in to comment.