├── README.md ├── custom.onnx ├── figs ├── 1.png ├── 10.png ├── 11.png ├── 12.png ├── 13.png ├── 14.png ├── 15.png ├── 16.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png ├── 8.png ├── 9.png └── figure.txt ├── lCustomPlugin.cpp ├── lCustomPlugin.h ├── nocompile ├── CMakeLists.txt ├── PointNetSample.cpp ├── Pointnet.onnx ├── README.md └── include │ ├── Custom.cu │ ├── Custom.h │ ├── lCustomPlugin.cpp │ └── lCustomPlugin.h └── plugin ├── README.md └── plugin.jpg /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangcheng828/TensorRT-Plugin/HEAD/README.md -------------------------------------------------------------------------------- /custom.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangcheng828/TensorRT-Plugin/HEAD/custom.onnx -------------------------------------------------------------------------------- /figs/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangcheng828/TensorRT-Plugin/HEAD/figs/1.png -------------------------------------------------------------------------------- /figs/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangcheng828/TensorRT-Plugin/HEAD/figs/10.png -------------------------------------------------------------------------------- /figs/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangcheng828/TensorRT-Plugin/HEAD/figs/11.png -------------------------------------------------------------------------------- /figs/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangcheng828/TensorRT-Plugin/HEAD/figs/12.png -------------------------------------------------------------------------------- /figs/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangcheng828/TensorRT-Plugin/HEAD/figs/13.png -------------------------------------------------------------------------------- /figs/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangcheng828/TensorRT-Plugin/HEAD/figs/14.png -------------------------------------------------------------------------------- /figs/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangcheng828/TensorRT-Plugin/HEAD/figs/15.png -------------------------------------------------------------------------------- /figs/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangcheng828/TensorRT-Plugin/HEAD/figs/16.png -------------------------------------------------------------------------------- /figs/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangcheng828/TensorRT-Plugin/HEAD/figs/2.png -------------------------------------------------------------------------------- /figs/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangcheng828/TensorRT-Plugin/HEAD/figs/3.png -------------------------------------------------------------------------------- /figs/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangcheng828/TensorRT-Plugin/HEAD/figs/4.png -------------------------------------------------------------------------------- /figs/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangcheng828/TensorRT-Plugin/HEAD/figs/5.png -------------------------------------------------------------------------------- /figs/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangcheng828/TensorRT-Plugin/HEAD/figs/6.png -------------------------------------------------------------------------------- /figs/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangcheng828/TensorRT-Plugin/HEAD/figs/7.png -------------------------------------------------------------------------------- /figs/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangcheng828/TensorRT-Plugin/HEAD/figs/8.png -------------------------------------------------------------------------------- /figs/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangcheng828/TensorRT-Plugin/HEAD/figs/9.png -------------------------------------------------------------------------------- /figs/figure.txt: -------------------------------------------------------------------------------- 1 | sasas 2 | -------------------------------------------------------------------------------- /lCustomPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangcheng828/TensorRT-Plugin/HEAD/lCustomPlugin.cpp -------------------------------------------------------------------------------- /lCustomPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangcheng828/TensorRT-Plugin/HEAD/lCustomPlugin.h -------------------------------------------------------------------------------- /nocompile/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangcheng828/TensorRT-Plugin/HEAD/nocompile/CMakeLists.txt -------------------------------------------------------------------------------- /nocompile/PointNetSample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangcheng828/TensorRT-Plugin/HEAD/nocompile/PointNetSample.cpp -------------------------------------------------------------------------------- /nocompile/Pointnet.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangcheng828/TensorRT-Plugin/HEAD/nocompile/Pointnet.onnx -------------------------------------------------------------------------------- /nocompile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangcheng828/TensorRT-Plugin/HEAD/nocompile/README.md -------------------------------------------------------------------------------- /nocompile/include/Custom.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangcheng828/TensorRT-Plugin/HEAD/nocompile/include/Custom.cu -------------------------------------------------------------------------------- /nocompile/include/Custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangcheng828/TensorRT-Plugin/HEAD/nocompile/include/Custom.h -------------------------------------------------------------------------------- /nocompile/include/lCustomPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangcheng828/TensorRT-Plugin/HEAD/nocompile/include/lCustomPlugin.cpp -------------------------------------------------------------------------------- /nocompile/include/lCustomPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangcheng828/TensorRT-Plugin/HEAD/nocompile/include/lCustomPlugin.h -------------------------------------------------------------------------------- /plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangcheng828/TensorRT-Plugin/HEAD/plugin/README.md -------------------------------------------------------------------------------- /plugin/plugin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangcheng828/TensorRT-Plugin/HEAD/plugin/plugin.jpg --------------------------------------------------------------------------------