Skip to content

Commit

Permalink
Crank up the warmup to 256
Browse files Browse the repository at this point in the history
  • Loading branch information
brandtbucher committed Nov 10, 2024
1 parent 48ade84 commit 29895e9
Show file tree
Hide file tree
Showing 2 changed files with 106 additions and 105 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 64, 128, 256, 512, 1024, 2048, 4096. */
#define JUMP_BACKWARD_INITIAL_VALUE 63
#define JUMP_BACKWARD_INITIAL_BACKOFF 6
* Backoff sequence 256, 512, 1024, 2048, 4096. */
#define JUMP_BACKWARD_INITIAL_VALUE 255
#define JUMP_BACKWARD_INITIAL_BACKOFF 8
static inline _Py_BackoffCounter
initial_jump_backoff_counter(void)
{
Expand Down
Loading

0 comments on commit 29895e9

Please sign in to comment.