-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror_runs.sh
executable file
·50 lines (41 loc) · 1.14 KB
/
error_runs.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# script to run to obtain for error analysis
# compile demo.out
./compile.sh
# setup environment
touch errors.txt
export OMP_NUM_THREADS=8
# n = 2
./demo.out 2 10 E >> errors.txt
./demo.out 2 100 E >> errors.txt
./demo.out 2 10000 E >> errors.txt
./demo.out 2 1000000 E >> errors.txt
# n = 3
./demo.out 3 10 E >> errors.txt
./demo.out 3 100 E >> errors.txt
./demo.out 3 10000 E >> errors.txt
./demo.out 3 1000000 E >> errors.txt
# n = 4
./demo.out 4 10 E >> errors.txt
./demo.out 4 100 E >> errors.txt
./demo.out 4 10000 E >> errors.txt
./demo.out 4 1000000 E >> errors.txt
# n = 5
./demo.out 5 10 E >> errors.txt
./demo.out 5 100 E >> errors.txt
./demo.out 5 10000 E >> errors.txt
./demo.out 5 1000000 E >> errors.txt
# n = 6
./demo.out 6 10 E >> errors.txt
./demo.out 6 100 E >> errors.txt
./demo.out 6 10000 E >> errors.txt
./demo.out 6 1000000 E >> errors.txt
# n = 7
./demo.out 7 10 E >> errors.txt
./demo.out 7 100 E >> errors.txt
./demo.out 7 10000 E >> errors.txt
./demo.out 7 1000000 E >> errors.txt
# n = 8
./demo.out 8 10 E >> errors.txt
./demo.out 8 100 E >> errors.txt
./demo.out 8 10000 E >> errors.txt
./demo.out 8 1000000 E >> errors.txt