summaryrefslogtreecommitdiffstats
path: root/scripts/benchmark.py
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2024-12-02 19:16:40 -0500
committerDavid Robillard <d@drobilla.net>2024-12-02 19:16:40 -0500
commit1e2f1466262ef571764bec2b95e466763d468ae3 (patch)
treed66c15524b209da3209a7efbe5f30c18e94cb5ac /scripts/benchmark.py
parent41d771db17210d577b0a2227f95377186663600a (diff)
downloadzix-1e2f1466262ef571764bec2b95e466763d468ae3.tar.gz
zix-1e2f1466262ef571764bec2b95e466763d468ae3.tar.bz2
zix-1e2f1466262ef571764bec2b95e466763d468ae3.zip
Fix benchmark script
Diffstat (limited to 'scripts/benchmark.py')
-rwxr-xr-xscripts/benchmark.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/benchmark.py b/scripts/benchmark.py
index c160445..6721309 100755
--- a/scripts/benchmark.py
+++ b/scripts/benchmark.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python3
-# Copyright 2011-2022 David Robillard <d@drobilla.net>
+# Copyright 2011-2024 David Robillard <d@drobilla.net>
# SPDX-License-Identifier: ISC
"""
@@ -14,7 +14,7 @@ import subprocess
# Benchmark trees
-subprocess.call(["./tree_bench", "40000", "640000"])
+subprocess.call(["benchmark/tree_bench", "40000", "640000"])
subprocess.call(
[
"../scripts/plot.py",
@@ -64,7 +64,7 @@ if not os.path.exists(FILENAME):
out.write(random_word())
out.write("\n")
-subprocess.call(["./dict_bench", "gibberish.txt"])
+subprocess.call(["benchmark/dict_bench", "gibberish.txt"])
subprocess.call(
[
"../scripts/plot.py",