Skip to content
This repository has been archived by the owner on Apr 4, 2021. It is now read-only.

Commit

Permalink
Create separate directory for results
Browse files Browse the repository at this point in the history
  • Loading branch information
szarnyasg committed Sep 24, 2018
1 parent fddca2d commit bc7b2b8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions results/.gitignore
@@ -0,0 +1,2 @@
*
!.gitignore
4 changes: 2 additions & 2 deletions tests/benchmark.sh
Expand Up @@ -4,13 +4,13 @@ RUNS=3
SFS="01 03 1"
QUERIES="2 3 4 6 8 9 12 15 22 23 24"

mv results.csv results-`date +%s`.csv
mv ../results/results.csv ../results/results-`date +%s`.csv

for SF in $SFS; do
for RUN in `seq 1 $RUNS`; do
for QUERY in $QUERIES; do
echo scale factor: $SF, run: $RUN, query: $QUERY
./tests $SF $QUERY | tee -a results.csv
./tests $SF $QUERY | tee -a ../results/results.csv
done
done
done

0 comments on commit bc7b2b8

Please sign in to comment.