forked from jeffhammond/stencil-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
prk_sycl.h
63 lines (51 loc) · 2 KB
/
prk_sycl.h
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
#ifndef PRK_SYCL_HPP
#define PRK_SYCL_HPP
#include "CL/sycl.hpp"
namespace sycl = cl::sycl;
namespace prk {
// There seems to be an issue with the clang CUDA/HIP toolchains not having
// std::abort() available
void Abort(void) {
#if defined(HIPSYCL_PLATFORM_CUDA) || defined(HIPSYCL_PLATFORM_HCC)
abort();
#else
std::abort();
#endif
}
namespace SYCL {
void print_device_platform(const sycl::queue & q) {
#if ! ( defined(TRISYCL) || defined(__HIPSYCL__) )
auto d = q.get_device();
auto p = d.get_platform();
std::cout << "SYCL Platform: " << p.get_info<sycl::info::platform::name>() << std::endl;
std::cout << "SYCL Device: " << d.get_info<sycl::info::device::name>() << std::endl;
//std::cout << "max_work_item_dimensions:" << d.get_info<sycl::info::device::max_work_item_dimensions>() << std::endl;
//auto m = d.get_info<sycl::info::device::max_work_item_sizes>();
//std::cout << "max_work_item_sizes:" << m[0] << "," << m[1] << "," << m[2] << std::endl;
//std::cout << "max_work_group_size:" << d.get_info<sycl::info::device::max_work_group_size>() << std::endl;
#endif
}
size_t get_max_work_items(const sycl::queue & q) {
auto d = q.get_device();
return d.get_info<sycl::info::device::max_work_group_size>();
}
bool has_fp64(const sycl::queue & q) {
#if 0
return false;
#else
return true;
#endif
}
void print_exception_details(sycl::exception & e) {
std::cout << e.what() << std::endl;
#ifdef __COMPUTECPP__
std::cout << e.get_file_name() << std::endl;
std::cout << e.get_line_number() << std::endl;
std::cout << e.get_description() << std::endl;
std::cout << e.get_cl_error_message() << std::endl;
std::cout << e.get_cl_code() << std::endl;
#endif
}
} // namespace SYCL
} // namespace prk
#endif // PRK_SYCL_HPP