| 192 | } |
| 193 | |
| 194 | ReorgPluginCreator::ReorgPluginCreator() |
| 195 | { |
| 196 | mPluginAttributes.clear(); |
| 197 | mPluginAttributes.emplace_back(PluginField("stride", nullptr, PluginFieldType::kINT32, 1)); |
| 198 | |
| 199 | mFC.nbFields = mPluginAttributes.size(); |
| 200 | mFC.fields = mPluginAttributes.data(); |
| 201 | } |
| 202 | |
| 203 | char const* ReorgPluginCreator::getPluginName() const noexcept |
| 204 | { |
nothing calls this directly
no test coverage detected