forked from JuliaCI/PkgBenchmark.jl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrunbenchmark.jl
243 lines (212 loc) · 8.91 KB
/
runbenchmark.jl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
"""
benchmarkpkg(pkg, [target]::Union{String, BenchmarkConfig}; kwargs...)
Run a benchmark on the package `pkg` using the [`BenchmarkConfig`](@ref) or git identifier `target`.
Examples of git identifiers are commit shas, branch names, or e.g. "HEAD~1".
Return a [`BenchmarkResults`](@ref).
The argument `pkg` can be a name of a package or a path to a directory to a package.
**Keyword arguments**:
* `script` - The script with the benchmarks, if not given, defaults to `benchmark/benchmarks.jl` in the package folder.
* `postprocess` - A function to post-process results. Will be passed the `BenchmarkGroup`, which it can modify, or return a new one.
* `resultfile` - If set, saves the output to `resultfile`
* `retune` - Force a re-tune, saving the new tuning to the tune file.
The result can be used by functions such as [`judge`](@ref). If you choose to, you can save the results manually using
[`writeresults`](@ref) where `results` is the return value of this function. It can be read back with [`readresults`](@ref).
**Example invocations:**
```julia
using PkgBenchmark
import MyPkg
benchmarkpkg(pathof(MyPkg)) # run the benchmarks at the current state of the repository
benchmarkpkg(pathof(MyPkg), "my-feature") # run the benchmarks for a particular branch/commit/tag
benchmarkpkg(pathof(MyPkg), "my-feature"; script="/home/me/mycustombenchmark.jl")
benchmarkpkg(pathof(MyPkg), BenchmarkConfig(id = "my-feature",
env = Dict("JULIA_NUM_THREADS" => 4),
juliacmd = `julia -O3`))
benchmarkpkg(pathof(MyPkg), # Run the benchmarks and divide the (median of) results by 1000
postprocess=(results)->(results["g"] = median(results["g"])/1_000)
```
"""
function benchmarkpkg(
pkg::String,
target=BenchmarkConfig();
script=nothing,
postprocess=nothing,
resultfile=nothing,
retune=false,
custom_loadpath="" #= used in tests =#
)
target = BenchmarkConfig(target)
pkgfile_from_pkgname = Base.locate_package(Base.identify_package(pkg))
if pkgfile_from_pkgname===nothing
if isdir(pkg)
pkgdir = pkg
else
error("No package '$pkg' found.")
end
else
pkgdir = normpath(joinpath(dirname(pkgfile_from_pkgname), ".."))
end
# Locate script
if script === nothing
script = joinpath(pkgdir, "benchmark", "benchmarks.jl")
elseif !isabspath(script)
script = joinpath(pkgdir, script)
end
if !isfile(script)
error("benchmark script at $script not found")
end
# Locate pacakge
tunefile = joinpath(pkgdir, "benchmark", "tune.json")
isgitrepo = isdir(joinpath(pkgdir, ".git"))
if isgitrepo
isdirty = LibGit2.with(LibGit2.isdirty, LibGit2.GitRepo(pkgdir))
original_sha = _shastring(pkgdir, "HEAD")
end
# In this function the package is at the commit we want to benchmark
function do_benchmark()
shastring = begin
if isgitrepo
isdirty ? "dirty" : _shastring(pkgdir, "HEAD")
else
"non gitrepo"
end
end
local results
results_local = _withtemp(tempname()) do f
_benchinfo("Running benchmarks...")
_runbenchmark(script, f, target, tunefile; retune=retune, custom_loadpath = custom_loadpath)
end
io = IOBuffer(results_local["results"])
seek(io, 0)
resgroup = BenchmarkTools.load(io)[1]
if postprocess != nothing
retval = postprocess(resgroup)
if retval != nothing
resgroup = retval
end
end
juliasha = results_local["juliasha"]
vinfo = results_local["vinfo"]
results = BenchmarkResults(pkg, shastring, resgroup, now(), juliasha, vinfo, target)
return results
end
if target.id !== nothing
if !isgitrepo
error("$pkgdir is not a git repo, cannot benchmark at $(target.id)")
elseif isdirty
error("$pkgdir is dirty. Please commit/stash your ",
"changes before benchmarking a specific commit")
end
results = _withcommit(do_benchmark, LibGit2.GitRepo(pkgdir), target.id)
else
results = do_benchmark()
end
if resultfile != nothing
writeresults(resultfile, results)
_benchinfo("benchmark results written to $resultfile")
end
if isgitrepo
after_sha = _shastring(pkgdir, "HEAD")
if original_sha != after_sha
warn("Failed to return back to original sha $original_sha, package now at $after_sha")
end
end
return results
end
function _runbenchmark(file::String, output::String, benchmarkconfig::BenchmarkConfig, tunefile::String;
retune=false, custom_loadpath = nothing)
color = Base.have_color ? "--color=yes" : "--color=no"
compilecache = "--compiled-modules=" * (Bool(Base.JLOptions().use_compiled_modules) ? "yes" : "no")
_file, _output, _tunefile, _custom_loadpath = map(escape_string, (file, output, tunefile, custom_loadpath))
codecov_option = Base.JLOptions().code_coverage
coverage = if codecov_option == 0
"none"
elseif codecov_option == 1
"user"
else
"all"
end
exec_str = isempty(_custom_loadpath) ? "" : "push!(LOAD_PATH, \"$(_custom_loadpath)\")\n"
exec_str *=
"""
using PkgBenchmark
PkgBenchmark._runbenchmark_local("$_file", "$_output", "$_tunefile", $retune )
"""
target_env = [k => v for (k, v) in benchmarkconfig.env]
withenv(target_env...) do
env_to_use = dirname(Pkg.Types.Context().env.project_file)
run(`$(benchmarkconfig.juliacmd) --project=$env_to_use --depwarn=no --code-coverage=$coverage $color $compilecache -e $exec_str`)
end
return JSON.parsefile(output)
end
function _runbenchmark_local(file, output, tunefile, retune)
# Loading
Base.include(Main, file)
if !isdefined(Main, :SUITE)
error("`SUITE` variable not found, make sure the BenchmarkGroup is named `SUITE`")
end
suite = Main.SUITE
# Tuning
if isfile(tunefile) && !retune
_benchinfo("using benchmark tuning data in $(abspath(tunefile))")
BenchmarkTools.loadparams!(suite, BenchmarkTools.load(tunefile)[1], :evals, :samples);
else
_benchinfo("creating benchmark tuning file $(abspath(tunefile))...")
mkpath(dirname(tunefile))
_tune!(suite)
BenchmarkTools.save(tunefile, params(suite));
end
# Running
results = _run(suite)
# Output
vinfo = first(split(sprint((io) -> versioninfo(io; verbose=true)), "Environment"))
juliasha = Base.GIT_VERSION_INFO.commit
open(output, "w") do iof
JSON.print(iof, Dict(
"results" => sprint(BenchmarkTools.save, results),
"vinfo" => vinfo,
"juliasha" => juliasha,
))
end
return nothing
end
function _tune!(group::BenchmarkTools.BenchmarkGroup; verbose::Bool = false, root = true,
prog = Progress(length(BenchmarkTools.leaves(group)); desc = "Tuning: "), hierarchy = [], kwargs...)
BenchmarkTools.gcscrub() # run GC before running group, even if individual benchmarks don't manually GC
i = 1
for id in keys(group)
_tune!(group[id]; verbose = verbose, prog = prog, hierarchy = push!(copy(hierarchy), (repr(id), i, length(keys(group)))), kwargs...)
i += 1
end
return group
end
function _tune!(b::BenchmarkTools.Benchmark, p::BenchmarkTools.Parameters = b.params;
prog = nothing, verbose::Bool = false, pad = "", hierarchy = [], kwargs...)
BenchmarkTools.warmup(b, verbose=false)
estimate = ceil(Int, minimum(BenchmarkTools.lineartrial(b, p; kwargs...)))
b.params.evals = BenchmarkTools.guessevals(estimate)
if prog != nothing
indent = 0
ProgressMeter.next!(prog; showvalues = [map(id -> (" "^(indent += 1) * "[$(id[2])/$(id[3])]", id[1]), hierarchy)...])
end
return b
end
function _run(group::BenchmarkTools.BenchmarkGroup, args...;
prog = Progress(length(BenchmarkTools.leaves(group)); desc = "Benchmarking: "), hierarchy = [], kwargs...)
result = similar(group)
BenchmarkTools.gcscrub() # run GC before running group, even if individual benchmarks don't manually GC
i = 1
for id in keys(group)
result[id] = _run(group[id], args...; prog = prog, hierarchy = push!(copy(hierarchy), (repr(id), i, length(keys(group)))), kwargs...)
i += 1
end
return result
end
function _run(b::BenchmarkTools.Benchmark, p::BenchmarkTools.Parameters = b.params;
prog = nothing, verbose::Bool = false, pad = "", hierarchy = [], kwargs...)
res = BenchmarkTools.run_result(b, p; kwargs...)[1]
if prog != nothing
indent = 0
ProgressMeter.next!(prog; showvalues = [map(id -> (" "^(indent += 1) * "[$(id[2])/$(id[3])]", id[1]), hierarchy)...])
end
return res
end