Tool/software:
Hi TI
I was working on an application with following perf stats:
GRAPH: app_btc_seg_cam_graph (#nodes = 7, #executions = 371)
NODE: CAPTURE1: capture_node: avg = 20597 usecs, min/max = 116 / 75501 usecs, #executions = 371
NODE: A72-0: colorConv_node: avg = 3204 usecs, min/max = 2953 / 3723 usecs, #executions = 371
NODE: DSS_M2M2: colorConv_NV12_RGBnode: avg = 9599 usecs, min/max = 9298 / 30952 usecs, #executions = 371
NODE: A72-0: Custom : avg = 25857 usecs, min/max = 25372 / 133676 usecs, #executions = 371
NODE: DSS_M2M1: colorConv_RGB_NV12node: avg = 1143 usecs, min/max = 1100 / 2120 usecs, #executions = 371
NODE: VPAC_MSC1: mosaic_node: avg = 1882 usecs, min/max = 1554 / 28407 usecs, #executions = 371
NODE: DISPLAY1: DisplayNode: avg = 10667 usecs, min/max = 93 / 16545 usecs, #executions = 371
PERF: FILEIO: avg = 0 usecs, min/max = 4294967295 / 0 usecs, #executions = 0
PERF: TOTAL: avg = 66663 usecs, min/max = 66028 / 67369 usecs, #executions = 37
PERF: TOTAL: 15. 0 FPS
The same app I tried to commented few nodes and ran again
GRAPH: app_btc_seg_cam_graph (#nodes = 4, #executions = 419)
NODE: CAPTURE1: capture_node: avg = 31976 usecs, min/max = 30285 / 35427 usecs, #executions = 419
NODE: A72-0: colorConv_node: avg = 2316 usecs, min/max = 2260 / 2685 usecs, #executions = 419
NODE: VPAC_MSC1: mosaic_node: avg = 3160 usecs, min/max = 2665 / 33944 usecs, #executions = 419
NODE: DISPLAY1: DisplayNode: avg = 16305 usecs, min/max = 93 / 16651 usecs, #executions = 419
PERF: FILEIO: avg = 0 usecs, min/max = 4294967295 / 0 usecs, #executions = 0
PERF: TOTAL: avg = 66664 usecs, min/max = 66419 / 66924 usecs, #executions = 172
PERF: TOTAL: 15. 0 FPS
I have observed that the time taken for my capture node has increased from 20597 usecs to 31976 usecs.
I have experimented with the BUFFERQ depth as well for the subsequent custom node after capture node.But still the same behaviour.
I have observed the same issue with other applications as well.Kindly find the perf stats for other application in the below text:
/cfs-file/__key/communityserver-discussions-components-files/791/ti_5F00_query.txt
What could be the reason for this behaviour?For the application (in .txt)we have observed 5738 usecs for capture node
I found a similar post in which its mentioned to change the captureObj->params.instCfg[id].numPixels = 1,which file I can change this?
Kindly guide what could have gone wrong in this case?