Skip to content

Commit b296ad2

Browse files
committed
Increased threading in decompression benchmarks
The decompression benchmarks now use up to 4096 threads to create the log file (1024 was the previous limit).
1 parent 9f6f708 commit b296ad2

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

benchmarks/run_decompressionCosts.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ if [[ ! -z "$SUDO_POWER" ]]; then
99
exit 1
1010
fi
1111

12-
THREADS_MAX=1024
12+
THREADS_MAX=4096
1313
# Even power of 2
1414
ITTRS=8388608
1515
declare -A BENCH_OPS

benchmarks/run_sortedDecompressionThreads.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ TMP_UNSORTED="/tmp/$(date +%Y%m%d%H%M%S)_2.txt"
3636
TMP_SORTED_NULL="/tmp/$(date +%Y%m%d%H%M%S)_3.txt"
3737
TMP_UNSORTED_NULL="/tmp/$(date +%Y%m%d%H%M%S)_4.txt"
3838

39-
for ((threads=1; threads<=1024; threads*=2))
39+
for ((threads=1; threads<=4096; threads*=2))
4040
# for ((threads=1; threads<=1; threads*=2))
4141
do
4242
((itterations = $ITTRS/$threads))

0 commit comments

Comments
 (0)