Skip to content

Commit

Permalink
Merge pull request #240 from JuliaCI/kc/sort
Browse files Browse the repository at this point in the history
remove sorting of Trial
  • Loading branch information
vchuravy authored Jul 28, 2021
2 parents 777421b + 88eee5c commit a7375d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/execution.jl
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ function _run(b::Benchmark, p::Parameters; verbose = false, pad = "", kwargs...)
push!(trial, b.samplefunc(params)[1:end-1]...)
iters += 1
end
return sort!(trial), return_val
return trial, return_val
end


Expand Down

0 comments on commit a7375d0

Please sign in to comment.