| 366 | nvinfer1::INetworkDefinition const& network, std::ostream& err); |
| 367 | |
| 368 | ~RndInt8Calibrator() override |
| 369 | { |
| 370 | for (auto& elem : mInputDeviceBuffers) |
| 371 | { |
| 372 | cudaCheck(cudaFree(elem.second), mErr); |
| 373 | } |
| 374 | } |
| 375 | |
| 376 | bool getBatch(void* bindings[], char const* names[], int32_t nbBindings) noexcept override; |
| 377 |
nothing calls this directly
no test coverage detected