| 339 | } |
| 340 | |
| 341 | FlattenConcatPluginCreator::FlattenConcatPluginCreator() |
| 342 | { |
| 343 | mPluginAttributes.clear(); |
| 344 | mPluginAttributes.emplace_back(PluginField("axis", nullptr, PluginFieldType::kINT32, 1)); |
| 345 | mPluginAttributes.emplace_back(PluginField("ignoreBatch", nullptr, PluginFieldType::kINT32, 1)); |
| 346 | |
| 347 | mFC.nbFields = mPluginAttributes.size(); |
| 348 | mFC.fields = mPluginAttributes.data(); |
| 349 | } |
| 350 | |
| 351 | char const* FlattenConcatPluginCreator::getPluginName() const noexcept |
| 352 | { |
nothing calls this directly
no test coverage detected