| 266 | } |
| 267 | |
| 268 | void shutdownUffParser() |
| 269 | { |
| 270 | if (!initNvparsers()) |
| 271 | { |
| 272 | return; |
| 273 | } |
| 274 | ASSERT(pShutdownUffLibrary != nullptr); |
| 275 | pShutdownUffLibrary(); |
| 276 | } |
| 277 | |
| 278 | using time_point = std::chrono::time_point<std::chrono::high_resolution_clock>; |
| 279 | using duration = std::chrono::duration<float>; |
nothing calls this directly
no test coverage detected