#include "pluginsRT/RegionRT.h" #include "pluginsRT/RouteRT.h" #include "pluginsRT/ReshapeRT.h" #include "pluginsRT/FlattenConcatRT.h" #include "pluginsRT/YoloRT.h" // Static class fields initialization namespace tk { namespace dnn { nvinfer1::PluginFieldCollection RegionRTCreator::mFC{}; std::vector RegionRTCreator::mPluginAttributes; REGISTER_TENSORRT_PLUGIN(RegionRTCreator); nvinfer1::PluginFieldCollection RouteRTCreator::mFC{}; std::vector RouteRTCreator::mPluginAttributes; REGISTER_TENSORRT_PLUGIN(RouteRTCreator); nvinfer1::PluginFieldCollection ReshapeRTCreator::mFC{}; std::vector ReshapeRTCreator::mPluginAttributes; REGISTER_TENSORRT_PLUGIN(ReshapeRTCreator); nvinfer1::PluginFieldCollection FlattenConcatRTCreator::mFC{}; std::vector FlattenConcatRTCreator::mPluginAttributes; REGISTER_TENSORRT_PLUGIN(FlattenConcatRTCreator); nvinfer1::PluginFieldCollection YoloRTCreator::mFC{}; std::vector YoloRTCreator::mPluginAttributes; REGISTER_TENSORRT_PLUGIN(YoloRTCreator); }}