| 192 | } |
| 193 | |
| 194 | string getPlatformName(const Device& device) { |
| 195 | const Platform platform(device.getInfo<CL_DEVICE_PLATFORM>()); |
| 196 | string platStr = platform.getInfo<CL_PLATFORM_NAME>(); |
| 197 | return platformMap(platStr); |
| 198 | } |
| 199 | |
| 200 | typedef pair<unsigned, unsigned> device_id_t; |
| 201 |
no test coverage detected