Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision

Target

Select target project
  • pedatestcontrib/droplet-sequence-generator
1 result
Select Git revision
Show changes
Showing
with 5079 additions and 0 deletions
File deleted
File deleted
File deleted
#!/bin/bash
for nloc in S1 S2 S3 S4 S5; do
for mode in onlydefault random exhaustive; do
java -Xmx16g -Dmode=$mode -Dnloc=$nloc -Doutput=csv -Dexperiment="all" -jar build/dsgen.jar >> ${nloc}-${mode}.csv
done
done
#!/bin/bash
for nloc in S1 S2 S3 S4 S5; do
for i in $(seq 1 1000); do
java -jar -Dexperiment=all -Dmode=random -Dnloc=$nloc -Doutput=csv build/dsgen.jar > ${nloc}-randomstat.txt
noofnos=$(grep No ${nloc}-randomstat.txt | wc -l)
duration=$(grep Duration ${nloc}-randomstat.txt | cut -d ' ' -f 2)
echo "$noofnos;$duration" >> ${nloc}-randstat.csv
done
done
#for i in $(seq 1 1000); do
# java -jar -Dexperiment=all -Dmode=random -Dnloc=S1 -Doutput=csv build/dsgen.jar > S1-randomstat.txt
# noofnos=$(grep No S1-randomstat.txt | wc -l)
# duration=$(grep Duration S1-randomstat.txt | cut -d ' ' -f 2)
# echo "$noofnos ; $duration"
#done
File added
File added
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.