Returns the workspace size
| 209 | |
| 210 | // Returns the workspace size |
| 211 | size_t DetectionOutput::getWorkspaceSize(int32_t maxBatchSize) const noexcept |
| 212 | { |
| 213 | return detectionInferenceWorkspaceSize( |
| 214 | param.shareLocation, maxBatchSize, C1, C2, param.numClasses, numPriors, param.topK, mType, mType); |
| 215 | } |
| 216 | |
| 217 | size_t DetectionOutputDynamic::getWorkspaceSize( |
| 218 | PluginTensorDesc const* inputs, int32_t nbInputs, PluginTensorDesc const* outputs, int32_t nbOutputs) const noexcept |
nothing calls this directly
no test coverage detected