(layer, plugin_creator: trt.IPluginCreator,
plugin_name: str, pfc: trt.PluginFieldCollection)
| 664 | |
| 665 | |
| 666 | def _add_plugin_info(layer, plugin_creator: trt.IPluginCreator, |
| 667 | plugin_name: str, pfc: trt.PluginFieldCollection) -> None: |
| 668 | plugin_info = PluginInfo(plugin_creator, plugin_name, pfc) |
| 669 | set_plugin_info(default_net().trt_network, layer.name, plugin_info) |
| 670 | |
| 671 | |
| 672 | class RotaryScalingType(IntEnum): |
no test coverage detected