| 192 | } |
| 193 | |
| 194 | string getPlatformName(const sycl::device& device) { |
| 195 | std::string platStr = |
| 196 | device.get_platform().get_info<sycl::info::platform::name>(); |
| 197 | // return platformMap(platStr); |
| 198 | return platStr; |
| 199 | } |
| 200 | |
| 201 | typedef pair<unsigned, unsigned> device_id_t; |
| 202 |
no outgoing calls
no test coverage detected