| 711 | ///////////////////////////////////////////////////////// |
| 712 | |
| 713 | FCPluginDynamicCreator::FCPluginDynamicCreator() |
| 714 | { |
| 715 | mPluginAttributes.clear(); |
| 716 | mPluginAttributes.emplace_back(PluginField("out_dims", nullptr, PluginFieldType::kINT32, 1)); |
| 717 | mPluginAttributes.emplace_back(PluginField("type_id", nullptr, PluginFieldType::kINT32, 1)); |
| 718 | mPluginAttributes.emplace_back(PluginField("W", nullptr, PluginFieldType::kFLOAT32, 1)); |
| 719 | |
| 720 | mFC.nbFields = mPluginAttributes.size(); |
| 721 | mFC.fields = mPluginAttributes.data(); |
| 722 | } |
| 723 | |
| 724 | char const* FCPluginDynamicCreator::getPluginName() const noexcept |
| 725 | { |
nothing calls this directly
no test coverage detected