diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-02-14 18:18:24 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-14 18:18:24 -0500 |
commit | 748e456cdb18912e780b69cc90023ef37f4d0c24 (patch) | |
tree | 73bc608d5be3de63bc53919c2295172a5389d70a /tools/benchmark.py | |
parent | 9a6d89fc401e434b90910b18066f82dc6111cdc0 (diff) |
Use prebuilt hyperfine (#1755)
Diffstat (limited to 'tools/benchmark.py')
-rwxr-xr-x | tools/benchmark.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/benchmark.py b/tools/benchmark.py index c9b9823de..c9a3e0243 100755 --- a/tools/benchmark.py +++ b/tools/benchmark.py @@ -169,10 +169,10 @@ def main(argv): os.chdir(root_path) import_data_from_gh_pages() - prebuilt.load_hyperfine() + hyperfine = prebuilt.load_hyperfine() run([ - "hyperfine", "--ignore-failure", "--export-json", benchmark_file, + hyperfine, "--ignore-failure", "--export-json", benchmark_file, "--warmup", "3" ] + [ deno_path + " " + " ".join(args) for [_, args] in exec_time_benchmarks |