forked from codeplaysoftware/syclacademy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsolution.cpp
80 lines (62 loc) · 2.03 KB
/
solution.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
/*
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/>.
*/
#define CATCH_CONFIG_MAIN
#include <catch2/catch.hpp>
#include <CL/sycl.hpp>
struct gpu_selector : public cl::sycl::device_selector {
int operator()(const cl::sycl::device& d) const override {
if (d.is_gpu()) {
return 1;
} else {
return -1;
}
}
};
TEST_CASE("default_selector", "sycl_02_configuring_a_queue") {
try {
cl::sycl::queue defaultQueue;
std::cout
<< "Default selector chose: "
<< defaultQueue.get_device().get_info<cl::sycl::info::device::name>()
<< "\n";
} catch (...) {
std::cout << "No device could be found\n";
}
REQUIRE(true);
}
TEST_CASE("gpu_selector", "sycl_02_configuring_a_queue") {
try {
cl::sycl::queue gpuQueue(gpu_selector{});
std::cout << "GPU selector chose: "
<< gpuQueue.get_device().get_info<cl::sycl::info::device::name>()
<< "\n";
} catch (...) {
std::cout << "No GPU could be found\n";
}
REQUIRE(true);
}
TEST_CASE("print_info", "sycl_02_configuring_a_queue") {
try {
cl::sycl::queue defaultQueue;
auto dev = defaultQueue.get_device();
std::cout << "Device name : "
<< dev.get_info<cl::sycl::info::device::name>() << "\n";
std::cout << "Vendor name : "
<< dev.get_info<cl::sycl::info::device::vendor>() << "\n";
std::cout << "Driver version : "
<< dev.get_info<cl::sycl::info::device::driver_version>() << "\n";
std::cout << "Address bits : "
<< dev.get_info<cl::sycl::info::device::address_bits>() << "\n";
std::cout << "Max work-group size : "
<< dev.get_info<cl::sycl::info::device::max_work_group_size>()
<< "\n";
} catch (...) {
std::cout << "No device could be found\n";
}
REQUIRE(true);
}