| 331 | size_t getHostMemorySize() { return common::getHostMemorySize(); } |
| 332 | |
| 333 | sycl::info::device_type getDeviceType() { |
| 334 | const sycl::device& device = getDevice(); |
| 335 | sycl::info::device_type type = |
| 336 | device.get_info<sycl::info::device::device_type>(); |
| 337 | return type; |
| 338 | } |
| 339 | |
| 340 | bool isHostUnifiedMemory(const sycl::device& device) { |
| 341 | return device.has(sycl::aspect::usm_host_allocations); |
nothing calls this directly
no test coverage detected