Skip to content

Commit d1ba218

Browse files
committed
[experiment] Experiment with some recursive partition stats
1 parent 3125a01 commit d1ba218

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

benchmark/include/benchmark.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ struct BenchmarkState {
2828
//! The base Benchmark class is a base class that is used to create and register
2929
//! new benchmarks
3030
class Benchmark {
31-
constexpr static size_t DEFAULT_NRUNS = 5;
31+
constexpr static size_t DEFAULT_NRUNS = 1;
3232
Benchmark(Benchmark &) = delete;
3333

3434
public:

benchmark/pathfinding/generate_benchmark_scripts.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
# Define versions, sources, and scale factors
44
versions=("operator")
55
sources=(16384)
6-
scale_factors=(1 3 10 30 100 300)
7-
threads=(1 2 4 8)
8-
partition_sizes=(65536 131072 262144 524288 1048576)
6+
scale_factors=(1 3 10 30 100 300)
7+
threads=(8)
8+
partition_sizes=(65536 131072 262144 524288 12582912 25165824 50331648 6291456)
99
# Loop over versions, sources, and scale factors
1010
for version in "${versions[@]}"; do
1111
for source in "${sources[@]}"; do

benchmark/pathfinding/get-small-data.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ else
1515
echo "DuckDB is already installed."
1616
fi
1717

18-
for SF in 1 3 10 30 100 300; do
18+
for SF in 1 3 10 30 100 300 1000; do
1919
curl --silent --fail --http1.1 https://pub-383410a98aef4cb686f0c7601eddd25f.r2.dev/duckpgq-experiments/snb-bi/snb-bi-sf${SF}.tar.zst | tar -xv --use-compress-program=unzstd
2020
mv snb-bi-sf${SF}.v snb-bi.v
2121
mv snb-bi-sf${SF}.e snb-bi.e

benchmark/pathfinding/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ set -o pipefail
66
cd "$( cd "$( dirname "${BASH_SOURCE[0]:-${(%):-%x}}" )" >/dev/null 2>&1 && pwd )"
77

88

9-
./get-small-data.sh
9+
# ./get-small-data.sh
1010

1111
find benchmarks/ -type f -not -name ".gitignore" -delete
1212
./generate_benchmark_scripts.sh

0 commit comments

Comments
 (0)