-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathxcl2.cpp
341 lines (310 loc) · 13.2 KB
/
xcl2.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
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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
/**********
Copyright (c) 2017, Xilinx, Inc.
All rights reserved.
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 <unistd.h>
#include <limits.h>
#include <sys/stat.h>
#include "xcl2.hpp"
namespace xcl {
std::vector<cl::Device> get_devices(const std::string& vendor_name) {
size_t i;
std::vector<cl::Platform> platforms;
cl::Platform::get(&platforms);
cl::Platform platform;
for (i = 0 ; i < platforms.size(); i++){
platform = platforms[i];
std::string platformName = platform.getInfo<CL_PLATFORM_NAME>();
std::cout << "platform Name: " << platformName.c_str() << std::endl
<< "Vendor Name : " << vendor_name.c_str()
<< std::endl;
if (platformName == vendor_name){
std::cout << "Found Platform" << std::endl;
break;
}
}
if (i == platforms.size()) {
std::cout << "Error: Failed to find Xilinx platform" << std::endl;
exit(EXIT_FAILURE);
}
//Getting ACCELERATOR Devices and selecting 1st such device
std::vector<cl::Device> devices;
platform.getDevices(CL_DEVICE_TYPE_ACCELERATOR, &devices);
return devices;
}
std::vector<cl::Device> get_xil_devices() {
return get_devices("Xilinx");
}
cl::Program::Binaries import_binary_file(std::string xclbin_file_name)
{
std::cout << "INFO: Importing " << xclbin_file_name << std::endl;
if(access(xclbin_file_name.c_str(), R_OK) != 0) {
printf("ERROR: %s xclbin not available please build\n", xclbin_file_name.c_str());
exit(EXIT_FAILURE);
}
//Loading XCL Bin into char buffer
std::cout << "Loading: '" << xclbin_file_name.c_str() << "'\n";
std::ifstream bin_file(xclbin_file_name.c_str(), std::ifstream::binary);
bin_file.seekg (0, bin_file.end);
unsigned nb = bin_file.tellg();
bin_file.seekg (0, bin_file.beg);
char *buf = new char [nb];
bin_file.read(buf, nb);
cl::Program::Binaries bins;
bins.push_back({buf,nb});
return bins;
}
std::string
find_binary_file(const std::string& _device_name, const std::string& xclbin_name)
{
std::cout << "XCLBIN File Name: " << xclbin_name.c_str() << std::endl;
char *xcl_mode = getenv("XCL_EMULATION_MODE");
char *xcl_target = getenv("XCL_TARGET");
std::string mode;
/* Fall back mode if XCL_EMULATION_MODE is not set is "hw" */
if(xcl_mode == NULL) {
mode = "hw";
} else {
/* if xcl_mode is set then check if it's equal to true*/
if(strcmp(xcl_mode,"true") == 0) {
/* if it's true, then check if xcl_target is set */
if(xcl_target == NULL) {
/* default if emulation but not specified is software emulation */
mode = "sw_emu";
} else {
/* otherwise, it's what ever is specified in XCL_TARGET */
mode = xcl_target;
}
} else {
/* if it's not equal to true then it should be whatever
* XCL_EMULATION_MODE is set to */
mode = xcl_mode;
}
}
char *xcl_bindir = getenv("XCL_BINDIR");
// typical locations of directory containing xclbin files
const char *dirs[] = {
xcl_bindir, // $XCL_BINDIR-specified
"xclbin", // command line build
"..", // gui build + run
".", // gui build, run in build directory
NULL
};
const char **search_dirs = dirs;
if (xcl_bindir == NULL) {
search_dirs++;
}
char *device_name = strdup(_device_name.c_str());
if (device_name == NULL) {
printf("Error: Out of Memory\n");
exit(EXIT_FAILURE);
}
// fix up device name to avoid colons and dots.
// xilinx:xil-accel-rd-ku115:4ddr-xpr:3.2 -> xilinx_xil-accel-rd-ku115_4ddr-xpr_3_2
for (char *c = device_name; *c != 0; c++) {
if (*c == ':' || *c == '.') {
*c = '_';
}
}
char *device_name_versionless = strdup(_device_name.c_str());
if (device_name_versionless == NULL) {
printf("Error: Out of Memory\n");
exit(EXIT_FAILURE);
}
unsigned short colons = 0;
bool colon_exist = false;
for (char *c = device_name_versionless; *c != 0; c++) {
if (*c == ':') {
colons++;
*c = '_';
colon_exist = true;
}
/* Zero out version area */
if (colons == 3) {
*c = '\0';
}
}
// versionless support if colon doesn't exist in device_name
if(!colon_exist) {
int len = strlen(device_name_versionless);
device_name_versionless[len - 4] = '\0';
}
const char *aws_file_patterns[] = {
"%1$s/%2$s.%3$s.%4$s.awsxclbin", // <kernel>.<target>.<device>.awsxclbin
"%1$s/%2$s.%3$s.%5$s.awsxclbin", // <kernel>.<target>.<device_versionless>.awsxclbin
"%1$s/binary_container_1.awsxclbin", // default for gui projects
"%1$s/%2$s.awsxclbin", // <kernel>.awsxclbin
NULL
};
const char *file_patterns[] = {
"%1$s/%2$s.%3$s.%4$s.xclbin", // <kernel>.<target>.<device>.xclbin
"%1$s/%2$s.%3$s.%5$s.xclbin", // <kernel>.<target>.<device_versionless>.xclbin
"%1$s/binary_container_1.xclbin", // default for gui projects
"%1$s/%2$s.xclbin", // <kernel>.xclbin
NULL
};
char xclbin_file_name[PATH_MAX];
memset(xclbin_file_name, 0, PATH_MAX);
ino_t aws_ino = 0; // used to avoid errors if an xclbin found via multiple/repeated paths
for (const char **dir = search_dirs; *dir != NULL; dir++) {
struct stat sb;
if (stat(*dir, &sb) == 0 && S_ISDIR(sb.st_mode)) {
for (const char **pattern = aws_file_patterns; *pattern != NULL; pattern++) {
char file_name[PATH_MAX];
memset(file_name, 0, PATH_MAX);
snprintf(file_name, PATH_MAX, *pattern, *dir, xclbin_name.c_str(), mode.c_str(), device_name, device_name_versionless);
if (stat(file_name, &sb) == 0 && S_ISREG(sb.st_mode)) {
char* bindir = strdup(*dir);
if (bindir == NULL) {
printf("Error: Out of Memory\n");
exit(EXIT_FAILURE);
}
if (*xclbin_file_name && sb.st_ino != aws_ino) {
printf("Error: multiple xclbin files discovered:\n %s\n %s\n", file_name, xclbin_file_name);
exit(EXIT_FAILURE);
}
aws_ino = sb.st_ino;
strncpy(xclbin_file_name, file_name, PATH_MAX);
}
}
}
}
ino_t aws4ddr_debug_ino = 0; // used to avoid errors if an xclbin found via multiple/repeated paths
// if no 4ddr_awsxclbin found, check for 4ddr_debug_awsxclbin
if (*xclbin_file_name == '\0') {
const char *awsdebug_device_name = "xilinx_aws-vu9p-f1_4ddr-xpr-2pr-debug_4_0";
const char *awsdebug_device_name_versionless = "xilinx_aws-vu9p-f1_4ddr-xpr-2pr-debug";
for (const char **dir = search_dirs; *dir != NULL; dir++) {
struct stat sb;
if (stat(*dir, &sb) == 0 && S_ISDIR(sb.st_mode)) {
for (const char **pattern = file_patterns; *pattern != NULL; pattern++) {
char file_name[PATH_MAX];
memset(file_name, 0, PATH_MAX);
snprintf(file_name, PATH_MAX, *pattern, *dir, xclbin_name.c_str(), mode.c_str(), awsdebug_device_name, awsdebug_device_name_versionless);
if (stat(file_name, &sb) == 0 && S_ISREG(sb.st_mode)) {
char* bindir = strdup(*dir);
if (bindir == NULL) {
printf("Error: Out of Memory\n");
exit(EXIT_FAILURE);
}
if (*xclbin_file_name && sb.st_ino != aws4ddr_debug_ino) {
printf("Error: multiple xclbin files discovered:\n %s\n %s\n", file_name, xclbin_file_name);
exit(EXIT_FAILURE);
}
aws4ddr_debug_ino = sb.st_ino;
strncpy(xclbin_file_name, file_name, PATH_MAX);
}
}
}
}
}
ino_t aws1ddr_ino = 0; // used to avoid errors if an xclbin found via multiple/repeated paths
// if no 4ddr_awsxclbin found, check for 1ddr_awsxclbin
if (*xclbin_file_name == '\0') {
const char *aws_device_name = "xilinx_aws-vu9p-f1_1ddr-xpr-2pr_4_0";
const char *aws_device_name_versionless = "xilinx_aws-vu9p-f1_1ddr-xpr-2pr";
for (const char **dir = search_dirs; *dir != NULL; dir++) {
struct stat sb;
if (stat(*dir, &sb) == 0 && S_ISDIR(sb.st_mode)) {
for (const char **pattern = file_patterns; *pattern != NULL; pattern++) {
char file_name[PATH_MAX];
memset(file_name, 0, PATH_MAX);
snprintf(file_name, PATH_MAX, *pattern, *dir, xclbin_name.c_str(), mode.c_str(), aws_device_name, aws_device_name_versionless);
if (stat(file_name, &sb) == 0 && S_ISREG(sb.st_mode)) {
char* bindir = strdup(*dir);
if (bindir == NULL) {
printf("Error: Out of Memory\n");
exit(EXIT_FAILURE);
}
if (*xclbin_file_name && sb.st_ino != aws1ddr_ino) {
printf("Error: multiple xclbin files discovered:\n %s\n %s\n", file_name, xclbin_file_name);
exit(EXIT_FAILURE);
}
aws1ddr_ino = sb.st_ino;
strncpy(xclbin_file_name, file_name, PATH_MAX);
}
}
}
}
}
ino_t ino = 0; // used to avoid errors if an xclbin found via multiple/repeated paths
// if no awsxclbin found, check for xclbin
if (*xclbin_file_name == '\0') {
for (const char **dir = search_dirs; *dir != NULL; dir++) {
struct stat sb;
if (stat(*dir, &sb) == 0 && S_ISDIR(sb.st_mode)) {
for (const char **pattern = file_patterns; *pattern != NULL; pattern++) {
char file_name[PATH_MAX];
memset(file_name, 0, PATH_MAX);
snprintf(file_name, PATH_MAX, *pattern, *dir, xclbin_name.c_str(), mode.c_str(), device_name, device_name_versionless);
if (stat(file_name, &sb) == 0 && S_ISREG(sb.st_mode)) {
char* bindir = strdup(*dir);
if (bindir == NULL) {
printf("Error: Out of Memory\n");
exit(EXIT_FAILURE);
}
if (*xclbin_file_name && sb.st_ino != ino) {
printf("Error: multiple xclbin files discovered:\n %s\n %s\n", file_name, xclbin_file_name);
exit(EXIT_FAILURE);
}
ino = sb.st_ino;
strncpy(xclbin_file_name, file_name, PATH_MAX);
}
}
}
}
}
// if no xclbin found, preferred path for error message from xcl_import_binary_file()
if (*xclbin_file_name == '\0') {
snprintf(xclbin_file_name, PATH_MAX, file_patterns[0], *search_dirs, xclbin_name.c_str(), mode.c_str(), device_name);
}
free(device_name);
return (xclbin_file_name);
}
bool is_emulation()
{
bool ret =false;
char *xcl_mode = getenv("XCL_EMULATION_MODE");
if (xcl_mode != NULL){
ret = true;
}
return ret;
}
bool is_hw_emulation()
{
bool ret =false;
char *xcl_mode = getenv("XCL_EMULATION_MODE");
if ((xcl_mode != NULL) && !strcmp(xcl_mode, "hw_emu")){
ret = true;
}
return ret;
}
bool is_xpr_device(const char *device_name) {
const char *output = strstr(device_name,"xpr");
if(output==NULL) {
return false;
}
else {
return true;
}
}
};