-
Notifications
You must be signed in to change notification settings - Fork 0
/
dawgsSettings.cpp
134 lines (108 loc) · 4.05 KB
/
dawgsSettings.cpp
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/*
The MIT License (MIT)
Copyright (c) 2017-2022 Tim Warburton, Noel Chalmers, Jesse Chan, Ali Karakus
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
#include "dawgs.hpp"
//settings for dawgs test
dawgsSettings_t::dawgsSettings_t(const int argc, char** argv, comm_t _comm):
settings_t(_comm) {
newSetting("-m", "--mode",
"THREAD MODEL",
"CUDA",
"OCCA's Parallel execution platform",
{"Serial", "OpenMP", "CUDA", "HIP", "OpenCL"});
newSetting("-pl", "--platform",
"PLATFORM NUMBER",
"0",
"Parallel platform number (used in OpenCL mode)");
newSetting("-d", "--device",
"DEVICE NUMBER",
"0",
"Parallel device number");
newSetting("-nx", "--dimx",
"LOCAL BOX NX",
"10",
"Number of elements in X-dimension");
newSetting("-ny", "--dimy",
"LOCAL BOX NY",
"10",
"Number of elements in Y-dimension");
newSetting("-nz", "--dimz",
"LOCAL BOX NZ",
"10",
"Number of elements in Z-dimension");
newSetting("-NX", "--DIMX",
"BOX NX",
"-1",
"Global number of elements in X-dimension");
newSetting("-NY", "--DIMY",
"BOX NY",
"-1",
"Global number of elements in Y-dimension");
newSetting("-NZ", "--DIMZ",
"BOX NZ",
"-1",
"Global number of elements in Z-dimension");
newSetting("-p", "--degree",
"POLYNOMIAL DEGREE",
"4",
"Degree of polynomial finite element space",
{"1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"});
newSetting("-v", "--verbose",
"VERBOSE",
"FALSE",
"Enable verbose output",
{"TRUE", "FALSE"});
newSetting("-mth", "--method",
"METHOD",
"All",
"Exchange method to use",
{"Pairwise", "Alltoall", "CrystalRouter", "All"});
newSetting("-cc", "--correctness-check",
"CORRECTNESS CHECK",
"FALSE",
"Check correctness of results using gslib",
{"TRUE", "FALSE"});
newSetting("-sw", "--sweep",
"SWEEP",
"FALSE",
"Sweep through many problem sizes",
{"TRUE", "FALSE"});
parseSettings(argc, argv);
}
void dawgsSettings_t::report() {
if (comm.rank()==0) {
std::cout << "Settings:\n\n";
reportSetting("THREAD MODEL");
if (compareSetting("THREAD MODEL","OpenCL"))
reportSetting("PLATFORM NUMBER");
if ((comm.size()==1)
&&(compareSetting("THREAD MODEL","CUDA")
||compareSetting("THREAD MODEL","HIP")
||compareSetting("THREAD MODEL","OpenCL") ))
reportSetting("DEVICE NUMBER");
//report the box settings
reportSetting("BOX NX");
reportSetting("BOX NY");
reportSetting("BOX NZ");
reportSetting("POLYNOMIAL DEGREE");
reportSetting("METHOD");
reportSetting("CORRECTNESS CHECK");
reportSetting("SWEEP");
}
}