tensorRT_Pro
tensorRT_Pro copied to clipboard
HighPerformance
老师您好,HighPerformance.hpp这个高性能和项目里其他正常的实现,主要有什么区别呀?谢谢!
另外在app_high_performance.cpp#L83 调用 connect(pose, output); 是不是写的有点问题,输入的参数顺序反了?pose是输入,output是输出。
void connect(Node& output, Node& input, int max_cache=30); 引用自 https://github.com/shouxieai/tensorRT_Pro/blob/f24e4921e23e71d16771ab7d4df601f71da7dac2/src/application/app_high_performance/high_performance.hpp#L141
大致明白了,HighPerformance实现了各个子任务有依赖关系时候的高效连接,PoseNode pose节点的输出是作为OutputNode output节点的输入。
是的是的,这个里面的代码是一个思想实验
请问这个有什么样的场景会用到这种调用结构吗