| 393 | } |
| 394 | |
| 395 | port::StatusOr<perftools::gputools::dnn::VersionInfo> |
| 396 | CudnnSupport::GetVersion() { |
| 397 | CudnnVersion version; |
| 398 | TF_RETURN_IF_ERROR(GetLoadedCudnnVersion(&version)); |
| 399 | return perftools::gputools::dnn::VersionInfo( |
| 400 | version.major_version, version.minor_version, version.patch_level); |
| 401 | } |
| 402 | |
| 403 | namespace { |
| 404 |
nothing calls this directly
no test coverage detected