Lines Matching refs:sycl
14 namespace sycl namespace
30 const ::sycl::device syclDevice_;
68 …werASCIIPrintf(sviewer, "[%d] device: %s\n", rank, syclDevice_.get_info<::sycl::info::device::name… in view()
70 …ewerASCIIPrintf(sviewer, "-> Device vendor: %s\n", syclDevice_.get_info<::sycl::info::device::vend… in view()
84 … *static_cast<std::size_t *>(value) = syclDevice_.get_info<::sycl::info::device::local_mem_size>(); in getattribute()
92 static ::sycl::device chooseSYCLDevice_(int id) in chooseSYCLDevice_()
95 return ::sycl::device(::sycl::cpu_selector_v); in chooseSYCLDevice_()
97 return ::sycl::device::get_devices(::sycl::info::device_type::gpu)[id]; in chooseSYCLDevice_()
114 auto Q = ::sycl::queue(syclDevice_); in isMPISyclAware_()
115 dbuf = ::sycl::malloc_device<int>(bufSize, Q); in isMPISyclAware_()
126 ::sycl::free(dbuf, Q); in isMPISyclAware_()
150 …std::vector<::sycl::device> gpu_devices = ::sycl::device::get_devices(::sycl::info::device_type::g… in initialize()