| 149 | } |
| 150 | |
| 151 | IPluginV2DynamicExt* EfficientNMSPlugin::clone() const noexcept |
| 152 | { |
| 153 | try |
| 154 | { |
| 155 | auto* plugin = new EfficientNMSPlugin(mParam); |
| 156 | plugin->setPluginNamespace(mNamespace.c_str()); |
| 157 | return plugin; |
| 158 | } |
| 159 | catch (std::exception const& e) |
| 160 | { |
| 161 | caughtError(e); |
| 162 | } |
| 163 | return nullptr; |
| 164 | } |
| 165 | |
| 166 | DimsExprs EfficientNMSPlugin::getOutputDimensions( |
| 167 | int32_t outputIndex, DimsExprs const* inputs, int32_t nbInputs, IExprBuilder& exprBuilder) noexcept |
nothing calls this directly
no test coverage detected