diff options
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 |