File tree Expand file tree Collapse file tree 2 files changed +16
-3
lines changed
Expand file tree Collapse file tree 2 files changed +16
-3
lines changed Original file line number Diff line number Diff line change 11#! /bin/bash
22
33# Define versions, sources, and scale factors
4- versions=(" operator" )
5- sources=(512 1024 2048 16384 32768 65536)
4+ versions=(" operator" " udf " )
5+ sources=(512 1024 2048 16384 32768 65536 131072 )
66scale_factors=(30 100 300)
7- threads=(1)
7+ threads=(1 2 4 8 )
88
99# Loop over versions, sources, and scale factors
1010for version in " ${versions[@]} " ; do
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ set -eu
4+ set -o pipefail
5+
6+ cd " $( cd " $( dirname " ${BASH_SOURCE[0]:- ${(% ):-% x} } " ) " > /dev/null 2>&1 && pwd ) "
7+
8+
9+ ./get-small-data.sh
10+ ./generate_benchmark_scripts.sh
11+ cd ../../../
12+ BUILD_BENCHMARK=1 make GEN=ninja
13+ build/release/benchmark/benchmark_runner --disable-timeout " benchmark/pathfinding/benchmarks/.*" > output.timing 2>&1
You can’t perform that action at this time.
0 commit comments