-
Notifications
You must be signed in to change notification settings - Fork 102
/
source.cpp
70 lines (58 loc) · 1.62 KB
/
source.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
/*
SYCL Academy (c)
SYCL Academy is licensed under a Creative Commons
Attribution-ShareAlike 4.0 International License.
You should have received a copy of the license along with this
work. If not, see <http://creativecommons.org/licenses/by-sa/4.0/>.
* SYCL Quick Reference
* ~~~~~~~~~~~~~~~~~~~~
*
* // Include SYCL header
* #include <sycl/sycl.hpp>
*
* // Default construct a queue
* auto q = sycl::queue{};
*
* // Allocate device memory
* auto * devPtr = sycl::malloc_device<int>(mycount, q);
*
* // Memcpy
* q.memcpy(dst, src, sizeof(T)*n).wait();
* // (dst and src are pointers)
*
* // Free memory
* sycl::free(ptr, q);
*
* // Construct a buffer of size n associated with ptr
* auto buf = sycl::buffer{ptr, sycl::range{n}};
*
* // Submit a kernel
* q.submit([&](sycl::handler &cgh) {
* cgh.single_task([=](){
* // Some kernel code
* });
* }).wait();
*
* // Construct an accessor for buf
* // (must be done within command group)
* auto acc = sycl::accessor{buf, cgh};
* auto acc = sycl::accessor{buf, cgh, sycl::read_only};
* auto acc = sycl::accessor{buf, cgh, sycl::write_only};
* auto acc = sycl::accessor{buf, cgh, sycl::no_init};
*
*/
#define CATCH_CONFIG_MAIN
#include <catch2/catch.hpp>
TEST_CASE("scalar_add_usm", "scalar_add_source") {
int a = 18, b = 24, r = 0;
// Task: Compute a+b on the SYCL device using USM
r = a + b;
REQUIRE(r == 42);
}
TEST_CASE("scalar_add_buff_acc", "scalar_add_source") {
int a = 18, b = 24, r = 0;
// Task: Compute a+b on the SYCL device using the buffer
// accessor memory model
r = a + b;
REQUIRE(r == 42);
}