forked from smarr/Moth
-
Notifications
You must be signed in to change notification settings - Fork 1
/
runBenchmarks.sh
executable file
·30 lines (26 loc) · 2.1 KB
/
runBenchmarks.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/bin/bash
# AWFY Micro
./moth -tc -eft GraceLibrary/Benchmarks/harness.grace GraceLibrary/Benchmarks/Bounce.grace 1 1 &&
./moth -tc -eft GraceLibrary/Benchmarks/harness.grace GraceLibrary/Benchmarks/Fannkuch.grace 1 1 &&
./moth -tc -eft GraceLibrary/Benchmarks/harness.grace GraceLibrary/Benchmarks/List.grace 1 10 &&
./moth -tc -eft GraceLibrary/Benchmarks/harness.grace GraceLibrary/Benchmarks/Mandelbrot.grace 1 1 &&
./moth -tc -eft GraceLibrary/Benchmarks/harness.grace GraceLibrary/Benchmarks/NBody.grace 1 1 &&
./moth -tc -eft GraceLibrary/Benchmarks/harness.grace GraceLibrary/Benchmarks/Permute.grace 1 1 &&
./moth -tc -eft GraceLibrary/Benchmarks/harness.grace GraceLibrary/Benchmarks/Queens.grace 1 1 &&
./moth -tc -eft GraceLibrary/Benchmarks/harness.grace GraceLibrary/Benchmarks/Sieve.grace 1 1 &&
./moth -tc -eft GraceLibrary/Benchmarks/harness.grace GraceLibrary/Benchmarks/Storage.grace 1 1 &&
./moth -tc -eft GraceLibrary/Benchmarks/harness.grace GraceLibrary/Benchmarks/Towers.grace 1 1 &&
# AWFY Macro
./moth -tc -eft GraceLibrary/Benchmarks/harness.grace GraceLibrary/Benchmarks/CD.grace 1 10 &&
./moth -tc -eft GraceLibrary/Benchmarks/harness.grace GraceLibrary/Benchmarks/DeltaBlue.grace 1 1 &&
./moth -tc -eft GraceLibrary/Benchmarks/harness.grace GraceLibrary/Benchmarks/Havlak.grace 1 1 &&
./moth -tc -eft GraceLibrary/Benchmarks/harness.grace GraceLibrary/Benchmarks/Json.grace 1 1 &&
./moth -tc -eft GraceLibrary/Benchmarks/harness.grace GraceLibrary/Benchmarks/Richards.grace 1 1 &&
# Other
./moth -tc -eft GraceLibrary/Benchmarks/harness.grace GraceLibrary/Benchmarks/GraphSearch.grace 1 20 &&
./moth -tc -eft GraceLibrary/Benchmarks/harness.grace GraceLibrary/Benchmarks/SpectralNorm.grace 1 10 &&
./moth -tc -eft GraceLibrary/Benchmarks/harness.grace GraceLibrary/Benchmarks/Float.grace 1 10 &&
./moth -tc -eft GraceLibrary/Benchmarks/harness.grace GraceLibrary/Benchmarks/Go.grace 1 10 &&
./moth -tc -eft GraceLibrary/Benchmarks/harness.grace GraceLibrary/Benchmarks/PyStone.grace 1 10 &&
./moth -tc -eft GraceLibrary/Benchmarks/harness.grace GraceLibrary/Benchmarks/Snake.grace 1 1 &&
echo "Finished Benchmarks"