Skip to content

Commit

Permalink
update to use BenchmarkTools v0.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
jrevels committed Feb 6, 2017
1 parent 5717caf commit 66e6108
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion REQUIRE
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
julia 0.4
BenchmarkTools 0.0.5 0.0.6-
BenchmarkTools 0.0.7
GitHub
JSON
JLD
Expand Down
6 changes: 3 additions & 3 deletions src/jobs/BenchmarkJob.jl
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ function retrieve_daily_data!(results, key, cfg, date)
primary_index = findfirst(fname -> endswith(fname, "_primary.jld"), datafiles)
if primary_index > 0
primary_file = datafiles[primary_index]
results[key] = JLD.load(joinpath(datapath, primary_file), "results")
results[key] = BenchmarkTools.load(joinpath(datapath, primary_file), "results")
found_previous_date = true
end
catch err
Expand Down Expand Up @@ -335,7 +335,7 @@ function execute_benchmarks!(job::BenchmarkJob, whichbuild::Symbol)
results = run(benchmarks; verbose = true)
println("SAVING RESULT...")
JLD.save(\"$(benchresults)\", "results", results)
BenchmarkTools.save(\"$(benchresults)\", "results", results)
println("DONE!")
Expand Down Expand Up @@ -364,7 +364,7 @@ function execute_benchmarks!(job::BenchmarkJob, whichbuild::Symbol)
run(`sudo cset set -d /user/child`)
run(`sudo cset shield --reset`)

results = JLD.load(benchresults, "results")
results = BenchmarkTools.load(benchresults, "results")

# Get the verbose output of versioninfo for the build, throwing away
# environment information that is useless/potentially risky to expose.
Expand Down

0 comments on commit 66e6108

Please sign in to comment.