Re: [pypy-dev] Size limit

2015-10-07 Thread Maciej Fijalkowski
we found quite a few problems with the current heuristic so we'll put some effort into it some time soon. On Wed, Oct 7, 2015 at 12:17 PM, Tuom Larsen wrote: > Thanks, even trace_limit=9000 is sufficient in my case! > > That heuristic would be most awesome so that other people don't have > to man

Re: [pypy-dev] Size limit

2015-10-07 Thread Tuom Larsen
Thanks, even trace_limit=9000 is sufficient in my case! That heuristic would be most awesome so that other people don't have to manually override the limit. I'm guessing it is more complicated than that but simplify lifting the limit to, say, 12000 wouldn't suffice? On Wed, Oct 7, 2015 at 11:26 A

Re: [pypy-dev] Size limit

2015-10-07 Thread Maciej Fijalkowski
Hi Tuom. It's the limit of number of operations while compiling. It can be (globally) edited using: pypy --jit trace_limit=some-number default is 6000. --jit help will show you some information. We should improve the heuristic to always trace a function that's the only one maybe though On Tue, O