-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPerformanceTestParallel-Range-MinusExponent.sh
More file actions
76 lines (51 loc) · 3.02 KB
/
PerformanceTestParallel-Range-MinusExponent.sh
File metadata and controls
76 lines (51 loc) · 3.02 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
echo "Running PerformanceTest-ArraySize.exe with -1"
./build_release_parallel/PerformanceTest-ArraySize.exe -1 0
echo "Running PerformanceTest-ArraySize.exe with -2"
./build_release_parallel/PerformanceTest-ArraySize.exe -2 0
echo "Running PerformanceTest-ArraySize.exe with -5"
./build_release_parallel/PerformanceTest-ArraySize.exe -5 0
echo "Running PerformanceTest-ArraySize.exe with -10"
./build_release_parallel/PerformanceTest-ArraySize.exe -10 0
echo "Running PerformanceTest-ArraySize.exe with -20"
./build_release_parallel/PerformanceTest-ArraySize.exe -20 0
echo "Running PerformanceTest-ArraySize.exe with -50"
./build_release_parallel/PerformanceTest-ArraySize.exe -50 0
echo "Running PerformanceTest-ArraySize.exe with -100"
./build_release_parallel/PerformanceTest-ArraySize.exe -100 0
echo "Running PerformanceTest-ArraySize.exe with -200"
./build_release_parallel/PerformanceTest-ArraySize.exe -200 0
echo "Running PerformanceTest-ArraySize.exe with -500"
./build_release_parallel/PerformanceTest-ArraySize.exe -500 0
echo "Running PerformanceTest-ArraySize.exe with -1 000"
./build_release_parallel/PerformanceTest-ArraySize.exe -1000 0
echo "Running PerformanceTest-ArraySize.exe with -2 000"
./build_release_parallel/PerformanceTest-ArraySize.exe -2000 0
echo "Running PerformanceTest-ArraySize.exe with -5 000"
./build_release_parallel/PerformanceTest-ArraySize.exe -5000 0
echo "Running PerformanceTest-ArraySize.exe with -10 000"
./build_release_parallel/PerformanceTest-ArraySize.exe -10000 0
echo "Running PerformanceTest-ArraySize.exe with -20 000"
./build_release_parallel/PerformanceTest-ArraySize.exe -20000 0
echo "Running PerformanceTest-ArraySize.exe with -50 000"
./build_release_parallel/PerformanceTest-ArraySize.exe -50000 0
echo "Running PerformanceTest-ArraySize.exe with -100 000"
./build_release_parallel/PerformanceTest-ArraySize.exe -100000 0
echo "Running PerformanceTest-ArraySize.exe with -200 000"
./build_release_parallel/PerformanceTest-ArraySize.exe -200000 0
echo "Running PerformanceTest-ArraySize.exe with -500 000"
./build_release_parallel/PerformanceTest-ArraySize.exe -500000 0
echo "Running PerformanceTest-ArraySize.exe with -1 000 000"
./build_release_parallel/PerformanceTest-ArraySize.exe -1000000 0
echo "Running PerformanceTest-ArraySize.exe with -2 000 000"
./build_release_parallel/PerformanceTest-ArraySize.exe -2000000 0
echo "Running PerformanceTest-ArraySize.exe with -5 000 000"
./build_release_parallel/PerformanceTest-ArraySize.exe -5000000 0
echo "Running PerformanceTest-ArraySize.exe with -10 000 000"
./build_release_parallel/PerformanceTest-ArraySize.exe -10000000 0
echo "Running PerformanceTest-ArraySize.exe with -100 000 000"
./build_release_parallel/PerformanceTest-ArraySize.exe -100000000 0
echo "Running PerformanceTest-ArraySize.exe with -1 000 000 000"
./build_release_parallel/PerformanceTest-ArraySize.exe -1000000000 0
echo "Running PerformanceTest-ArraySize.exe with -10 000 000 000"
./build_release_parallel/PerformanceTest-ArraySize.exe -10000000000 0
echo All tasks completed.