| 177 | void Reorg::detachFromContext() noexcept {} |
| 178 | |
| 179 | IPluginV2Ext* Reorg::clone() const noexcept |
| 180 | { |
| 181 | try |
| 182 | { |
| 183 | IPluginV2Ext* plugin = new Reorg(C, H, W, stride); |
| 184 | plugin->setPluginNamespace(mPluginNamespace.c_str()); |
| 185 | return plugin; |
| 186 | } |
| 187 | catch (std::exception const& e) |
| 188 | { |
| 189 | caughtError(e); |
| 190 | } |
| 191 | return nullptr; |
| 192 | } |
| 193 | |
| 194 | ReorgPluginCreator::ReorgPluginCreator() |
| 195 | { |
nothing calls this directly
no test coverage detected