Skip to content
Snippets Groups Projects
Commit 13cd3ba8 authored by René Schöne's avatar René Schöne
Browse files

update benchmark script

parent d6693662
No related branches found
No related tags found
No related merge requests found
Pipeline #9655 skipped
#!/usr/bin/env sh
mkdir -p "results"
now=$(date -u "+%Y-%m-%d_%H-%M-%S")
query=2
size=32
for d in relast-* namelookup-xml-*; do
./gradlew ":${d}:installDist"
./timedBenchmark.sh "$d" $query $size > "results/results-${d}-${size}-Q${query}.csv"
# namelookup-xml-*
for size in 8 16 32 64 128; do
for d in relast-*; do
./timedBenchmark.sh "$d" $query $size > "results/results-${now}-${d}-${size}-Q${query}.csv"
done
done
echo "Tool;View;ChangeSet;RunIndex;Iteration;PhaseName;MetricName;MetricValue" > "results/merged-${now}.csv"
cat "results/results-${now}-*" >> "results/merged-${now}.csv"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment