When I use the command “/usr/local/TensorRT_8.6.1/bin/trtexec --loadEngine=kep_deblur_slow_720x1280_fp16.trt --avgRuns=1000 --staticPlugins=/usr/local/TensorRT_8.6.1/plugin/libnvinfer_plugin.so --streams=8 --useCudaGraph”
the output is:
[07/03/2024-17:14:06] [I] Throughput: 7.13357 qps
[07/03/2024-17:14:06] [I] Latency: min = 147.254 ms, max = 1021.66 ms, mean = 843.216 ms, median = 1014.76 ms, percentile(90%) = 1020.67 ms, percentile(95%) = 1021.03 ms, percentile(99%) = 1021.66 ms
And when I use the command “ncu /usr/local/TensorRT_8.6.1/bin/trtexec --loadEngine=kep_deblur_slow_720x1280_fp16.trt --avgRuns=1000 --staticPlugins=/usr/local/TensorRT_8.6.1/plugin/libnvinfer_plugin.so --streams=8 --useCudaGraph”
the output is:
[07/03/2024-17:08:38] [I] Throughput: 12.2562 qps
[07/03/2024-17:08:38] [I] Latency: min = 82.3564 ms, max = 563.388 ms, mean = 409.962 ms, median = 443.677 ms, percentile(90%) = 481.955 ms, percentile(95%) = 549.321 ms, percentile(99%) = 563.388 ms
Why is the Throughput increased from 7.13357 qps to 12.2562 qps when running ncu? Is the Throughput output inaccurate when using ncu?