BaseBenchmark: Comparing pr with previous commit

How can I run the benchmark between the current julia master and an previous commit, like in this?

https://github.com/JuliaCI/BaseBenchmarkReports/blob/88d896b0db239199f97014dad2444ed5a1ba6011/6d6ed95_vs_19f81ac/report.md

Does this describe what you want https://github.com/JuliaCI/BaseBenchmarks.jl#recipe-for-testing-a-julia-pr-locally?

2 Likes

That describes how to compare the performance of a PR vs. Julia’s master branch.
So to check if a commit has degraded performance, I’ll have to reset a branch to before the commit and compare it with the current master right?

Yes exactly. Or just compare to the previous commit to the commit that is suspected to have caused the regression.

So, I have to generate a jdl for before #19760. Thanks!