Skip to content

Commit

Permalink
Increased threading in decompression benchmarks
Browse files Browse the repository at this point in the history
The decompression benchmarks now use up to 4096 threads to create
the log file (1024 was the previous limit).
  • Loading branch information
syang0 committed Feb 26, 2020
1 parent 9f6f708 commit b296ad2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion benchmarks/run_decompressionCosts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ if [[ ! -z "$SUDO_POWER" ]]; then
exit 1
fi

THREADS_MAX=1024
THREADS_MAX=4096
# Even power of 2
ITTRS=8388608
declare -A BENCH_OPS
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/run_sortedDecompressionThreads.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ TMP_UNSORTED="/tmp/$(date +%Y%m%d%H%M%S)_2.txt"
TMP_SORTED_NULL="/tmp/$(date +%Y%m%d%H%M%S)_3.txt"
TMP_UNSORTED_NULL="/tmp/$(date +%Y%m%d%H%M%S)_4.txt"

for ((threads=1; threads<=1024; threads*=2))
for ((threads=1; threads<=4096; threads*=2))
# for ((threads=1; threads<=1; threads*=2))
do
((itterations = $ITTRS/$threads))
Expand Down

0 comments on commit b296ad2

Please sign in to comment.