[pypy-dev] Re: Question about pypy rpython and jitlogs

2022-09-24 Thread Armin Rigo
Hi, On Sat, 24 Sept 2022 at 20:31, Matti Picus wrote: > I think you are looking for the JIT "threshold" option [1], which can be > specified as > > > pypy --jit threshold=200 > > > to get the JIT to consider a loop "hot" after it has been hit 200 times. > The default is 1000 Note that doing so w

[pypy-dev] Re: Question about pypy rpython and jitlogs

2022-09-24 Thread Matti Picus
I think you are looking for the JIT "threshold" option [1], which can be specified as pypy --jit threshold=200 to get the JIT to consider a loop "hot" after it has been hit 200 times. The default is 1000 Matti [0] https://doc.pypy.org/en/latest/jit_help.html?highlight=trace_eagerness#ad