Skip to content

Commit 6ceafec

Browse files
NHDalyKristofferC
authored andcommitted
Add postprocess::Function arg to benchmarkpkg() (#75)
* Add postprocess::Function arg to benchmarkpkg() postprocess is a function that takes the results `Benchmarkgroup` and either modifies them or returns a new version. This allows users to inject logic into the benchmarking pipeline, including subtracting two runs, dividing by N, or other such operations. * Add unit test covering `postprocess=()->()`.
1 parent 1dc83bf commit 6ceafec

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

src/runbenchmark.jl

+10
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ The argument `pkg` can be a name of a package or a path to a directory to a pack
1010
**Keyword arguments**:
1111
1212
* `script` - The script with the benchmarks, if not given, defaults to `benchmark/benchmarks.jl` in the package folder.
13+
* `postprocess` - A function to post-process results. Will be passed the `BenchmarkGroup`, which it can modify, or return a new one.
1314
* `resultfile` - If set, saves the output to `resultfile`
1415
* `retune` - Force a re-tune, saving the new tuning to the tune file.
1516
@@ -28,12 +29,15 @@ benchmarkpkg(pathof(MyPkg), "my-feature"; script="/home/me/mycustombenchmark.jl"
2829
benchmarkpkg(pathof(MyPkg), BenchmarkConfig(id = "my-feature",
2930
env = Dict("JULIA_NUM_THREADS" => 4),
3031
juliacmd = `julia -O3`))
32+
benchmarkpkg(pathof(MyPkg), # Run the benchmarks and divide the (median of) results by 1000
33+
postprocess=(results)->(results["g"] = median(results["g"])/1_000)
3134
```
3235
"""
3336
function benchmarkpkg(
3437
pkg::String,
3538
target=BenchmarkConfig();
3639
script=nothing,
40+
postprocess=nothing,
3741
resultfile=nothing,
3842
retune=false,
3943
custom_loadpath="" #= used in tests =#
@@ -90,6 +94,12 @@ function benchmarkpkg(
9094
io = IOBuffer(results_local["results"])
9195
seek(io, 0)
9296
resgroup = BenchmarkTools.load(io)[1]
97+
if postprocess != nothing
98+
retval = postprocess(resgroup)
99+
if retval != nothing
100+
resgroup = retval
101+
end
102+
end
93103
juliasha = results_local["juliasha"]
94104
vinfo = results_local["vinfo"]
95105
results = BenchmarkResults(pkg, shastring, resgroup, now(), juliasha, vinfo, target)

test/runtests.jl

+16
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using PkgBenchmark
22
using BenchmarkTools
3+
using Statistics
34
using Test
45
using Dates
56
using LibGit2
@@ -73,6 +74,21 @@ temp_pkg_dir(;tmp_dir = tmp_dir) do
7374
end
7475
end
7576

77+
@testset "postprocess" begin
78+
PkgBenchmark._withtemp(tempname()) do f
79+
str = """
80+
using BenchmarkTools
81+
SUITE = BenchmarkGroup()
82+
SUITE["foo"] = @benchmarkable for _ in 1:100; 1+1; end
83+
"""
84+
open(f, "w") do file
85+
print(file, str)
86+
end
87+
@test typeof(benchmarkpkg(TEST_PACKAGE_NAME, script=f;
88+
postprocess=(r)->(r["foo"] = maximum(r["foo"]); return r))) == BenchmarkResults
89+
end
90+
end
91+
7692
# Make a commit with a small benchmarks.jl file
7793
testpkg_path = Pkg.dir(TEST_PACKAGE_NAME)
7894
LibGit2.init(testpkg_path)

0 commit comments

Comments
 (0)