We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a4c0bc commit fe0ee6dCopy full SHA for fe0ee6d
benchmark/pathfinding/run.sh
@@ -12,4 +12,11 @@ rm benchmarks/*
12
./generate_benchmark_scripts.sh
13
cd ../../../
14
BUILD_BENCHMARK=1 make GEN=ninja
15
-build/release/benchmark/benchmark_runner --disable-timeout "benchmark/pathfinding/benchmarks/.*" > output.timing 2>&1
+
16
+COMMIT_HASH=$(git rev-parse --short HEAD)
17
18
+# Define output file with commit hash and timestamp
19
+OUTPUT_FILE="output_${COMMIT_HASH}.timing"
20
21
+# Run benchmark and save output
22
+build/release/benchmark/benchmark_runner --disable-timeout "benchmark/pathfinding/benchmarks/.*" > "$OUTPUT_FILE" 2>&1
0 commit comments