| 222 | } |
| 223 | |
| 224 | GPUTarget get_target_from_device(const cl::Device &device) |
| 225 | { |
| 226 | // Query device name size |
| 227 | std::string device_name = device.getInfo<CL_DEVICE_NAME>(); |
| 228 | |
| 229 | return get_target_from_name(device_name); |
| 230 | } |
| 231 | |
| 232 | bool arm_non_uniform_workgroup_supported(const cl::Device &device) |
| 233 | { |
no test coverage detected