-
Notifications
You must be signed in to change notification settings - Fork 102
/
index.html
452 lines (413 loc) · 14.3 KB
/
index.html
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
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="../common-revealjs/css/reveal.css">
<link rel="stylesheet" href="../common-revealjs/css/theme/white.css">
<link rel="stylesheet" href="../common-revealjs/css/custom.css">
<script>
// This is needed when printing the slides to pdf
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? '../common-revealjs/css/print/pdf.css' : '../common-revealjs/css/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
<script>
// This is used to display the static images on each slide,
// See global-images in this html file and custom.css
(function() {
if(window.addEventListener) {
window.addEventListener('load', () => {
let slides = document.getElementsByClassName("slide-background");
if (slides.length === 0) {
slides = document.getElementsByClassName("pdf-page")
}
// Insert global images on each slide
for(let i = 0, max = slides.length; i < max; i++) {
let cln = document.getElementById("global-images").cloneNode(true);
cln.removeAttribute("id");
slides[i].appendChild(cln);
}
// Remove top level global images
let elem = document.getElementById("global-images");
elem.parentElement.removeChild(elem);
}, false);
}
})();
</script>
</head>
<body>
<div class="reveal">
<div class="slides">
<div id="global-images" class="global-images">
<img src="../common-revealjs/images/sycl_academy.png" />
<img src="../common-revealjs/images/sycl_logo.png" />
<img src="../common-revealjs/images/trademarks.png" />
</div>
<!--Slide 1-->
<section class="hbox" data-markdown>
## Handling Errors and Debugging
</section>
<!--Slide 2-->
<section class="hbox" data-markdown>
## Learning Objectives
* Learn about how SYCL handles errors
* Learn about the difference between synchronous and asynchronous exceptions
* Learn how to handle exceptions and retrieve further information
* Learn about the host device and how to use it
</section>
<!--Slide 3-->
<section>
<div class="hbox" data-markdown>
#### SYCL exceptions
</div>
<div class="section" data-markdown>
* In SYCL errors are handled by throwing exceptions.
* It is crucial that these errors are handled,
otherwise your application could fail in unpredictable ways.
* In SYCL there are two kinds of error:
* Synchronous errors (thrown in user thread) .
* Asynchronous errors (thrown by the SYCL scheduler).
</div>
</section>
<section>
<div class="hbox" data-markdown>
#### Handling errors
</div>
<div class="hbox" >
<code class="code-60pc"><pre>
int main() {
queue q();
/* Synchronous code */
q.submit([&](handler &cgh) {
/* Synchronous code */
cgh.parallel_for<add>(bufO.get_range(), [=](id<1> i) {
/* Asynchronous code */
});
});
}
</code></pre>
</div>
<div class="bottom-bullets" data-markdown>
* Kernels run asynchronously on the device, and will throw asynchronous errors.
* Everything else runs synchronously on the host, and will throw synchronous errors.
</div>
</section>
<!--Slide 4-->
<section>
<div class="hbox" data-markdown>
#### SYCL exceptions
</div>
<div class="hbox" data-markdown>
![SYCL](../common-revealjs/images/sycl-exceptions.png "SYCL")
</div>
</section>
<!--Slide 5-->
<section>
<div class="hbox" data-markdown>
#### Handling errors
</div>
<div class="hbox" >
<code class="code-60pc"><pre>
class add;
int main() {
queue q();
/* Synchronous code */
q.submit([&](handler &cgh) {
/* Synchronous code */
cgh.single_task<add>([=](id<1> i) {
/* Asynchronous code */
});
}).wait();
}
</code></pre>
</div>
<div class="bottom-bullets" data-markdown>
* Code on the device runs asynchronously
* If errors are not handled, the application can fail:
* SYCL 1.2.1 application will fail silently.
* SYCL 2020 provides a default async handler that will call `std::terminate`
when an asynchronous error is thrown.
</div>
</section>
<!--Slide 6-->
<section>
<div class="hbox">
<code class="code-60pc"><pre>
class add;
int main() {
std::vector<float> dA{ 7, 5, 16, 8 }, dB{ 8, 16, 5, 7 }, dO{ 0, 0, 0, 0 };
<mark>try {</mark>
queue gpuQueue(gpu_selector{});
buffer bufA{dA};
buffer bufB{dB};
buffer bufO{dO};
gpuQueue.submit([&](handler &cgh) {
auto inA = accessor{bufA, cgh, read_only};
auto inB = accessor{bufB, cgh, read_only};
auto out = accessor{bufO, cgh, write_only};
cgh.parallel_for<add>(bufO.get_range(), [=](id<1> i) {
out[i] = inA[i] + inB[i];
});
}).wait();
<mark>} catch (...) { /* handle errors */ }</mark>
}
</code></pre>
</div>
<div class="bottom-bullets" data-markdown>
* Synchronous errors are typically thrown by SYCL API functions.
* In order to handle all SYCL errors you must wrap everything in a try-catch block.
</div>
</section>
<!--Slide 7-->
<section>
<div class="hbox">
<code class="code-60pc"><pre>
class add;
int main() {
std::vector<float> dA{ 7, 5, 16, 8 }, dB{ 8, 16, 5, 7 }, dO{ 0, 0, 0, 0 };
try{
queue gpuQueue(gpu_selector{}, <mark>async_handler{}</mark>);
buffer bufA{dA};
buffer bufB{dB};
buffer bufO{dO};
gpuQueue.submit([&](handler &cgh) {
auto inA = accessor{bufA, cgh, read_only};
auto inB = accessor{bufB, cgh, read_only};
auto out = accessor{bufO, cgh, write_only};
cgh.parallel_for<add>(bufO.get_range(), [=](id<1> i) {
out[i] = inA[i] + inB[i];
});
}).wait();
<mark>gpuQueue.throw_asynchronous();</mark>
} catch (...) { /* handle errors */
}
</code></pre>
</div>
<div class="bottom-bullets" data-markdown>
* Asynchronous errors errors that may have occurred will be thrown after a command group has been submitted to a `queue`.
* To handle these errors you must provide an async handler when constructing the queue object.
* Then you must also call the `throw_asynchronous` or `wait_and_throw` member functions of the `queue` class.
* This will pass the exceptions to the async handler in the user thread so they can be thrown.
</div>
</section>
<!--Slide 8-->
<section>
<div class="hbox">
<code class="code-60pc"><pre>
class add;
int main() {
std::vector<float> dA{ 7, 5, 16, 8 }, dB{ 8, 16, 5, 7 }, dO{ 0, 0, 0, 0 };
try{
queue gpuQueue(gpu_selector{}, <mark>[=](exception_list eL) {
for (auto e : eL) { std::rethrow_exception(e); }
}</mark>);
buffer bufA{dA};
buffer bufB{dB};
buffer bufO{dO};
gpuQueue.submit([&](handler &cgh) {
auto inA = accessor{bufA, cgh, read_only};
auto inB = accessor{bufB, cgh, read_only};
auto out = accessor{bufO, cgh, write_only};
cgh.parallel_for<add>(bufO.get_range(), [=](id<1> i) {
out[i] = inA[i] + inB[i];
});
}).wait();
gpuQueue.throw_asynchronous();
} catch (...) { /* handle errors */ }
}
</code></pre>
</div>
<div class="bottom-bullets" data-markdown>
* The async handler is a C++ lambda or function object that takes as a parameter an ``exception_list``
* The exception_list class is a wrapper around a list of ``exception_ptrs`` which can be iterated over
* The exception_ptrs can be rethrown by passing them to ``std::rethrow_exception``
</div>
</section>
<!--Slide 9-->
<section>
<div class="hbox">
<code class="code-60pc"><pre>
int main() {
std::vector<float> dA{ 7, 5, 16, 8 }, dB{ 8, 16, 5, 7 }, dO{ 0, 0, 0, 0 };
try {
queue gpuQueue(gpu_selector{}, [=](exception_list eL) {
for (auto e : eL) { std::rethrow_exception(e); }
});
...
gpuQueue.throw_asynchronous();
} catch (const <mark>std::exception</mark>& e) {
<mark>std::cout << “Exception caught: ” << e.what()
<< std::endl;</mark>
}
}
</code></pre>
</div>
<div class="bottom-bullets" data-markdown>
* Once rethrown and caught, a SYCL exception can provide information about the error
* The ``what`` member function will return a string with more details
</div>
</section>
<!--Slide 10-->
<section>
<div class="hbox">
<code class="code-60pc"><pre>
int main() {
std::vector<float> dA{ 7, 5, 16, 8 }, dB{ 8, 16, 5, 7 }, dO{ 0, 0, 0, 0 };
try {
queue gpuQueue(gpu_selector{}, [=](exception_list eL) {
for (auto e : eL) { std::rethrow_exception(e); }
});
...
gpuQueue.throw_asynchronous();
} catch (const <mark>sycl::exception</mark>& e) {
std::cout << “Exception caught: ” << e.what();
<mark>std:: cout << “ With OpenCL error code: ”</mark>
<mark><< e.get_cl_code() << std::endl;</mark>
}
}
</code></pre>
</div>
<div class="bottom-bullets" data-markdown>
* In SYCL 1.2.1, if the exception has an OpenCL error code associated with it
this can be retrieved by calling the `get_cl_code` member function
* If there is no OpenCL error code this will return `CL_SUCCESS`
* SYCL 2020 provides the `error_category_for` templated free function
that allows checking for the category of the exception
depending on the backend used (e.g. `backend::opencl`),
and `e.code().value()` will correspond to the backend error code.
</div>
</section>
<!--Slide 11-->
<section>
<div class="hbox">
<code class="code-60pc"><pre>
int main() {
std::vector<float> dA{ 7, 5, 16, 8 }, dB{ 8, 16, 5, 7 }, dO{ 0, 0, 0, 0 };
queue gpuQueue(gpu_selector{}, [=](exception_list eL) {
for (auto e : eL) { std::rethrow_exception(e); }
});
context gpuContext = gpuQueue.get_context();
try {
...
gpuQueue.wait_and_throw();
} catch (const sycl::exception& e) {
<mark>if (e.has_context()) {</mark>
<mark>if (e.get_context() == gpuContext) {</mark>
<mark>/* handle error */</mark>
<mark>}</mark>
<mark>}</mark>
}
}
</code></pre>
</div>
<div class="bottom-bullets" data-markdown>
* The `has_context` member function will tell you if there is a SYCL context associated with the error
* If that returns true then the `get_context` member function will return the associated SYCL context object
</div>
</section>
<!--Slide 12-->
<section>
<div class="hbox" data-markdown>
## Exception Types
</div>
</section>
<!--Slide 13-->
<section>
<div class="hbox" data-markdown>
* In SYCL 1.2.1 there are a number of different exception types that inherit from `std::exception`
* E.g. `runtime_error`, `kernel_error`
* SYCL 2020 only has a single `sycl::exception` type
which provides different error codes
* E.g. `errc::runtime`, `errc::kernel`
</div>
</section>
<!--Slide 14-->
<section>
<div class="hbox" data-markdown>
## Debugging SYCL Kernel Functions
</div>
</section>
<!--Slide 15-->
<section>
<div class="hbox" data-markdown>
* Every SYCL 1.2.1 implementation is required to provide a host device
* This device executes native C++ code but is guaranteed to emulate the SYCL execution and memory model
* This means you can debug a SYCL kernel function by switching to the host device and using a standard C++ debugger
* For example gdb
</div>
</section>
<!--Slide 16-->
<section>
<div class="hbox" data-markdown>
* SYCL 2020 only guarantees that a device will always be available,
and users can query the `host_debuggable` device aspect
to check whether they can use the same functionality
as the SYCL 1.2.1 host device
</div>
</section>
<!--Slide 17-->
<section>
<div class="hbox">
<code class="code-60pc"><pre>
class add;
int main() {
std::vector<float> dA{ 7, 5, 16, 8 }, dB{ 8, 16, 5, 7 }, dO{ 0, 0, 0, 0 };
try{
queue <mark>hostQueue(aspect_selector<aspect::host_debuggable>()</mark>, async_handler{});
buffer bufA{dA};
buffer bufB{dB};
buffer bufO{dO};
hostQueue.submit([&](handler &cgh) {
auto inA = accessor{bufA, cgh, read_only};
auto inB = accessor{bufB, cgh, read_only};
auto out = accessor{bufO, cgh, write_only};
cgh.parallel_for<add>(bufO.get_range(), [=](id<1> i) {
out[i] = inA[i] + inB[i];
});
});
hostQueue.wait_and_throw();
} catch (...) { /* handle errors */ }
}
</code></pre>
</div>
<div class="bottom-bullets" data-markdown>
* Any SYCL application can be debugged on the host device by switching the queue for a host queue
* Replacing the device selector for the `aspect_selector`
will ensure that the queue submits all work to the device
with the requested aspects,
in this case a host debuggable device
* In SYCL 1.2.1, `host_selector` would be used instead, deprecated in SYCL 2020
</div>
</section>
<!--Slide 17-->
<section>
<div class="hbox" data-markdown>
## Questions
</div>
</section>
<!--Slide 18-->
<section>
<div class="hbox" data-markdown>
#### Exercise
</div>
<div class="container" data-markdown>
Code_Exercises/Exercise_4_Handling_Errors/source
</div>
<div class="container" data-markdown>
Add error handling to a SYCL application for both synchronous and asynchronous errors.
</div>
</section>
</div>
</div>
<script src="../common-revealjs/js/reveal.js"></script>
<script src="../common-revealjs/plugin/markdown/marked.js"></script>
<script src="../common-revealjs/plugin/markdown/markdown.js"></script>
<script src="../common-revealjs/plugin/notes/notes.js"></script>
<script>
Reveal.initialize();
Reveal.configure({ slideNumber: true });
</script>
</body>
</html>