forked from amd/aocl-dlp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdlp_runtime.c
More file actions
226 lines (195 loc) · 6.99 KB
/
Copy pathdlp_runtime.c
File metadata and controls
226 lines (195 loc) · 6.99 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
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
/*
* Copyright © Advanced Micro Devices, Inc., or its affiliates.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* 3. Neither the name of the copyright holder nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS “AS IS”
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES ( INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
*/
#include <stdlib.h>
#include "aocl_dlp_config.h"
#include "bindings/c_wrappers/capi_env_config.h"
#include "classic/aocl_lib_interface_apis.h"
#include "runtime/dlp_runtime.h"
#include "sys_utils/lpgemm_sys.h"
#ifdef DLP_ENABLE_OPENMP
#include <omp.h>
#endif
// The global rntm_t structure, which holds the global thread settings
// along with a few other key parameters.
dlp_rntm_t dlp_lib_rntm = DLP_CLASSIC_RNTM_INITIALIZER;
static dlp_pthread_once_t once_init = DLP_PTHREAD_ONCE_INIT;
// Make thread settings local to each thread calling DLP routines
DLP_CLASSIC_THREAD_LOCAL dlp_rntm_t dlp_tl_rntm = DLP_CLASSIC_RNTM_INITIALIZER;
DLP_CLASSIC_THREAD_LOCAL bool dlp_init_tl_rntm = TRUE;
void
dlp_init_threading(void)
{
md_t jc, ic, nt;
// But if nested parallelism is enabled - Then each application will launch
// MT DLP.
//
// Order of precedence used for number of threads:
// 0. valid value set using dlp_thread_set_num_threads(nt) by the
// application
// 1. valid value set for DLP_NUM_THREADS environment variable
// 2. omp_set_num_threads(nt) issued by the application
// 3. valid value set for OMP_NUM_THREADS environment variable
// 4. Number of cores
//
// Try to read DLP_NUM_THREADS first.
nt = dlp_env_get_int("DLP_NUM_THREADS", -1);
// Mark flag to denote threading set by DLP and not external entities
// like OpenMP. This will be used to decide who control threading
// during the entirety of this dlp instance runtime.
if (nt > 0) {
dlp_lib_rntm.ext_mt_ctr_var = FALSE;
} else {
#ifdef DLP_ENABLE_OPENMP
md_t active_level = omp_get_active_level();
md_t max_levels = omp_get_max_active_levels();
if (active_level < max_levels) {
nt = omp_get_max_threads();
} else {
nt = 1;
}
#else
nt = 1;
#endif
dlp_lib_rntm.ext_mt_ctr_var = TRUE;
}
// Read the environment variables for the number of threads (ways
// of parallelism) for each individual loop.
jc = dlp_env_get_int("DLP_JC_NT", -1);
ic = dlp_env_get_int("DLP_IC_NT", -1);
if (jc != -1 || ic != -1) {
jc = (jc == -1) ? 1 : jc;
ic = (ic == -1) ? 1 : ic;
nt = -1;
dlp_lib_rntm.ext_mt_ctr_var = FALSE;
}
dlp_lib_rntm.num_threads = nt;
dlp_lib_rntm.ic_ways = ic;
dlp_lib_rntm.jc_ways = jc;
}
void
dlp_update_threading(dlp_rntm_t* rntm)
{
md_t jc, ic, nt;
// Extract threading data from rntm.
nt = rntm->num_threads;
jc = rntm->jc_ways;
ic = rntm->ic_ways;
if (rntm->ext_mt_ctr_var == FALSE) {
if (jc != -1 || ic != -1) {
jc = (jc == -1) ? 1 : jc;
ic = (ic == -1) ? 1 : ic;
// Unset the value for nt.
nt = -1;
}
#ifdef DLP_ENABLE_OPENMP
// If call is not from an active OpenMP level, then it will be
// serial irrespective of DLP threading settings.
md_t active_level = omp_get_active_level();
md_t max_levels = omp_get_max_active_levels();
if (active_level >= max_levels) {
nt = -1;
jc = ic = 1;
}
#endif
} else {
#ifdef DLP_ENABLE_OPENMP
md_t active_level = omp_get_active_level();
md_t max_levels = omp_get_max_active_levels();
if (active_level < max_levels) {
nt = omp_get_max_threads();
} else {
nt = 1;
}
#else
nt = 1;
#endif
}
rntm->num_threads = nt;
rntm->ic_ways = ic;
rntm->jc_ways = jc;
}
DLP_INLINE void
dlp_init_threading_once()
{
dlp_pthread_once(&once_init, dlp_init_threading);
}
void
dlp_rntm_init_from_global(dlp_rntm_t* rntm)
{
// We must ensure that dlp_lib_rntm and dlp_tl_rntm have been initialized
dlp_init_threading_once();
// Initialize dlp_tl_rntm as a copy of dlp_lib_rntm
// Need to do this once per application thread
if (dlp_init_tl_rntm == TRUE) {
dlp_tl_rntm = dlp_lib_rntm;
dlp_init_tl_rntm = FALSE;
}
// Initialize supplied rntm from dlp_tl_rntm.
*rntm = dlp_tl_rntm;
// This is to account for threading changes that might have happened
// between DLP API calls.
dlp_update_threading(rntm);
}
void
dlp_thread_set_ways(md_t jc, md_t ic)
{
// We must ensure that dlp_lib_rntm and dlp_tl_rntm have been initialized
dlp_init_threading_once();
// Update dlp_tl_rntm so any threads spawned after this call
// inherit the values set here.
dlp_tl_rntm.ic_ways = ic;
dlp_tl_rntm.jc_ways = jc;
// DLP artifacts is used to set threading. Need to ensure OMP API or
// env variables will not be of effect going forward.
dlp_tl_rntm.ext_mt_ctr_var = FALSE;
}
void
dlp_thread_set_num_threads(md_t n_threads)
{
// We must ensure that dlp_lib_rntm and dlp_tl_rntm have been initialized
dlp_init_threading_once();
if (n_threads <= 0) {
n_threads = 1;
}
// Update dlp_tl_rntm so any threads spawned after this call
// inherit the value set here.
dlp_tl_rntm.num_threads = n_threads;
// DLP artifacts is used to set threading. Need to ensure OMP API or
// env variables will not be of effect going forward.
dlp_tl_rntm.ext_mt_ctr_var = FALSE;
}
void
dlp_version_query(int* major, int* minor, int* patch)
{
if (major)
*major = AOCL_DLP_VERSION_MAJOR;
if (minor)
*minor = AOCL_DLP_VERSION_MINOR;
if (patch)
*patch = AOCL_DLP_VERSION_PATCH;
}