| 65 | } |
| 66 | |
| 67 | Version getCudnnVersion(const LibHandle& handle) { |
| 68 | std::function<size_t()> fptr(reinterpret_cast<size_t (*)()>( |
| 69 | common::getFunctionPointer(handle, "cudnnGetVersion"))); |
| 70 | size_t v = fptr(); |
| 71 | |
| 72 | return cudnnVersionComponents(v); |
| 73 | } |
| 74 | |
| 75 | cudnnModule::cudnnModule() |
| 76 | : module({"cudnn"}, {"", "64_8", "64_7", "64_6", "64_5", "64_4"}, {""}, |
nothing calls this directly
no test coverage detected