sfysfy

Results 1 issues of sfysfy

你好,在 TRT_NMS 的 symbolic 函数中使用了 `TRT::EfficientNMS_TRT`,这看起来是使用了 [efficientNMSPlugin](https://github.com/NVIDIA/TensorRT/tree/main/plugin/efficientNMSPlugin),但这里使用的参数与官方文档中有所不同,添加了代表数据类型的后缀,这是为什么?另外我想知道 TensorRT 中的 Plugin 是如何支持直接在 g.op() 中使用的,我查看了 PyTorch 的官方文档,里面仅给出了 [TorchScript operators](https://pytorch.org/docs/2.2/onnx_torchscript_supported_aten_ops.html) 和 [ONNX standard operator](https://github.com/onnx/onnx/blob/master/docs/Operators.md) ``` out = g.op('TRT::EfficientNMS_TRT', boxes, scores, iou_threshold_f=iou_threshold, score_threshold_f=score_threshold, max_output_boxes_i=max_output_boxes,...