| 251 | } |
| 252 | |
| 253 | string getPlatformInfo() noexcept { |
| 254 | string driverVersion = getDriverVersion(); |
| 255 | string cudaRuntime = getCUDARuntimeVersion(); |
| 256 | string platform = "Platform: CUDA Runtime " + cudaRuntime; |
| 257 | if (!driverVersion.empty()) { |
| 258 | platform.append(", Driver: "); |
| 259 | platform.append(driverVersion); |
| 260 | } |
| 261 | platform.append("\n"); |
| 262 | return platform; |
| 263 | } |
| 264 | |
| 265 | bool isDoubleSupported(int device) noexcept { |
| 266 | UNUSED(device); |
no test coverage detected