summaryrefslogtreecommitdiff
path: root/bench/run_benches.sh
diff options
context:
space:
mode:
Diffstat (limited to 'bench/run_benches.sh')
-rwxr-xr-xbench/run_benches.sh15
1 files changed, 0 insertions, 15 deletions
diff --git a/bench/run_benches.sh b/bench/run_benches.sh
deleted file mode 100755
index e2a26a8..0000000
--- a/bench/run_benches.sh
+++ /dev/null
@@ -1,15 +0,0 @@
1#!/bin/sh
2
3if ! zig build -Doptimize=ReleaseSafe; then
4 exit 1
5fi
6
7cd zig-out/bin/
8
9echo "\nBinary sizes ======="
10ls -lh | awk '{ print $5, $9 }'
11
12echo "\nBenchmarks ==========\n"
13for bin in *; do ./$bin ../../data/lang_mix.txt; done
14
15cd - > /dev/null