faster-cpython / bench_runner

Code for running pyperformance benchmarks on Github Action runners
BSD 3-Clause "New" or "Revised" License
3 stars 5 forks source link

Use a JIT build for pystats when a JIT build is requested #166

Closed mdboom closed 6 months ago

mdboom commented 6 months ago

When you do pystats on a JIT run, we currently do the pystats on a non-JIT build of the same commit, because early on with the JIT the stats were incomplete. The results of JIT builds and non-JIT builds end up in different directories. I actually think due to the magic of how the JIT works we probably have parity between the stats in a JIT build and non-JIT build now so we should probably just remove this special case, which would make the results all appear together.