Spaces:

File size: 73,151 Bytes
5aefcf4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
Ticket Name: RTOS/TDA2: TIDL (Deep Learning) on Caffe and TensorFlow

Query Text:
Part Number: TDA2 Other Parts Discussed in Thread: INA226 Tool/software: TI-RTOS Dear TI, Understand a TI customized Caffe-Jacinto model is supported by TI, and "Only certain models" of Caffe and TensorFlow are supported. My questions are: 1) I can use official Caffe and TensorFlow model but only certain models can be used, correct? If this is true, what are these "certain models"? 2) For TensorFlow, Can you provide a example of the .txt file to use for the converting tool? e.g. in the current user guild, the below example is given for caffe: tidl_model_import.out.exe ..\..\test\testvecs\config\import\tidl_import_jseg21.txt inputNetFile = ..\..\test\testvecs\config\caffe_models\tiscapes_jseg21\jacintonet11.prototxt inputParamsFile = ..\..\test\testvecs\config\caffe_models\tiscapes_jseg21\jacintonet11.caffemodel What could be input files if using TensorFlow? Thanks and best regards He Wei

Responses:
Hi He Wei, 1. Any caffe or TensorFlow model with layers supported by TIDL can be imported and run using TIDL, please refer to data sheet for supported layers. 2. Please refer to "tidl_import_mobileNet1.txt " file in the "ti_dl\test\testvecs\config\import" folder as reference for converting TensorFlow models. Also, copied below.. # Default - 0 randParams = 0 # 0: Caffe, 1: TensorFlow, Default - 0 modelType = 1 # 0: Fixed quantization By tarininng Framework, 1: Dyanamic quantization by TIDL, Default - 1 quantizationStyle = 1 # quantRoundAdd/100 will be added while rounding to integer, Default - 50 quantRoundAdd = 50 numParamBits = 10 inputNetFile = "..\..\test\testvecs\config\tensorflow_models\mobilenet\mobilenet_1_224.pb" inputParamsFile = "NA" outputNetFile = "..\..\test\testvecs\config\tidl_models\tidl_net_mobilenet_1_224.bin" outputParamsFile = "..\..\test\testvecs\config\tidl_models\tidl_param_mobilenet_1_224.bin" preProcType = 2 sampleInData = "..\..\test\testvecs\input\airshow.jpg" tidlStatsTool = "..\quantStatsTool\eve_test_dl_algo.out.exe" inWidth = 224 inHeight = 224 inNumChannels = 3 Thanks, Praveen

Thanks a lot Praveen, 1. Beside CNN is supported, does TIDL support RNN and LSTM? (I didn't find these on TI data sheet) 2. Can we install and build github.com/.../caffe-jacinto in Windows environment? Thanks and best regards He Wei

1. No, TIDL does not support RNN and LSTM. 2. No Thanks, Praveen

Thanks Praveen, In the "TIDL OD Usecase", there is "square box" GUI to show on each identified vehicle, This " square box" GUI is done by display module or by algorithm module? (We replace the net and parameter bin fie with some face detection trained model but no more effect) Thanks and best regards He Wei

Hi He Wei, It is done by display module. Thanks, Praveen

H, Praveen, For the TIDL OD demo, there are 2 places to input the input source file: 1. In "TIDL_SSD_CFG.TXT", inputFile=inData_OD 2. During the Tool conversion: sampleInData = "..\..\test\testvecs\input\000100_1024x512_bgr.y" So what is the usage/difference for each input source? (The reason I am asking is because when I changed the input to use the live camera, then there is no more object detection effect. i.e. no more "square box" GUI, I am wondering if the OD algo. is acting on the live camera or still the video file defined in the tool conversion. ) Basically our 1st approach is to make this OD demo working on live camera capture first. What could be major modification beside changing the source capture from Camera instead from file? Thanks and best regards He Wei

Hi, In the TIDL OD demo you can use input from live camera, but this input need to be converted raw data before giving to the usecase. You can refer below thread for more details on how to use camera source to the input of OD usecase. e2e.ti.com/.../2278546 Regarding the other input for tool conversion , it is one time process to convert to your model to get net and params bin files to use in the OD usecase, so the input to tool conversion can be any one frame of data from the training data set used in training your model. Thanks, Praveen

Dear Praveen, Based on that link, "TIDL algorithm requires BGR planar input". We did modification based on the VSDK existing TIDL_OD use case: " UseCase: chains_tidlOD NullSource -> Decode -> VPE -> Dup Dup -> Merge Dup -> Alg_tidlpreproc (A15) Alg_tidlpreproc (A15) -> Alg_tidl_Eve1 (EVE1) ... " We replaced the "NullSource -> Decode -> VPE" to "Capture link" (The video capture is working after this change). You can see actually after video capturing, it will go to "Alg_tidlpreproc (A15)" before entering TIDL algorithm , and the "Alg_tidlpreproc (A15)" will perform the YUV to RGB change, hence the format will be correct for TIDL algo. now and it should be working, am I right? (But there is still no effect..) Thanks and best regards He Wei

In addition: The procMode for Alg_tidlpreproc (A15) set as: pUcObj->Alg_tidlpreprocPrm.procMode = TIDLPREPROC_LINK_PROCMODE_Y2R; Thanks and best regards He Wei

One more question: Can you provide the original "caffe_jacinto_models\trained\image_detection\jdetNet_768x320\deploy.prototxt" used to convert to TIDL_OD "tidl_net_jdetNet_ssd.bin"? I have download the caffe_jacinto_models source code from TI Github but cannot find that deploy.prototxt. Thanks and best regards He Wei

Hi He Wei, You may be searching in some wrong place, so please check the link following thread and also follow steps mentioned in that thread to import and run the OD usecase. e2e.ti.com/.../689617 Regarding the other question, please try to run the existing OD use case and then you import and run your model. Thanks, Praveen

Thanks Praveen, Thanks for the sharing and this seems a break thread. My other question is: I have modified the TI_OD use case to capture live video from Camera, then passing to a pre-process to done the YUV to RGB conversion, then passing to algo. but no any effect. i.e. no GUI, Any opinions? Thanks and best regards He Wei

Hi He Wei, Did you successfully import your model to generate the "tidl_net_jdetNet_ssd.bin" and tidl_param_jdetNet_ssd.bin" files using TIDL import tool ? Because these bin files should be used in runnign use case with live video. Thanks, Praveen

Dear Praveen, Yes. I successfully import generate and import the " "tidl_net_jdetNet_ssd.bin" and tidl_param_jdetNet_ssd.bin" by following the your link, then I modify the TIDL_OD use case from file input to camera live feed, but there is still no impact, i.e. no "square" GUI.. And there is TIDL pre-process module to perform YUV-> RGB conversion before fitting into algo. Any opinions? or any way to debug to understand the problem? Thanks and best regards He Wei

In addition, the log when running the modified TIDL_OD use case (video is capturing from Camera instead of File): [IPU1-0] 15.260111 s: [IPU1-0] 15.302293 s: TIDL Configuration parameters [IPU1-0] 15.302385 s: ----------------------------- [IPU1-0] 15.302446 s: inputWidth = 768 [IPU1-0] 15.302507 s: inputHeight = 320 [IPU1-0] 15.302568 s: inputFile = inData_OD [IPU1-0] 15.302598 s: inputFile = inHeader_OD [IPU1-0] 15.302659 s: netFileName = tidl_net_jdetNet_ssd.bin [IPU1-0] 15.302751 s: paramFileName = tidl_param_jdetNet_ssd.bin [IPU1-0] 15.302812 s: inputfps = 30 [IPU1-0] 15.302903 s: threshold = 0.300000 [IPU1-0] 15.302995 s: ----------------------------- [IPU1-0] 16.075306 s: CAPTURE: Create in progress !!! [IPU1-0] 16.075520 s: CAPTURE: VIP1 Slice0 PortA capture mode is [ 8-bit] !!! [IPU1-0] 16.166503 s: CAPTURE: Create Done !!! [IPU1-0] 16.167663 s: IPC_OUT_0 : Create in progress !!! [IPU1-0] 16.168029 s: IPC_OUT_0 : Create Done !!! [HOST ] 16.168212 s: IPC_IN_0 : Create in progress !!! [HOST ] 16.168517 s: IPC_IN_0 : Create Done !!! [HOST ] 16.168639 s: ALGORITHM: Create in progress (algId = 12) !!! [HOST ] 16.182486 s: UTILS: DMA: Allocated CH (TCC) = 0 (0) [HOST ] 16.182516 s: UTILS: DMA: 0 of 1: Allocated PaRAM = 0 (0x43305600) [HOST ] 16.182516 s: ALGORITHM: Create Done (algId = 12) !!! [HOST ] 16.182638 s: IPC_OUT_3 : Create in progress !!! [HOST ] 16.182669 s: IPC_OUT_3 : Create Done !!! [EVE4 ] 16.182943 s: IPC_IN_0 : Create in progress !!! [EVE4 ] 16.183828 s: IPC_IN_0 : Create Done !!! [EVE4 ] 16.184407 s: ALGORITHM: Create in progress (algId = 14) !!! [HOST ] 18.199902 s: IPC_OUT_2 : Create in progress !!! [HOST ] 18.199932 s: IPC_OUT_2 : Create Done !!! [DSP1 ] 18.199322 s: IPC_IN_3 : Create in progress !!! [DSP1 ] 18.199810 s: IPC_IN_3 : Create Done !!! [EVE3 ] 18.200237 s: IPC_IN_0 : Create in progress !!! [EVE3 ] 18.201152 s: IPC_IN_0 : Create Done !!! [EVE3 ] 18.201823 s: ALGORITHM: Create in progress (algId = 14) !!! [EVE4 ] 18.197614 s: ALGORITHM: Create Done (algId = 14) !!! [EVE4 ] 18.198407 s: IPC_OUT_0 : Create in progress !!! [EVE4 ] 18.198895 s: IPC_OUT_0 : Create Done !!! [HOST ] 20.215610 s: IPC_OUT_1 : Create in progress !!! [HOST ] 20.215671 s: IPC_OUT_1 : Create Done !!! [DSP1 ] 20.215030 s: IPC_IN_2 : Create in progress !!! [DSP1 ] 20.215518 s: IPC_IN_2 : Create Done !!! [EVE2 ] 20.215915 s: IPC_IN_0 : Create in progress !!! [EVE2 ] 20.216860 s: IPC_IN_0 : Create Done !!! [EVE2 ] 20.217623 s: ALGORITHM: Create in progress (algId = 14) !!! [EVE3 ] 20.213505 s: ALGORITHM: Create Done (algId = 14) !!! [EVE3 ] 20.214146 s: IPC_OUT_0 : Create in progress !!! [EVE3 ] 20.214603 s: IPC_OUT_0 : Create Done !!! [HOST ] 22.251662 s: IPC_OUT_0 : Create in progress !!! [HOST ] 22.251692 s: IPC_OUT_0 : Create Done !!! [DSP1 ] 22.251052 s: IPC_IN_1 : Create in progress !!! [DSP1 ] 22.251509 s: IPC_IN_1 : Create Done !!! [EVE1 ] 22.251997 s: IPC_IN_0 : Create in progress !!! [EVE1 ] 22.252912 s: IPC_IN_0 : Create Done !!! [EVE1 ] 22.253492 s: ALGORITHM: Create in progress (algId = 14) !!! [EVE2 ] 22.249344 s: ALGORITHM: Create Done (algId = 14) !!! [EVE2 ] 22.250137 s: IPC_OUT_0 : Create in progress !!! [EVE2 ] 22.250625 s: IPC_OUT_0 : Create Done !!! [EVE1 ] 24.276001 s: ALGORITHM: Create Done (algId = 14) !!! [EVE1 ] 24.276764 s: IPC_OUT_0 : Create in progress !!! [EVE1 ] 24.277221 s: IPC_OUT_0 : Create Done !!! [IPU1-0] 24.290459 s: IPC_IN_0 : Create in progress !!! [IPU1-0] 24.291465 s: IPC_IN_0 : Create Done !!! [IPU1-0] 24.292746 s: ALGORITHM: Create in progress (algId = 1) !!! [IPU1-0] 24.293783 s: UTILS: DMA: Allocated CH (TCC) = 48 (48) [IPU1-0] 24.293905 s: UTILS: DMA: 0 of 1: Allocated PaRAM = 48 (0x63304800) [IPU1-0] 24.316385 s: ALGORITHM: Create Done (algId = 1) !!! [IPU1-0] 24.316568 s: DISPLAY: Create in progress !!! [IPU1-0] 24.317147 s: DISPLAY: Create Done !!! [IPU1-0] 24.317513 s: GRPXSRC: Create in progress !!! [IPU1-0] 24.863203 s: GRPXSRC: Create Done !!! [IPU1-0] 24.863569 s: DISPLAY: Create in progress !!! [IPU1-0] 24.864027 s: DISPLAY: Create Done !!! [IPU1-0] 24.864240 s: SYSTEM: SW Message Box Msg Pool, Free Msg Count = 1023 [IPU1-0] 24.864362 s: SYSTEM: Heap = LOCAL_DDR @ 0x00000000, Total size = 262144 B (256 KB), Free size = 243176 B (237 KB) [IPU1-0] 24.864515 s: SYSTEM: Heap = SR_OCMC @ 0x00000000, Total size = 0 B (0 KB), Free size = 0 B (0 KB) [IPU1-0] 24.864667 s: SYSTEM: Heap = SR_DDR_CACHED @ 0x89d03000, Total size = 368037888 B (350 MB), Free size = 190116352 B (181 MB) [IPU1-0] 24.864850 s: SYSTEM: Heap = SR_DDR_NON_CACHED @ 0xbfc00000, Total size = 127360 B (0 MB), Free size = 92800 B (0 MB) [IPU1-0] 24.874001 s: CHAINS: Sensor create in progress [IPU1-0] 24.874550 s: VIDEO_SENSOR: INST0 : I2C1 : I2C Addr = 0x30 [IPU1-0] 24.965686 s: VIDEO_SENSOR: VIP 0: DRV ID 1203 (I2C ADDR 0x30): a635:0000:7fa2 [IPU1-0] 24.966052 s: CHAINS: Sensor create ... DONE !!! [IPU1-0] 24.966357 s: DISPLAY: Start in progress !!! [IPU1-0] 24.966418 s: DISPLAY: Start Done !!! [IPU1-0] 24.973403 s: DISPLAY: Start in progress !!! [IPU1-0] 24.973464 s: DISPLAY: Start Done !!! [IPU1-0] 24.978923 s: CAPTURE: Start in progress !!! [IPU1-0] 24.980479 s: CAPTURE: Start Done !!! Any clue? Thanks and best regards He Wei

In addition: I did the same modification on "vision_sdk\apps\src\rtos\usecases\semSeg" and change the live source using Camera in stead of file, and I can see the GUI effect. Thanks and best regards He Wei

Hi, Can you press p after 1 min running of usecase and share the usecase. Regards, Anuj

Dear Anuj, Below is the log after press p after 1min running ( and I put a toy car in front of camera during testing): [IPU1-0] Enter Choice: [IPU1-0] p [IPU1-0] 235.003568 s: [IPU1-0] 235.003660 s: CPU [IPU1-0 ] Statistics, [IPU1-0] 235.003721 s: ************************* [IPU1-0] 235.003782 s: [IPU1-0] 235.003843 s: LOAD: CPU: 11.0% HWI: 1.9%, SWI:0.6%, Low Power: 85.1% [IPU1-0] 235.004087 s: [IPU1-0] 235.004178 s: LOAD: TSK: DUP0 : 0.1% [IPU1-0] 235.004270 s: LOAD: TSK: IPC_IN_0 : 0.2% [IPU1-0] 235.004392 s: LOAD: TSK: IPC_OUT_0 : 0.4% [IPU1-0] 235.004727 s: LOAD: TSK: MERGE0 : 0.2% [IPU1-0] 235.004849 s: LOAD: TSK: SYNC0 : 0.6% [IPU1-0] 235.004941 s: LOAD: TSK: DISPLAY0 : 0.4% [IPU1-0] 235.005032 s: LOAD: TSK: CAPTURE : 0.2% [IPU1-0] 235.005124 s: LOAD: TSK: ALGORITHM0 : 1.0% [IPU1-0] 235.005246 s: LOAD: TSK: GrpxSrc0 : 0.2% [IPU1-0] 235.005337 s: LOAD: TSK: STAT_COLL : 3.5% [IPU1-0] 235.005429 s: LOAD: TSK: MISC : 1.7% [IPU1-0] 235.005520 s: [IPU1-0] 235.005764 s: SYSTEM: SW Message Box Msg Pool, Free Msg Count = 1023 [IPU1-0] 235.005886 s: [IPU1-0] 235.005917 s: SYSTEM: Sempahores Objects, 178 of 1050 free [IPU1-0] 235.006008 s: SYSTEM: Task Objects , 18 of 100 free [IPU1-0] 235.006069 s: SYSTEM: Clock Objects , 95 of 100 free [IPU1-0] 235.006161 s: SYSTEM: Hwi Objects , 89 of 100 free [IPU1-0] 235.006252 s: [IPU1-0] 235.006283 s: SYSTEM: Heap = LOCAL_DDR @ 0x00000000, Total size = 262144 B (256 KB), Free size = 243176 B (237 KB) [IPU1-0] 235.006466 s: SYSTEM: Heap = SR_OCMC @ 0x00000000, Total size = 0 B (0 KB), Free size = 0 B (0 KB) [IPU1-0] 235.006649 s: SYSTEM: Heap = SR_DDR_CACHED @ 0x89d03000, Total size = 368037888 B (350 MB), Free size = 190116352 B (181 MB) [IPU1-0] 235.006832 s: SYSTEM: Heap = SR_DDR_NON_CACHED @ 0xbfc00000, Total size = 127360 B (0 MB), Free size = 92800 B (0 MB) [IPU1-0] 235.007015 s: [IPU1-0] 235.007076 s: [IPU1-0] 235.007106 s: CPU [IPU1-1 ] Statistics, [IPU1-0] 235.007167 s: ************************* [IPU1-0] 235.007228 s: [IPU1-0] 235.007289 s: LOAD: CPU: 1.1% HWI: 0.6%, SWI:0.3%, Low Power: 84.8% [IPU1-0] 235.007442 s: [IPU1-0] 235.007716 s: LOAD: TSK: MISC : 0.2% [IPU1-0] 235.007838 s: [IPU1-0] 235.007869 s: SYSTEM: SW Message Box Msg Pool, Free Msg Count = 1023 [IPU1-0] 235.007991 s: [IPU1-0] 235.008021 s: SYSTEM: Sempahores Objects, 442 of 1050 free [IPU1-0] 235.008113 s: SYSTEM: Task Objects , 39 of 100 free [IPU1-0] 235.008235 s: SYSTEM: Clock Objects , 99 of 100 free [IPU1-0] 235.008326 s: SYSTEM: Hwi Objects , 99 of 100 free [IPU1-0] 235.008418 s: [IPU1-0] 235.008479 s: SYSTEM: Heap = LOCAL_DDR @ 0x00000000, Total size = 655360 B (640 KB), Free size = 643368 B (628 KB) [IPU1-0] 235.008723 s: [IPU1-0] 235.008784 s: [IPU1-0] 235.008845 s: CPU [HOST ] Statistics, [IPU1-0] 235.008906 s: ************************* [IPU1-0] 235.008967 s: [IPU1-0] 235.008997 s: LOAD: CPU: 48.5% HWI: 0.1%, SWI:0.1%, Low Power: 50.5% [IPU1-0] 235.009150 s: [IPU1-0] 235.009241 s: LOAD: TSK: MISC : 48.3% [IPU1-0] 235.009333 s: [IPU1-0] 235.009363 s: SYSTEM: SW Message Box Msg Pool, Free Msg Count = 1023 [IPU1-0] 235.009455 s: [IPU1-0] 235.009516 s: SYSTEM: Sempahores Objects, 439 of 1050 free [IPU1-0] 235.009607 s: SYSTEM: Task Objects , 38 of 100 free [IPU1-0] 235.009729 s: SYSTEM: Clock Objects , 95 of 100 free [IPU1-0] 235.009821 s: SYSTEM: Hwi Objects , 99 of 100 free [IPU1-0] 235.009882 s: [IPU1-0] 235.009943 s: SYSTEM: Heap = LOCAL_DDR @ 0x00000000, Total size = 6291456 B (6144 KB), Free size = 6236464 B (6090 KB) [IPU1-0] 235.010095 s: [IPU1-0] 235.010156 s: [IPU1-0] 235.010187 s: CPU [DSP1 ] Statistics, [IPU1-0] 235.010248 s: ************************* [IPU1-0] 235.010309 s: [IPU1-0] 235.010370 s: LOAD: CPU: 41.2% HWI: 0.3%, SWI:0.1%, Low Power: 57.9% [IPU1-0] 235.010492 s: [IPU1-0] 235.010736 s: LOAD: TSK: SYSTEM_TSK_MULTI_MBX: 40.6% [IPU1-0] 235.010858 s: LOAD: TSK: MISC : 0.2% [IPU1-0] 235.010949 s: [IPU1-0] 235.011010 s: SYSTEM: SW Message Box Msg Pool, Free Msg Count = 1023 [IPU1-0] 235.011071 s: [IPU1-0] 235.011132 s: SYSTEM: Sempahores Objects, 451 of 1050 free [IPU1-0] 235.011224 s: SYSTEM: Task Objects , 92 of 100 free [IPU1-0] 235.011315 s: SYSTEM: Clock Objects , 98 of 100 free [IPU1-0] 235.011407 s: SYSTEM: Hwi Objects , 100 of 100 free [IPU1-0] 235.011498 s: [IPU1-0] 235.011529 s: SYSTEM: Heap = LOCAL_L2 @ 0x00800000, Total size = 227264 B (221 KB), Free size = 65600 B (64 KB) [IPU1-0] 235.011712 s: SYSTEM: Heap = LOCAL_DDR @ 0x00000000, Total size = 524288 B (512 KB), Free size = 497720 B (486 KB) [IPU1-0] 235.011895 s: [IPU1-0] 235.011925 s: [IPU1-0] 235.011986 s: CPU [DSP2 ] Statistics, [IPU1-0] 235.012047 s: ************************* [IPU1-0] 235.012108 s: [IPU1-0] 235.012139 s: LOAD: CPU: 0.2% HWI: 0.1%, SWI:0.0%, Low Power: 98.7% [IPU1-0] 235.012291 s: [IPU1-0] 235.012352 s: LOAD: TSK: MISC : 0.1% [IPU1-0] 235.012413 s: [IPU1-0] 235.012474 s: SYSTEM: SW Message Box Msg Pool, Free Msg Count = 1023 [IPU1-0] 235.012566 s: [IPU1-0] 235.012596 s: SYSTEM: Sempahores Objects, 456 of 1050 free [IPU1-0] 235.012688 s: SYSTEM: Task Objects , 92 of 100 free [IPU1-0] 235.012779 s: SYSTEM: Clock Objects , 99 of 100 free [IPU1-0] 235.012871 s: SYSTEM: Hwi Objects , 100 of 100 free [IPU1-0] 235.012962 s: [IPU1-0] 235.012993 s: SYSTEM: Heap = LOCAL_L2 @ 0x00800000, Total size = 227264 B (221 KB), Free size = 227264 B (221 KB) [IPU1-0] 235.013176 s: SYSTEM: Heap = LOCAL_DDR @ 0x00000000, Total size = 524288 B (512 KB), Free size = 514584 B (502 KB) [IPU1-0] 235.013328 s: [IPU1-0] 235.013359 s: [IPU1-0] 235.013420 s: CPU [EVE1 ] Statistics, [IPU1-0] 235.013481 s: ************************* [IPU1-0] 235.013511 s: CPU: EVE1: Unable to get CPU statistics !!! [IPU1-0] 235.013633 s: [IPU1-0] 235.013664 s: [IPU1-0] 235.013694 s: [IPU1-0] 235.013755 s: CPU [EVE2 ] Statistics, [IPU1-0] 235.013816 s: ************************* [IPU1-0] 235.013877 s: CPU: EVE2: Unable to get CPU statistics !!! [IPU1-0] 235.013938 s: [IPU1-0] 235.013969 s: [IPU1-0] 235.014030 s: [IPU1-0] 235.014060 s: CPU [EVE3 ] Statistics, [IPU1-0] 235.014121 s: ************************* [IPU1-0] 235.014182 s: CPU: EVE3: Unable to get CPU statistics !!! [IPU1-0] 235.014853 s: [IPU1-0] 235.014945 s: [IPU1-0] 235.014975 s: [IPU1-0] 235.015006 s: CPU [EVE4 ] Statistics, [IPU1-0] 235.015097 s: ************************* [IPU1-0] 235.015158 s: CPU: EVE4: Unable to get CPU statistics !!! [IPU1-0] 235.015219 s: [IPU1-0] 235.015280 s: [IPU1-0] 235.015311 s: [IPU1-0] 235.015341 s: CPU [IPU2 ] Statistics, [IPU1-0] 235.015402 s: ************************* [IPU1-0] 235.015463 s: [IPU1-0] 235.015524 s: LOAD: CPU: 1.0% HWI: 0.5%, SWI:0.3%, Low Power: 95.8% [IPU1-0] 235.015921 s: [IPU1-0] 235.016043 s: LOAD: TSK: MISC : 0.2% [IPU1-0] 235.016134 s: [IPU1-0] 235.016165 s: SYSTEM: SW Message Box Msg Pool, Free Msg Count = 1023 [IPU1-0] 235.016256 s: [IPU1-0] 235.016317 s: SYSTEM: Sempahores Objects, 442 of 1050 free [IPU1-0] 235.016378 s: SYSTEM: Task Objects , 39 of 100 free [IPU1-0] 235.016470 s: SYSTEM: Clock Objects , 99 of 100 free [IPU1-0] 235.016622 s: SYSTEM: Hwi Objects , 99 of 100 free [IPU1-0] 235.016714 s: [IPU1-0] 235.016744 s: SYSTEM: Heap = LOCAL_DDR @ 0x00000000, Total size = 262144 B (256 KB), Free size = 250104 B (244 KB) [IPU1-0] 235.016897 s: [IPU1-0] 235.017232 s: [IPU1-0] 235.017293 s: UTILS_PRCM_STATS: Current Temperature, [IPU1-0] 235.017354 s: [IPU1-0] 235.017415 s: Voltage Rail || Curr Temp Min - Max [IPU1-0] 235.017476 s: --------------------------------------------------------- [IPU1-0] 235.017598 s: PMHAL_PRCM_VD_MPU || [48. 0 , 48.400] [IPU1-0] 235.017720 s: PMHAL_PRCM_VD_CORE || [48. 0 , 48.400] [IPU1-0] 235.017842 s: PMHAL_PRCM_VD_IVAHD || [48. 0 , 48.400] [IPU1-0] 235.017934 s: PMHAL_PRCM_VD_DSPEVE || [48. 0 , 48.400] [IPU1-0] 235.018056 s: PMHAL_PRCM_VD_GPU || [47.600 , 48. 0] [IPU1-0] 235.018147 s: [IPU1-0] 235.018208 s: ============================================================================ [IPU1-0] 235.018300 s: Name | Bus (mV) | Res (mOhm) | Shunt (uV) | Current (mA) | Power (mW) [IPU1-0] 235.018391 s: ---------------------------------------------------------------------------- [IPU1-0] 235.023882 s: UTILS_PRCM_STATS: Reading the regulator data failed [IPU1-0] 235.024004 s: UTILS_PRCM_STATS: PM INA226 Power Read Failed !! [IPU1-0] 235.024339 s: [IPU1-0] 235.024370 s: Statistics Collector, [IPU1-0] 235.024431 s: [IPU1-0] 235.024461 s: STATISTIC Avg Data Peak Data [IPU1-0] 235.024583 s: COLLECTOR MB/s MB/s [IPU1-0] 235.024675 s: -------------------------------------------------- [IPU1-0] 235.024766 s: SCI_EMIF1 RD+WR | 1007.632457 1661.457017 [IPU1-0] 235.024888 s: SCI_EMIF2 RD+WR | 0.000000 0.000000 [IPU1-0] 235.024980 s: SCI_EMIF1 RD ONLY | 755.861823 1263.723194 [IPU1-0] 235.025102 s: SCI_EMIF1 WR ONLY | 252.255321 606.915526 [IPU1-0] 235.025193 s: SCI_EMIF2 RD ONLY | 0.000000 0.000000 [IPU1-0] 235.025315 s: SCI_EMIF2 WR ONLY | 0.000000 0.000000 [IPU1-0] 235.026200 s: SCI_MA_MPU_P1 | 86.414913 347.237105 [IPU1-0] 235.026474 s: SCI_MA_MPU_P2 | 0.000000 0.000000 [IPU1-0] 235.027145 s: SCI_DSS | 108.501272 260.068396 [IPU1-0] 235.027267 s: SCI_IPU1 | 8.236708 31.516290 [IPU1-0] 235.027389 s: SCI_VIP1_P1 | 5.597743 8.367213 [IPU1-0] 235.027481 s: SCI_VIP1_P2 | 11.199666 16.550819 [IPU1-0] 235.027633 s: SCI_VPE_P1 | 0.000000 0.000000 [IPU1-0] 235.027755 s: SCI_VPE_P2 | 0.000000 0.000000 [IPU1-0] 235.027877 s: SCI_DSP1_MDMA | 13.851011 88.900834 [IPU1-0] 235.027969 s: SCI_DSP1_EDMA | 19.868974 157.143555 [IPU1-0] 235.028091 s: SCI_DSP2_MDMA | 0.102729 1.558375 [IPU1-0] 235.028182 s: SCI_DSP2_EDMA | 0.000000 0.000000 [IPU1-0] 235.028304 s: SCI_EVE1_TC0 | 203.576094 635.578439 [IPU1-0] 235.028396 s: SCI_EVE1_TC1 | 298.174472 862.216857 [IPU1-0] 235.028609 s: SCI_EVE2_TC0 | 203.490501 630.630456 [IPU1-0] 235.028731 s: SCI_EVE2_TC1 | 298.532028 860.491651 [IPU1-0] 235.028823 s: SCI_EDMA_TC0_RD | 0.000000 0.000000 [IPU1-0] 235.028914 s: SCI_EDMA_TC0_WR | 0.000000 0.000000 [IPU1-0] 235.029036 s: SCI_EDMA_TC1_RD | 7.958074 83.915319 [IPU1-0] 235.029158 s: SCI_EDMA_TC1_WR | 7.958304 83.915319 [IPU1-0] 235.029250 s: SCI_VIP2_P1 | 0.000000 0.000000 [IPU1-0] 235.029341 s: SCI_VIP2_P2 | 0.000000 0.000000 [IPU1-0] 235.029463 s: SCI_VIP3_P1 | 0.000000 0.000000 [IPU1-0] 235.029585 s: SCI_VIP3_P2 | 0.000000 0.000000 [IPU1-0] 235.029707 s: SCI_EVE3_TC0 | 203.399701 622.044120 [IPU1-0] 235.029829 s: SCI_EVE3_TC1 | 298.186714 860.370072 [IPU1-0] 235.029921 s: SCI_EVE4_TC0 | 203.484090 631.942063 [IPU1-0] 235.030043 s: SCI_EVE4_TC1 | 298.435920 859.513176 [IPU1-0] 235.030165 s: SCI_IVA | 0.000000 0.000000 [IPU1-0] 235.030256 s: SCI_GPU_P1 | 0.000000 0.000000 [IPU1-0] 235.030348 s: SCI_GPU_P2 | 0.000000 0.000000 [IPU1-0] 235.030470 s: SCI_GMAC_SW | 0.000000 0.000000 [IPU1-0] 235.030805 s: SCI_OCMC_RAM1 | 298.400696 861.168141 [IPU1-0] 235.030927 s: SCI_OCMC_RAM2 | 298.611762 859.616173 [IPU1-0] 235.031049 s: SCI_OCMC_RAM3 | 597.521011 1158.204344 [IPU1-0] 235.130787 s: [IPU1-0] 235.130879 s: [IPU1-0] 235.130970 s: [IPU1-0] 235.131031 s: ### CPU [IPU1-0], LinkID [ 68], [IPU1-0] 235.131092 s: [IPU1-0] 235.131153 s: [ CAPTURE ] Link Statistics, [IPU1-0] 235.131214 s: ****************************** [IPU1-0] 235.131275 s: [IPU1-0] 235.131306 s: Elapsed time = 154244 msec [IPU1-0] 235.131367 s: [IPU1-0] 235.131428 s: New data Recv = 30.0 fps [IPU1-0] 235.131489 s: Get Full Buf Cb = 21.47 fps [IPU1-0] 235.131611 s: Put Empty Buf Cb = 42.91 fps [IPU1-0] 235.131702 s: Driver/Notify Cb = 30.0 fps [IPU1-0] 235.131763 s: [IPU1-0] 235.131794 s: Input Statistics, [IPU1-0] 235.131855 s: [IPU1-0] 235.131885 s: CH | In Recv | In Drop | In User Drop | In Process [IPU1-0] 235.131977 s: | FPS | FPS | FPS | FPS [IPU1-0] 235.132068 s: -------------------------------------------------- [IPU1-0] 235.132129 s: 0 | 21.44 0. 0 0. 0 21.44 [IPU1-0] 235.132282 s: [IPU1-0] 235.132312 s: Output Statistics, [IPU1-0] 235.132373 s: [IPU1-0] 235.132404 s: CH | Out | Out | Out Drop | Out User Drop [IPU1-0] 235.132465 s: | ID | FPS | FPS | FPS [IPU1-0] 235.132587 s: --------------------------------------------- [IPU1-0] 235.132678 s: 0 | 0 21.47 0. 0 0. 0 [IPU1-0] 235.132770 s: [IPU1-0] 235.132831 s: [ CAPTURE ] LATENCY, [IPU1-0] 235.132892 s: ******************** [IPU1-0] 235.132953 s: [IPU1-0] 235.132983 s: CPU [ IPU1-0], LinkID [ 25], Link Statistics not available ! [IPU1-0] 235.133166 s: [IPU1-0] 235.133197 s: ### CPU [IPU1-0], LinkID [ 0], [IPU1-0] 235.133288 s: [IPU1-0] 235.133319 s: [ IPC_OUT_0 ] Link Statistics, [IPU1-0] 235.133380 s: ****************************** [IPU1-0] 235.133441 s: [IPU1-0] 235.133502 s: Elapsed time = 154246 msec [IPU1-0] 235.134112 s: [IPU1-0] 235.134264 s: New data Recv = 21.47 fps [IPU1-0] 235.134417 s: Release data Recv = 21.48 fps [IPU1-0] 235.134539 s: Driver/Notify Cb = 121.46 fps [IPU1-0] 235.135179 s: [IPU1-0] 235.135240 s: Input Statistics, [IPU1-0] 235.135301 s: [IPU1-0] 235.135332 s: CH | In Recv | In Drop | In User Drop | In Process [IPU1-0] 235.135423 s: | FPS | FPS | FPS | FPS [IPU1-0] 235.135850 s: -------------------------------------------------- [IPU1-0] 235.135972 s: 0 | 21.47 0. 0 0. 0 21.47 [IPU1-0] 235.136094 s: [IPU1-0] 235.136125 s: Output Statistics, [IPU1-0] 235.136186 s: [IPU1-0] 235.136216 s: CH | Out | Out | Out Drop | Out User Drop [IPU1-0] 235.136308 s: | ID | FPS | FPS | FPS [IPU1-0] 235.136369 s: --------------------------------------------- [IPU1-0] 235.136460 s: 0 | 0 21.47 0. 0 0. 0 [IPU1-0] 235.136613 s: [IPU1-0] 235.136674 s: [ IPC_OUT_0 ] LATENCY, [IPU1-0] 235.136735 s: ******************** [IPU1-0] 235.136796 s: Local Link Latency : Avg = 8 us, Min = 0 us, Max = 92 us, [IPU1-0] 235.136918 s: Source to Link Latency : Avg = 221 us, Min = 152 us, Max = 519 us, [IPU1-0] 235.137009 s: [IPU1-0] 235.636826 s: [IPU1-0] 235.637070 s: ### CPU [ HOST], LinkID [ 10], [IPU1-0] 235.637162 s: [IPU1-0] 235.637192 s: [ IPC_IN_0 ] Link Statistics, [IPU1-0] 235.637253 s: ****************************** [IPU1-0] 235.637314 s: [IPU1-0] 235.637375 s: Elapsed time = 154750 msec [IPU1-0] 235.637436 s: [IPU1-0] 235.637467 s: Get Full Buf Cb = 21.47 fps [IPU1-0] 235.637558 s: Put Empty Buf Cb = 21.47 fps [IPU1-0] 235.637650 s: Driver/Notify Cb = 21.47 fps [IPU1-0] 235.637741 s: [IPU1-0] 235.637802 s: Input Statistics, [IPU1-0] 235.637833 s: [IPU1-0] 235.637894 s: CH | In Recv | In Drop | In User Drop | In Process [IPU1-0] 235.637955 s: | FPS | FPS | FPS | FPS [IPU1-0] 235.638046 s: -------------------------------------------------- [IPU1-0] 235.638138 s: 0 | 21.47 0. 0 0. 0 21.47 [IPU1-0] 235.638260 s: [IPU1-0] 235.638290 s: Output Statistics, [IPU1-0] 235.638351 s: [IPU1-0] 235.638382 s: CH | Out | Out | Out Drop | Out User Drop [IPU1-0] 235.638443 s: | ID | FPS | FPS | FPS [IPU1-0] 235.638534 s: --------------------------------------------- [IPU1-0] 235.638626 s: 0 | 0 21.47 0. 0 0. 0 [IPU1-0] 235.638748 s: [IPU1-0] 235.638778 s: [ IPC_IN_0 ] LATENCY, [IPU1-0] 235.638839 s: ******************** [IPU1-0] 235.638900 s: Local Link Latency : Avg = 5 us, Min = 0 us, Max = 31 us, [IPU1-0] 235.639022 s: Source to Link Latency : Avg = 317 us, Min = 244 us, Max = 641 us, [IPU1-0] 235.639144 s: [IPU1-0] 235.639327 s: [IPU1-0] 235.639358 s: ### CPU [ HOST], LinkID [ 49], [IPU1-0] 235.639449 s: [IPU1-0] 235.639480 s: [ ALG_TIDLPREPROC ] Link Statistics, [IPU1-0] 235.639602 s: ****************************** [IPU1-0] 235.639693 s: [IPU1-0] 235.639724 s: Elapsed time = 154752 msec [IPU1-0] 235.639815 s: [IPU1-0] 235.639846 s: New data Recv = 21.47 fps [IPU1-0] 235.639937 s: [IPU1-0] 235.639968 s: Input Statistics, [IPU1-0] 235.640029 s: [IPU1-0] 235.640059 s: CH | In Recv | In Drop | In User Drop | In Process [IPU1-0] 235.640151 s: | FPS | FPS | FPS | FPS [IPU1-0] 235.640242 s: -------------------------------------------------- [IPU1-0] 235.640334 s: 0 | 21.47 0. 0 0. 0 21.47 [IPU1-0] 235.640486 s: [IPU1-0] 235.640517 s: Output Statistics, [IPU1-0] 235.640883 s: [IPU1-0] 235.640944 s: CH | Out | Out | Out Drop | Out User Drop [IPU1-0] 235.641035 s: | ID | FPS | FPS | FPS [IPU1-0] 235.641127 s: --------------------------------------------- [IPU1-0] 235.641218 s: 0 | 0 21.47 0. 0 0. 0 [IPU1-0] 235.641371 s: [IPU1-0] 235.641401 s: [ ALG_TIDLPREPROC ] LATENCY, [IPU1-0] 235.641462 s: ******************** [IPU1-0] 235.641523 s: Local Link Latency : Avg = 524 us, Min = 366 us, Max = 1708 us, [IPU1-0] 235.641676 s: Source to Link Latency : Avg = 22494 us, Min = 16654 us, Max = 23821 us, [IPU1-0] 235.641828 s: [IPU1-0] 235.641950 s: [IPU1-0] 235.641981 s: ### CPU [ HOST], LinkID [ 3], [IPU1-0] 235.642072 s: [IPU1-0] 235.642103 s: [ IPC_OUT_3 ] Link Statistics, [IPU1-0] 235.642164 s: ****************************** [IPU1-0] 235.642225 s: [IPU1-0] 235.642286 s: Elapsed time = 154634 msec [IPU1-0] 235.642347 s: [IPU1-0] 235.642408 s: New data Recv = 5.37 fps [IPU1-0] 235.642469 s: Release data Recv = 5.36 fps [IPU1-0] 235.642591 s: Driver/Notify Cb = 105.35 fps [IPU1-0] 235.642652 s: [IPU1-0] 235.642713 s: Input Statistics, [IPU1-0] 235.642743 s: [IPU1-0] 235.642804 s: CH | In Recv | In Drop | In User Drop | In Process [IPU1-0] 235.642865 s: | FPS | FPS | FPS | FPS [IPU1-0] 235.642957 s: -------------------------------------------------- [IPU1-0] 235.643018 s: 0 | 5.37 0. 0 0. 0 5.37 [IPU1-0] 235.643170 s: [IPU1-0] 235.643201 s: Output Statistics, [IPU1-0] 235.643262 s: [IPU1-0] 235.643292 s: CH | Out | Out | Out Drop | Out User Drop [IPU1-0] 235.643384 s: | ID | FPS | FPS | FPS [IPU1-0] 235.643445 s: --------------------------------------------- [IPU1-0] 235.643536 s: 0 | 0 5.37 0. 0 0. 0 [IPU1-0] 235.643658 s: [IPU1-0] 235.643719 s: [ IPC_OUT_3 ] LATENCY, [IPU1-0] 235.643780 s: ******************** [IPU1-0] 235.643841 s: Local Link Latency : Avg = 1 us, Min = 0 us, Max = 31 us, [IPU1-0] 235.643963 s: Source to Link Latency : Avg = 22551 us, Min = 21625 us, Max = 23700 us, [IPU1-0] 235.644055 s: [IPU1-0] 236.144238 s: [IPU1-0] 236.144390 s: ### CPU [ EVE4], LinkID [ 10], [IPU1-0] 236.145000 s: [IPU1-0] 236.145061 s: [ IPC_IN_0 ] Link Statistics, [IPU1-0] 236.145122 s: ****************************** [IPU1-0] 236.145183 s: [IPU1-0] 236.145244 s: Elapsed time = 155135 msec [IPU1-0] 236.145305 s: [IPU1-0] 236.145336 s: Get Full Buf Cb = 5.36 fps [IPU1-0] 236.145427 s: Put Empty Buf Cb = 5.36 fps [IPU1-0] 236.145488 s: Driver/Notify Cb = 5.36 fps [IPU1-0] 236.145854 s: [IPU1-0] 236.145915 s: Input Statistics, [IPU1-0] 236.145976 s: [IPU1-0] 236.146007 s: CH | In Recv | In Drop | In User Drop | In Process [IPU1-0] 236.146098 s: | FPS | FPS | FPS | FPS [IPU1-0] 236.146159 s: -------------------------------------------------- [IPU1-0] 236.146251 s: 0 | 5.36 0. 0 0. 0 5.36 [IPU1-0] 236.146373 s: [IPU1-0] 236.146403 s: Output Statistics, [IPU1-0] 236.146464 s: [IPU1-0] 236.146495 s: CH | Out | Out | Out Drop | Out User Drop [IPU1-0] 236.146617 s: | ID | FPS | FPS | FPS [IPU1-0] 236.146708 s: --------------------------------------------- [IPU1-0] 236.146769 s: 0 | 0 5.36 0. 0 0. 0 [IPU1-0] 236.146891 s: [IPU1-0] 236.146952 s: [ IPC_IN_0 ] LATENCY, [IPU1-0] 236.147013 s: ******************** [IPU1-0] 236.147044 s: Local Link Latency : Avg = 35 us, Min = 30 us, Max = 153 us, [IPU1-0] 236.147166 s: Source to Link Latency : Avg = 49352 us, Min = 21930 us, Max = 73782 us, [IPU1-0] 236.147928 s: [IPU1-0] 236.148111 s: [IPU1-0] 236.148142 s: ### CPU [ EVE4], LinkID [ 49], [IPU1-0] 236.148234 s: [IPU1-0] 236.148264 s: [ ALG_TIDL ] Link Statistics, [IPU1-0] 236.148325 s: ****************************** [IPU1-0] 236.148417 s: [IPU1-0] 236.148447 s: Elapsed time = 155139 msec [IPU1-0] 236.148508 s: [IPU1-0] 236.148569 s: New data Recv = 5.36 fps [IPU1-0] 236.148691 s: [IPU1-0] 236.148722 s: Input Statistics, [IPU1-0] 236.148844 s: [IPU1-0] 236.148905 s: CH | In Recv | In Drop | In User Drop | In Process [IPU1-0] 236.148996 s: | FPS | FPS | FPS | FPS [IPU1-0] 236.149057 s: -------------------------------------------------- [IPU1-0] 236.149179 s: 0 | 5.36 0. 0 0. 0 5.36 [IPU1-0] 236.149301 s: [IPU1-0] 236.149332 s: Output Statistics, [IPU1-0] 236.149393 s: [IPU1-0] 236.149454 s: CH | Out | Out | Out Drop | Out User Drop [IPU1-0] 236.149515 s: | ID | FPS | FPS | FPS [IPU1-0] 236.149637 s: --------------------------------------------- [IPU1-0] 236.149698 s: 0 | 0 5.36 0. 0 0. 0 [IPU1-0] 236.149820 s: [IPU1-0] 236.149881 s: [ ALG_TIDL ] LATENCY, [IPU1-0] 236.149942 s: ******************** [IPU1-0] 236.150003 s: Local Link Latency : Avg = 185543 us, Min = 184622 us, Max = 186360 us, [IPU1-0] 236.150125 s: Source to Link Latency : Avg = 235088 us, Min = 206765 us, Max = 259532 us, [IPU1-0] 236.150247 s: [IPU1-0] 236.150369 s: [IPU1-0] 236.150430 s: ### CPU [ EVE4], LinkID [ 0], [IPU1-0] 236.150491 s: [IPU1-0] 236.150552 s: [ IPC_OUT_0 ] Link Statistics, [IPU1-0] 236.150857 s: ****************************** [IPU1-0] 236.150948 s: [IPU1-0] 236.151009 s: Elapsed time = 154956 msec [IPU1-0] 236.151070 s: [IPU1-0] 236.151131 s: New data Recv = 5.36 fps [IPU1-0] 236.151192 s: Release data Recv = 5.36 fps [IPU1-0] 236.151284 s: Driver/Notify Cb = 15.37 fps [IPU1-0] 236.151375 s: [IPU1-0] 236.151406 s: Input Statistics, [IPU1-0] 236.151467 s: [IPU1-0] 236.151497 s: CH | In Recv | In Drop | In User Drop | In Process [IPU1-0] 236.151619 s: | FPS | FPS | FPS | FPS [IPU1-0] 236.151711 s: -------------------------------------------------- [IPU1-0] 236.151802 s: 0 | 5.36 0. 0 0. 0 5.36 [IPU1-0] 236.151924 s: [IPU1-0] 236.151985 s: Output Statistics, [IPU1-0] 236.152016 s: [IPU1-0] 236.152077 s: CH | Out | Out | Out Drop | Out User Drop [IPU1-0] 236.152138 s: | ID | FPS | FPS | FPS [IPU1-0] 236.152229 s: --------------------------------------------- [IPU1-0] 236.152321 s: 0 | 0 5.36 0. 0 0. 0 [IPU1-0] 236.152412 s: [IPU1-0] 236.152473 s: [ IPC_OUT_0 ] LATENCY, [IPU1-0] 236.152534 s: ******************** [IPU1-0] 236.152626 s: Local Link Latency : Avg = 27 us, Min = 0 us, Max = 122 us, [IPU1-0] 236.152748 s: Source to Link Latency : Avg = 235451 us, Min = 207314 us, Max = 259898 us, [IPU1-0] 236.152870 s: [IPU1-0] 236.652687 s: [IPU1-0] 236.652778 s: ### CPU [ DSP1], LinkID [ 13], [IPU1-0] 236.652839 s: [IPU1-0] 236.652900 s: [ IPC_IN_3 ] Link Statistics, [IPU1-0] 236.652961 s: ****************************** [IPU1-0] 236.653022 s: [IPU1-0] 236.653053 s: Elapsed time = 155458 msec [IPU1-0] 236.653388 s: [IPU1-0] 236.653449 s: Get Full Buf Cb = 21.46 fps [IPU1-0] 236.653541 s: Put Empty Buf Cb = 5.37 fps [IPU1-0] 236.653632 s: Driver/Notify Cb = 5.36 fps [IPU1-0] 236.653724 s: [IPU1-0] 236.653785 s: Input Statistics, [IPU1-0] 236.653815 s: [IPU1-0] 236.653876 s: CH | In Recv | In Drop | In User Drop | In Process [IPU1-0] 236.653937 s: | FPS | FPS | FPS | FPS [IPU1-0] 236.654029 s: -------------------------------------------------- [IPU1-0] 236.654120 s: 0 | 5.37 0. 0 0. 0 5.37 [IPU1-0] 236.654242 s: [IPU1-0] 236.654303 s: Output Statistics, [IPU1-0] 236.654334 s: [IPU1-0] 236.654395 s: CH | Out | Out | Out Drop | Out User Drop [IPU1-0] 236.654456 s: | ID | FPS | FPS | FPS [IPU1-0] 236.654547 s: --------------------------------------------- [IPU1-0] 236.654639 s: 0 | 0 5.37 0. 0 0. 0 [IPU1-0] 236.654761 s: [IPU1-0] 236.654822 s: [ IPC_IN_3 ] LATENCY, [IPU1-0] 236.654883 s: ******************** [IPU1-0] 236.654944 s: Local Link Latency : Avg = 9 us, Min = 0 us, Max = 31 us, [IPU1-0] 236.655066 s: Source to Link Latency : Avg = 235622 us, Min = 207497 us, Max = 260050 us, [IPU1-0] 236.655157 s: [IPU1-0] 237.154730 s: [IPU1-0] 237.154822 s: ### CPU [ HOST], LinkID [ 2], [IPU1-0] 237.154913 s: [IPU1-0] 237.154944 s: [ IPC_OUT_2 ] Link Statistics, [IPU1-0] 237.155005 s: ****************************** [IPU1-0] 237.155066 s: [IPU1-0] 237.155096 s: Elapsed time = 156184 msec [IPU1-0] 237.155188 s: [IPU1-0] 237.155218 s: New data Recv = 5.37 fps [IPU1-0] 237.155279 s: Release data Recv = 5.36 fps [IPU1-0] 237.155432 s: Driver/Notify Cb = 105.36 fps [IPU1-0] 237.155523 s: [IPU1-0] 237.155554 s: Input Statistics, [IPU1-0] 237.155889 s: [IPU1-0] 237.155920 s: CH | In Recv | In Drop | In User Drop | In Process [IPU1-0] 237.156011 s: | FPS | FPS | FPS | FPS [IPU1-0] 237.156103 s: -------------------------------------------------- [IPU1-0] 237.156194 s: 0 | 5.37 0. 0 0. 0 5.37 [IPU1-0] 237.156316 s: [IPU1-0] 237.156347 s: Output Statistics, [IPU1-0] 237.156408 s: [IPU1-0] 237.156438 s: CH | Out | Out | Out Drop | Out User Drop [IPU1-0] 237.156530 s: | ID | FPS | FPS | FPS [IPU1-0] 237.156591 s: --------------------------------------------- [IPU1-0] 237.156713 s: 0 | 0 5.37 0. 0 0. 0 [IPU1-0] 237.156835 s: [IPU1-0] 237.156896 s: [ IPC_OUT_2 ] LATENCY, [IPU1-0] 237.156957 s: ******************** [IPU1-0] 237.157018 s: Local Link Latency : Avg = 1 us, Min = 0 us, Max = 31 us, [IPU1-0] 237.157140 s: Source to Link Latency : Avg = 22547 us, Min = 16745 us, Max = 23852 us, [IPU1-0] 237.157262 s: [IPU1-0] 237.656743 s: [IPU1-0] 237.656804 s: ### CPU [ EVE3], LinkID [ 10], [IPU1-0] 237.656896 s: [IPU1-0] 237.656926 s: [ IPC_IN_0 ] Link Statistics, [IPU1-0] 237.657018 s: ****************************** [IPU1-0] 237.657079 s: [IPU1-0] 237.657109 s: Elapsed time = 156686 msec [IPU1-0] 237.657170 s: [IPU1-0] 237.657231 s: Get Full Buf Cb = 5.36 fps [IPU1-0] 237.657323 s: Put Empty Buf Cb = 5.36 fps [IPU1-0] 237.657384 s: Driver/Notify Cb = 5.36 fps [IPU1-0] 237.657475 s: [IPU1-0] 237.657506 s: Input Statistics, [IPU1-0] 237.657567 s: [IPU1-0] 237.657597 s: CH | In Recv | In Drop | In User Drop | In Process [IPU1-0] 237.657719 s: | FPS | FPS | FPS | FPS [IPU1-0] 237.657811 s: -------------------------------------------------- [IPU1-0] 237.657902 s: 0 | 5.36 0. 0 0. 0 5.36 [IPU1-0] 237.658024 s: [IPU1-0] 237.658055 s: Output Statistics, [IPU1-0] 237.658116 s: [IPU1-0] 237.658177 s: CH | Out | Out | Out Drop | Out User Drop [IPU1-0] 237.658238 s: | ID | FPS | FPS | FPS [IPU1-0] 237.658329 s: --------------------------------------------- [IPU1-0] 237.658390 s: 0 | 0 5.36 0. 0 0. 0 [IPU1-0] 237.658512 s: [IPU1-0] 237.658543 s: [ IPC_IN_0 ] LATENCY, [IPU1-0] 237.658634 s: ******************** [IPU1-0] 237.658695 s: Local Link Latency : Avg = 36 us, Min = 30 us, Max = 122 us, [IPU1-0] 237.658817 s: Source to Link Latency : Avg = 49229 us, Min = 17050 us, Max = 69298 us, [IPU1-0] 237.658939 s: [IPU1-0] 237.659061 s: [IPU1-0] 237.659092 s: ### CPU [ EVE3], LinkID [ 49], [IPU1-0] 237.659183 s: [IPU1-0] 237.659214 s: [ ALG_TIDL ] Link Statistics, [IPU1-0] 237.659275 s: ****************************** [IPU1-0] 237.659336 s: [IPU1-0] 237.659397 s: Elapsed time = 156688 msec [IPU1-0] 237.659458 s: [IPU1-0] 237.659488 s: New data Recv = 5.36 fps [IPU1-0] 237.659580 s: [IPU1-0] 237.659610 s: Input Statistics, [IPU1-0] 237.659702 s: [IPU1-0] 237.659732 s: CH | In Recv | In Drop | In User Drop | In Process [IPU1-0] 237.659824 s: | FPS | FPS | FPS | FPS [IPU1-0] 237.659915 s: -------------------------------------------------- [IPU1-0] 237.659976 s: 0 | 5.36 0. 0 0. 0 5.36 [IPU1-0] 237.660129 s: [IPU1-0] 237.660159 s: Output Statistics, [IPU1-0] 237.660220 s: [IPU1-0] 237.660251 s: CH | Out | Out | Out Drop | Out User Drop [IPU1-0] 237.660312 s: | ID | FPS | FPS | FPS [IPU1-0] 237.660403 s: --------------------------------------------- [IPU1-0] 237.660464 s: 0 | 0 5.36 0. 0 0. 0 [IPU1-0] 237.660586 s: [IPU1-0] 237.660861 s: [ ALG_TIDL ] LATENCY, [IPU1-0] 237.660952 s: ******************** [IPU1-0] 237.661013 s: Local Link Latency : Avg = 185542 us, Min = 184713 us, Max = 186574 us, [IPU1-0] 237.661135 s: Source to Link Latency : Avg = 234977 us, Min = 202343 us, Max = 255933 us, [IPU1-0] 237.661257 s: [IPU1-0] 237.661379 s: [IPU1-0] 237.661410 s: ### CPU [ EVE3], LinkID [ 0], [IPU1-0] 237.661471 s: [IPU1-0] 237.661532 s: [ IPC_OUT_0 ] Link Statistics, [IPU1-0] 237.661593 s: ****************************** [IPU1-0] 237.661715 s: [IPU1-0] 237.661776 s: Elapsed time = 156505 msec [IPU1-0] 237.661837 s: [IPU1-0] 237.661898 s: New data Recv = 5.36 fps [IPU1-0] 237.661959 s: Release data Recv = 5.36 fps [IPU1-0] 237.662050 s: Driver/Notify Cb = 15.36 fps [IPU1-0] 237.662111 s: [IPU1-0] 237.662142 s: Input Statistics, [IPU1-0] 237.662203 s: [IPU1-0] 237.662233 s: CH | In Recv | In Drop | In User Drop | In Process [IPU1-0] 237.662325 s: | FPS | FPS | FPS | FPS [IPU1-0] 237.662416 s: -------------------------------------------------- [IPU1-0] 237.662477 s: 0 | 5.36 0. 0 0. 0 5.36 [IPU1-0] 237.662630 s: [IPU1-0] 237.662691 s: Output Statistics, [IPU1-0] 237.662752 s: [IPU1-0] 237.662782 s: CH | Out | Out | Out Drop | Out User Drop [IPU1-0] 237.662843 s: | ID | FPS | FPS | FPS [IPU1-0] 237.662935 s: --------------------------------------------- [IPU1-0] 237.662996 s: 0 | 0 5.36 0. 0 0. 0 [IPU1-0] 237.663118 s: [IPU1-0] 237.663148 s: [ IPC_OUT_0 ] LATENCY, [IPU1-0] 237.663209 s: ******************** [IPU1-0] 237.663270 s: Local Link Latency : Avg = 27 us, Min = 0 us, Max = 122 us, [IPU1-0] 237.663392 s: Source to Link Latency : Avg = 235344 us, Min = 202892 us, Max = 256299 us, [IPU1-0] 237.663514 s: [IPU1-0] 238.162721 s: [IPU1-0] 238.162813 s: ### CPU [ DSP1], LinkID [ 12], [IPU1-0] 238.162874 s: [IPU1-0] 238.162935 s: [ IPC_IN_2 ] Link Statistics, [IPU1-0] 238.162996 s: ****************************** [IPU1-0] 238.163057 s: [IPU1-0] 238.163087 s: Elapsed time = 157005 msec [IPU1-0] 238.163148 s: [IPU1-0] 238.163209 s: Get Full Buf Cb = 21.46 fps [IPU1-0] 238.163270 s: Put Empty Buf Cb = 5.36 fps [IPU1-0] 238.163362 s: Driver/Notify Cb = 5.36 fps [IPU1-0] 238.163453 s: [IPU1-0] 238.163484 s: Input Statistics, [IPU1-0] 238.163545 s: [IPU1-0] 238.163575 s: CH | In Recv | In Drop | In User Drop | In Process [IPU1-0] 238.163697 s: | FPS | FPS | FPS | FPS [IPU1-0] 238.163789 s: -------------------------------------------------- [IPU1-0] 238.163850 s: 0 | 5.36 0. 0 0. 0 5.36 [IPU1-0] 238.164002 s: [IPU1-0] 238.164033 s: Output Statistics, [IPU1-0] 238.164094 s: [IPU1-0] 238.164124 s: CH | Out | Out | Out Drop | Out User Drop [IPU1-0] 238.164216 s: | ID | FPS | FPS | FPS [IPU1-0] 238.164277 s: --------------------------------------------- [IPU1-0] 238.164368 s: 0 | 0 5.36 0. 0 0. 0 [IPU1-0] 238.164490 s: [IPU1-0] 238.164521 s: [ IPC_IN_2 ] LATENCY, [IPU1-0] 238.164582 s: ******************** [IPU1-0] 238.164673 s: Local Link Latency : Avg = 8 us, Min = 0 us, Max = 31 us, [IPU1-0] 238.164795 s: Source to Link Latency : Avg = 235517 us, Min = 203044 us, Max = 256451 us, [IPU1-0] 238.164917 s: [IPU1-0] 238.664856 s: [IPU1-0] 238.664948 s: ### CPU [ HOST], LinkID [ 1], [IPU1-0] 238.665009 s: [IPU1-0] 238.665070 s: [ IPC_OUT_1 ] Link Statistics, [IPU1-0] 238.665131 s: ****************************** [IPU1-0] 238.665192 s: [IPU1-0] 238.665222 s: Elapsed time = 157728 msec [IPU1-0] 238.665314 s: [IPU1-0] 238.665344 s: New data Recv = 5.37 fps [IPU1-0] 238.665405 s: Release data Recv = 5.36 fps [IPU1-0] 238.665497 s: Driver/Notify Cb = 105.36 fps [IPU1-0] 238.665558 s: [IPU1-0] 238.665619 s: Input Statistics, [IPU1-0] 238.665893 s: [IPU1-0] 238.665954 s: CH | In Recv | In Drop | In User Drop | In Process [IPU1-0] 238.666046 s: | FPS | FPS | FPS | FPS [IPU1-0] 238.666107 s: -------------------------------------------------- [IPU1-0] 238.666198 s: 0 | 5.37 0. 0 0. 0 5.37 [IPU1-0] 238.666351 s: [IPU1-0] 238.666381 s: Output Statistics, [IPU1-0] 238.666442 s: [IPU1-0] 238.666473 s: CH | Out | Out | Out Drop | Out User Drop [IPU1-0] 238.666534 s: | ID | FPS | FPS | FPS [IPU1-0] 238.666625 s: --------------------------------------------- [IPU1-0] 238.666717 s: 0 | 0 5.37 0. 0 0. 0 [IPU1-0] 238.666839 s: [IPU1-0] 238.666900 s: [ IPC_OUT_1 ] LATENCY, [IPU1-0] 238.666961 s: ******************** [IPU1-0] 238.667022 s: Local Link Latency : Avg = 1 us, Min = 0 us, Max = 31 us, [IPU1-0] 238.667144 s: Source to Link Latency : Avg = 22501 us, Min = 16684 us, Max = 23729 us, [IPU1-0] 238.667266 s: [IPU1-0] 239.166809 s: [IPU1-0] 239.166900 s: ### CPU [ EVE2], LinkID [ 10], [IPU1-0] 239.166992 s: [IPU1-0] 239.167022 s: [ IPC_IN_0 ] Link Statistics, [IPU1-0] 239.167083 s: ****************************** [IPU1-0] 239.167175 s: [IPU1-0] 239.167205 s: Elapsed time = 158229 msec [IPU1-0] 239.167266 s: [IPU1-0] 239.167327 s: Get Full Buf Cb = 5.37 fps [IPU1-0] 239.167388 s: Put Empty Buf Cb = 5.36 fps [IPU1-0] 239.167480 s: Driver/Notify Cb = 5.36 fps [IPU1-0] 239.167571 s: [IPU1-0] 239.167602 s: Input Statistics, [IPU1-0] 239.167693 s: [IPU1-0] 239.167754 s: CH | In Recv | In Drop | In User Drop | In Process [IPU1-0] 239.167846 s: | FPS | FPS | FPS | FPS [IPU1-0] 239.167907 s: -------------------------------------------------- [IPU1-0] 239.167998 s: 0 | 5.37 0. 0 0. 0 5.37 [IPU1-0] 239.168151 s: [IPU1-0] 239.168181 s: Output Statistics, [IPU1-0] 239.168242 s: [IPU1-0] 239.168273 s: CH | Out | Out | Out Drop | Out User Drop [IPU1-0] 239.168364 s: | ID | FPS | FPS | FPS [IPU1-0] 239.168425 s: --------------------------------------------- [IPU1-0] 239.168791 s: 0 | 0 5.37 0. 0 0. 0 [IPU1-0] 239.169066 s: [IPU1-0] 239.169127 s: [ IPC_IN_0 ] LATENCY, [IPU1-0] 239.169340 s: ******************** [IPU1-0] 239.169401 s: Local Link Latency : Avg = 35 us, Min = 30 us, Max = 122 us, [IPU1-0] 239.169523 s: Source to Link Latency : Avg = 49163 us, Min = 16989 us, Max = 68749 us, [IPU1-0] 239.169645 s: [IPU1-0] 239.169798 s: [IPU1-0] 239.169859 s: ### CPU [ EVE2], LinkID [ 49], [IPU1-0] 239.169950 s: [IPU1-0] 239.169981 s: [ ALG_TIDL ] Link Statistics, [IPU1-0] 239.170042 s: ****************************** [IPU1-0] 239.170103 s: [IPU1-0] 239.170133 s: Elapsed time = 158232 msec [IPU1-0] 239.170225 s: [IPU1-0] 239.170255 s: New data Recv = 5.37 fps [IPU1-0] 239.170347 s: [IPU1-0] 239.170377 s: Input Statistics, [IPU1-0] 239.170438 s: [IPU1-0] 239.170469 s: CH | In Recv | In Drop | In User Drop | In Process [IPU1-0] 239.170530 s: | FPS | FPS | FPS | FPS [IPU1-0] 239.170621 s: -------------------------------------------------- [IPU1-0] 239.170957 s: 0 | 5.37 0. 0 0. 0 5.36 [IPU1-0] 239.171109 s: [IPU1-0] 239.171140 s: Output Statistics, [IPU1-0] 239.171201 s: [IPU1-0] 239.171231 s: CH | Out | Out | Out Drop | Out User Drop [IPU1-0] 239.171323 s: | ID | FPS | FPS | FPS [IPU1-0] 239.171384 s: --------------------------------------------- [IPU1-0] 239.171475 s: 0 | 0 5.36 0. 0 0. 0 [IPU1-0] 239.171597 s: [IPU1-0] 239.171628 s: [ ALG_TIDL ] LATENCY, [IPU1-0] 239.171719 s: ******************** [IPU1-0] 239.171811 s: Local Link Latency : Avg = 185529 us, Min = 184499 us, Max = 186512 us, [IPU1-0] 239.171933 s: Source to Link Latency : Avg = 234895 us, Min = 201733 us, Max = 255719 us, [IPU1-0] 239.172055 s: [IPU1-0] 239.172146 s: [IPU1-0] 239.172207 s: ### CPU [ EVE2], LinkID [ 0], [IPU1-0] 239.172268 s: [IPU1-0] 239.172299 s: [ IPC_OUT_0 ] Link Statistics, [IPU1-0] 239.172390 s: ****************************** [IPU1-0] 239.172451 s: [IPU1-0] 239.172482 s: Elapsed time = 158050 msec [IPU1-0] 239.172543 s: [IPU1-0] 239.172604 s: New data Recv = 5.37 fps [IPU1-0] 239.172695 s: Release data Recv = 5.37 fps [IPU1-0] 239.172787 s: Driver/Notify Cb = 15.36 fps [IPU1-0] 239.172848 s: [IPU1-0] 239.172909 s: Input Statistics, [IPU1-0] 239.172939 s: [IPU1-0] 239.173000 s: CH | In Recv | In Drop | In User Drop | In Process [IPU1-0] 239.173061 s: | FPS | FPS | FPS | FPS [IPU1-0] 239.173153 s: -------------------------------------------------- [IPU1-0] 239.173214 s: 0 | 5.37 0. 0 0. 0 5.37 [IPU1-0] 239.173366 s: [IPU1-0] 239.173397 s: Output Statistics, [IPU1-0] 239.173458 s: [IPU1-0] 239.173488 s: CH | Out | Out | Out Drop | Out User Drop [IPU1-0] 239.173549 s: | ID | FPS | FPS | FPS [IPU1-0] 239.173641 s: --------------------------------------------- [IPU1-0] 239.173732 s: 0 | 0 5.37 0. 0 0. 0 [IPU1-0] 239.173854 s: [IPU1-0] 239.173885 s: [ IPC_OUT_0 ] LATENCY, [IPU1-0] 239.173946 s: ******************** [IPU1-0] 239.174007 s: Local Link Latency : Avg = 29 us, Min = 0 us, Max = 122 us, [IPU1-0] 239.174129 s: Source to Link Latency : Avg = 235266 us, Min = 202312 us, Max = 256085 us, [IPU1-0] 239.174251 s: [IPU1-0] 239.673763 s: [IPU1-0] 239.673854 s: ### CPU [ DSP1], LinkID [ 11], [IPU1-0] 239.673915 s: [IPU1-0] 239.673976 s: [ IPC_IN_1 ] Link Statistics, [IPU1-0] 239.674037 s: ****************************** [IPU1-0] 239.674098 s: [IPU1-0] 239.674159 s: Elapsed time = 158550 msec [IPU1-0] 239.674220 s: [IPU1-0] 239.674251 s: Get Full Buf Cb = 21.46 fps [IPU1-0] 239.674342 s: Put Empty Buf Cb = 5.36 fps [IPU1-0] 239.674403 s: Driver/Notify Cb = 5.36 fps [IPU1-0] 239.674495 s: [IPU1-0] 239.674525 s: Input Statistics, [IPU1-0] 239.674586 s: [IPU1-0] 239.674617 s: CH | In Recv | In Drop | In User Drop | In Process [IPU1-0] 239.674739 s: | FPS | FPS | FPS | FPS [IPU1-0] 239.674830 s: -------------------------------------------------- [IPU1-0] 239.674922 s: 0 | 5.36 0. 0 0. 0 5.36 [IPU1-0] 239.675044 s: [IPU1-0] 239.675074 s: Output Statistics, [IPU1-0] 239.675135 s: [IPU1-0] 239.675166 s: CH | Out | Out | Out Drop | Out User Drop [IPU1-0] 239.675257 s: | ID | FPS | FPS | FPS [IPU1-0] 239.675318 s: --------------------------------------------- [IPU1-0] 239.675410 s: 0 | 0 5.36 0. 0 0. 0 [IPU1-0] 239.675532 s: [IPU1-0] 239.675562 s: [ IPC_IN_1 ] LATENCY, [IPU1-0] 239.675623 s: ******************** [IPU1-0] 239.675928 s: Local Link Latency : Avg = 8 us, Min = 0 us, Max = 31 us, [IPU1-0] 239.676050 s: Source to Link Latency : Avg = 235443 us, Min = 202465 us, Max = 256237 us, [IPU1-0] 239.676172 s: [IPU1-0] 240.175989 s: [IPU1-0] 240.176081 s: ### CPU [ HOST], LinkID [ 0], [IPU1-0] 240.176142 s: [IPU1-0] 240.176172 s: [ IPC_OUT_0 ] Link Statistics, [IPU1-0] 240.176264 s: ****************************** [IPU1-0] 240.176325 s: [IPU1-0] 240.176355 s: Elapsed time = 159272 msec [IPU1-0] 240.176416 s: [IPU1-0] 240.176477 s: New data Recv = 5.36 fps [IPU1-0] 240.176538 s: Release data Recv = 5.36 fps [IPU1-0] 240.176630 s: Driver/Notify Cb = 105.36 fps [IPU1-0] 240.176721 s: [IPU1-0] 240.176782 s: Input Statistics, [IPU1-0] 240.176813 s: [IPU1-0] 240.176874 s: CH | In Recv | In Drop | In User Drop | In Process [IPU1-0] 240.176935 s: | FPS | FPS | FPS | FPS [IPU1-0] 240.177026 s: -------------------------------------------------- [IPU1-0] 240.177087 s: 0 | 5.36 0. 0 0. 0 5.36 [IPU1-0] 240.177240 s: [IPU1-0] 240.177270 s: Output Statistics, [IPU1-0] 240.177331 s: [IPU1-0] 240.177362 s: CH | Out | Out | Out Drop | Out User Drop [IPU1-0] 240.177423 s: | ID | FPS | FPS | FPS [IPU1-0] 240.177514 s: --------------------------------------------- [IPU1-0] 240.177575 s: 0 | 0 5.36 0. 0 0. 0 [IPU1-0] 240.177728 s: [IPU1-0] 240.177758 s: [ IPC_OUT_0 ] LATENCY, [IPU1-0] 240.177819 s: ******************** [IPU1-0] 240.177880 s: Local Link Latency : Avg = 1 us, Min = 0 us, Max = 31 us, [IPU1-0] 240.178002 s: Source to Link Latency : Avg = 22467 us, Min = 16745 us, Max = 23669 us, [IPU1-0] 240.178124 s: [IPU1-0] 240.677819 s: [IPU1-0] 240.677880 s: ### CPU [ EVE1], LinkID [ 10], [IPU1-0] 240.677972 s: [IPU1-0] 240.678002 s: [ IPC_IN_0 ] Link Statistics, [IPU1-0] 240.678094 s: ****************************** [IPU1-0] 240.678155 s: [IPU1-0] 240.678185 s: Elapsed time = 159773 msec [IPU1-0] 240.678246 s: [IPU1-0] 240.678307 s: Get Full Buf Cb = 5.37 fps [IPU1-0] 240.678368 s: Put Empty Buf Cb = 5.36 fps [IPU1-0] 240.678460 s: Driver/Notify Cb = 5.36 fps [IPU1-0] 240.678521 s: [IPU1-0] 240.678582 s: Input Statistics, [IPU1-0] 240.678612 s: [IPU1-0] 240.678673 s: CH | In Recv | In Drop | In User Drop | In Process [IPU1-0] 240.678765 s: | FPS | FPS | FPS | FPS [IPU1-0] 240.678856 s: -------------------------------------------------- [IPU1-0] 240.678948 s: 0 | 5.37 0. 0 0. 0 5.37 [IPU1-0] 240.679070 s: [IPU1-0] 240.679131 s: Output Statistics, [IPU1-0] 240.679192 s: [IPU1-0] 240.679222 s: CH | Out | Out | Out Drop | Out User Drop [IPU1-0] 240.679314 s: | ID | FPS | FPS | FPS [IPU1-0] 240.679405 s: --------------------------------------------- [IPU1-0] 240.679680 s: 0 | 0 5.37 0. 0 0. 0 [IPU1-0] 240.679832 s: [IPU1-0] 240.679893 s: [ IPC_IN_0 ] LATENCY, [IPU1-0] 240.679954 s: ******************** [IPU1-0] 240.680015 s: Local Link Latency : Avg = 34 us, Min = 30 us, Max = 153 us, [IPU1-0] 240.680137 s: Source to Link Latency : Avg = 49510 us, Min = 17080 us, Max = 67925 us, [IPU1-0] 240.680259 s: [IPU1-0] 240.680381 s: [IPU1-0] 240.680412 s: ### CPU [ EVE1], LinkID [ 49], [IPU1-0] 240.680503 s: [IPU1-0] 240.680534 s: [ ALG_TIDL ] Link Statistics, [IPU1-0] 240.680595 s: ****************************** [IPU1-0] 240.680656 s: [IPU1-0] 240.680930 s: Elapsed time = 159776 msec [IPU1-0] 240.681022 s: [IPU1-0] 240.681083 s: New data Recv = 5.37 fps [IPU1-0] 240.681144 s: [IPU1-0] 240.681205 s: Input Statistics, [IPU1-0] 240.681235 s: [IPU1-0] 240.681296 s: CH | In Recv | In Drop | In User Drop | In Process [IPU1-0] 240.681357 s: | FPS | FPS | FPS | FPS [IPU1-0] 240.681449 s: -------------------------------------------------- [IPU1-0] 240.681540 s: 0 | 5.37 0. 0 0. 0 5.36 [IPU1-0] 240.681662 s: [IPU1-0] 240.681723 s: Output Statistics, [IPU1-0] 240.681784 s: [IPU1-0] 240.681845 s: CH | Out | Out | Out Drop | Out User Drop [IPU1-0] 240.681906 s: | ID | FPS | FPS | FPS [IPU1-0] 240.681998 s: --------------------------------------------- [IPU1-0] 240.682059 s: 0 | 0 5.36 0. 0 0. 0 [IPU1-0] 240.682181 s: [IPU1-0] 240.682242 s: [ ALG_TIDL ] LATENCY, [IPU1-0] 240.682303 s: ******************** [IPU1-0] 240.682333 s: Local Link Latency : Avg = 185530 us, Min = 183676 us, Max = 186604 us, [IPU1-0] 240.682455 s: Source to Link Latency : Avg = 235250 us, Min = 200970 us, Max = 253645 us, [IPU1-0] 240.682577 s: [IPU1-0] 240.682730 s: [IPU1-0] 240.682791 s: ### CPU [ EVE1], LinkID [ 0], [IPU1-0] 240.682852 s: [IPU1-0] 240.682913 s: [ IPC_OUT_0 ] Link Statistics, [IPU1-0] 240.682974 s: ****************************** [IPU1-0] 240.683035 s: [IPU1-0] 240.683065 s: Elapsed time = 159594 msec [IPU1-0] 240.683157 s: [IPU1-0] 240.683187 s: New data Recv = 5.36 fps [IPU1-0] 240.683279 s: Release data Recv = 5.36 fps [IPU1-0] 240.683340 s: Driver/Notify Cb = 15.36 fps [IPU1-0] 240.683431 s: [IPU1-0] 240.683462 s: Input Statistics, [IPU1-0] 240.683523 s: [IPU1-0] 240.683553 s: CH | In Recv | In Drop | In User Drop | In Process [IPU1-0] 240.683645 s: | FPS | FPS | FPS | FPS [IPU1-0] 240.683828 s: -------------------------------------------------- [IPU1-0] 240.683950 s: 0 | 5.36 0. 0 0. 0 5.36 [IPU1-0] 240.684072 s: [IPU1-0] 240.684102 s: Output Statistics, [IPU1-0] 240.684163 s: [IPU1-0] 240.684224 s: CH | Out | Out | Out Drop | Out User Drop [IPU1-0] 240.684285 s: | ID | FPS | FPS | FPS [IPU1-0] 240.684560 s: --------------------------------------------- [IPU1-0] 240.684651 s: 0 | 0 5.36 0. 0 0. 0 [IPU1-0] 240.684834 s: [IPU1-0] 240.684865 s: [ IPC_OUT_0 ] LATENCY, [IPU1-0] 240.684926 s: ******************** [IPU1-0] 240.684987 s: Local Link Latency : Avg = 27 us, Min = 0 us, Max = 122 us, [IPU1-0] 240.685109 s: Source to Link Latency : Avg = 235622 us, Min = 201519 us, Max = 253980 us, [IPU1-0] 240.685231 s: [IPU1-0] 241.184956 s: [IPU1-0] 241.185048 s: ### CPU [ DSP1], LinkID [ 10], [IPU1-0] 241.185109 s: [IPU1-0] 241.185139 s: [ IPC_IN_0 ] Link Statistics, [IPU1-0] 241.185231 s: ****************************** [IPU1-0] 241.185292 s: [IPU1-0] 241.185323 s: Elapsed time = 160096 msec [IPU1-0] 241.185414 s: [IPU1-0] 241.185445 s: Get Full Buf Cb = 21.46 fps [IPU1-0] 241.185536 s: Put Empty Buf Cb = 5.37 fps [IPU1-0] 241.185597 s: Driver/Notify Cb = 5.36 fps [IPU1-0] 241.185689 s: [IPU1-0] 241.185963 s: Input Statistics, [IPU1-0] 241.186055 s: [IPU1-0] 241.186085 s: CH | In Recv | In Drop | In User Drop | In Process [IPU1-0] 241.186177 s: | FPS | FPS | FPS | FPS [IPU1-0] 241.186238 s: -------------------------------------------------- [IPU1-0] 241.186329 s: 0 | 5.37 0. 0 0. 0 5.37 [IPU1-0] 241.186451 s: [IPU1-0] 241.186482 s: Output Statistics, [IPU1-0] 241.186543 s: [IPU1-0] 241.186573 s: CH | Out | Out | Out Drop | Out User Drop [IPU1-0] 241.186665 s: | ID | FPS | FPS | FPS [IPU1-0] 241.186787 s: --------------------------------------------- [IPU1-0] 241.186878 s: 0 | 0 5.37 0. 0 0. 0 [IPU1-0] 241.187000 s: [IPU1-0] 241.187031 s: [ IPC_IN_0 ] LATENCY, [IPU1-0] 241.187092 s: ******************** [IPU1-0] 241.187153 s: Local Link Latency : Avg = 8 us, Min = 0 us, Max = 31 us, [IPU1-0] 241.187275 s: Source to Link Latency : Avg = 235781 us, Min = 201671 us, Max = 254133 us, [IPU1-0] 241.187397 s: [IPU1-0] 241.187427 s: CPU [ DSP1], LinkID [ 38], Link Statistics not available ! [IPU1-0] 241.187610 s: [IPU1-0] 241.187641 s: ### CPU [ DSP1], LinkID [ 49], [IPU1-0] 241.187763 s: [IPU1-0] 241.187793 s: [ ALG_TIDL ] Link Statistics, [IPU1-0] 241.187854 s: ****************************** [IPU1-0] 241.187946 s: [IPU1-0] 241.187976 s: Elapsed time = 160098 msec [IPU1-0] 241.188037 s: [IPU1-0] 241.188098 s: New data Recv = 42.93 fps [IPU1-0] 241.188159 s: [IPU1-0] 241.188220 s: Input Statistics, [IPU1-0] 241.188251 s: [IPU1-0] 241.188312 s: CH | In Recv | In Drop | In User Drop | In Process [IPU1-0] 241.188373 s: | FPS | FPS | FPS | FPS [IPU1-0] 241.188464 s: -------------------------------------------------- [IPU1-0] 241.188556 s: 0 | 21.46 0. 0 0. 0 21.46 [IPU1-0] 241.188708 s: [IPU1-0] 241.188769 s: Output Statistics, [IPU1-0] 241.188830 s: [IPU1-0] 241.188861 s: CH | Out | Out | Out Drop | Out User Drop [IPU1-0] 241.188922 s: | ID | FPS | FPS | FPS [IPU1-0] 241.189013 s: --------------------------------------------- [IPU1-0] 241.189105 s: 0 | 0 21.46 0. 0 0. 0 [IPU1-0] 241.189196 s: [IPU1-0] 241.189257 s: [ ALG_TIDL ] LATENCY, [IPU1-0] 241.189318 s: ******************** [IPU1-0] 241.189349 s: Local Link Latency : Avg = 18867 us, Min = 18636 us, Max = 24553 us, [IPU1-0] 241.189471 s: Source to Link Latency : Avg = 254509 us, Min = 220704 us, Max = 279296 us, [IPU1-0] 241.189593 s: [IPU1-0] 241.189745 s: [IPU1-0] 241.189806 s: ### CPU [ DSP1], LinkID [ 0], [IPU1-0] 241.189867 s: [IPU1-0] 241.189898 s: [ IPC_OUT_0 ] Link Statistics, [IPU1-0] 241.189989 s: ****************************** [IPU1-0] 241.190050 s: [IPU1-0] 241.190081 s: Elapsed time = 160081 msec [IPU1-0] 241.190142 s: [IPU1-0] 241.190203 s: New data Recv = 21.47 fps [IPU1-0] 241.190264 s: Release data Recv = 21.48 fps [IPU1-0] 241.190355 s: Driver/Notify Cb = 121.46 fps [IPU1-0] 241.190416 s: [IPU1-0] 241.190447 s: Input Statistics, [IPU1-0] 241.190508 s: [IPU1-0] 241.190538 s: CH | In Recv | In Drop | In User Drop | In Process [IPU1-0] 241.190630 s: | FPS | FPS | FPS | FPS [IPU1-0] 241.190691 s: -------------------------------------------------- [IPU1-0] 241.190996 s: 0 | 21.47 0. 0 0. 0 21.47 [IPU1-0] 241.191148 s: [IPU1-0] 241.191209 s: Output Statistics, [IPU1-0] 241.191240 s: [IPU1-0] 241.191270 s: CH | Out | Out | Out Drop | Out User Drop [IPU1-0] 241.191362 s: | ID | FPS | FPS | FPS [IPU1-0] 241.191423 s: --------------------------------------------- [IPU1-0] 241.191514 s: 0 | 0 21.47 0. 0 0. 0 [IPU1-0] 241.191636 s: [IPU1-0] 241.191667 s: [ IPC_OUT_0 ] LATENCY, [IPU1-0] 241.191758 s: ******************** [IPU1-0] 241.191850 s: Local Link Latency : Avg = 2 us, Min = 0 us, Max = 31 us, [IPU1-0] 241.191941 s: Source to Link Latency : Avg = 254606 us, Min = 220795 us, Max = 279449 us, [IPU1-0] 241.192063 s: [IPU1-0] 241.691850 s: [IPU1-0] 241.691911 s: ### CPU [IPU1-0], LinkID [ 10], [IPU1-0] 241.692002 s: [IPU1-0] 241.692033 s: [ IPC_IN_0 ] Link Statistics, [IPU1-0] 241.692094 s: ****************************** [IPU1-0] 241.692155 s: [IPU1-0] 241.692185 s: Elapsed time = 160583 msec [IPU1-0] 241.692277 s: [IPU1-0] 241.692307 s: Get Full Buf Cb = 42.93 fps [IPU1-0] 241.692399 s: Put Empty Buf Cb = 21.47 fps [IPU1-0] 241.692460 s: Driver/Notify Cb = 21.46 fps [IPU1-0] 241.692551 s: [IPU1-0] 241.692582 s: Input Statistics, [IPU1-0] 241.692643 s: [IPU1-0] 241.692673 s: CH | In Recv | In Drop | In User Drop | In Process [IPU1-0] 241.692765 s: | FPS | FPS | FPS | FPS [IPU1-0] 241.692856 s: -------------------------------------------------- [IPU1-0] 241.692948 s: 0 | 21.47 0. 0 0. 0 21.47 [IPU1-0] 241.693070 s: [IPU1-0] 241.693131 s: Output Statistics, [IPU1-0] 241.693161 s: [IPU1-0] 241.693222 s: CH | Out | Out | Out Drop | Out User Drop [IPU1-0] 241.693283 s: | ID | FPS | FPS | FPS [IPU1-0] 241.693344 s: --------------------------------------------- [IPU1-0] 241.693436 s: 0 | 0 21.47 0. 0 0. 0 [IPU1-0] 241.693558 s: [IPU1-0] 241.693588 s: [ IPC_IN_0 ] LATENCY, [IPU1-0] 241.693649 s: ******************** [IPU1-0] 241.693710 s: Local Link Latency : Avg = 22 us, Min = 0 us, Max = 213 us, [IPU1-0] 241.693832 s: Source to Link Latency : Avg = 254773 us, Min = 220978 us, Max = 279601 us, [IPU1-0] 241.693985 s: [IPU1-0] 241.694015 s: CPU [ IPU1-0], LinkID [ 38], Link Statistics not available ! [IPU1-0] 241.694198 s: [IPU1-0] 241.694229 s: ### CPU [IPU1-0], LinkID [ 34], [IPU1-0] 241.694290 s: [IPU1-0] 241.694351 s: [ SYNC_0 ] Link Statistics, [IPU1-0] 241.694412 s: ****************************** [IPU1-0] 241.694473 s: [IPU1-0] 241.694503 s: Elapsed time = 160867 msec [IPU1-0] 241.694564 s: [IPU1-0] 241.694625 s: New data Recv = 72.97 fps [IPU1-0] 241.694686 s: Get Full Buf Cb = 21.43 fps [IPU1-0] 241.694808 s: Put Empty Buf Cb = 21.43 fps [IPU1-0] 241.694900 s: Driver/Notify Cb = 30.29 fps [IPU1-0] 241.694961 s: [IPU1-0] 241.694991 s: Input Statistics, [IPU1-0] 241.695052 s: [IPU1-0] 241.695083 s: CH | In Recv | In Drop | In User Drop | In Process [IPU1-0] 241.695174 s: | FPS | FPS | FPS | FPS [IPU1-0] 241.695266 s: -------------------------------------------------- [IPU1-0] 241.695327 s: 0 | 21.46 0. 0 0. 0 21.43 [IPU1-0] 241.695479 s: 1 | 21.43 0. 0 0. 0 21.43 [IPU1-0] 241.695601 s: [IPU1-0] 241.695632 s: Output Statistics, [IPU1-0] 241.695693 s: [IPU1-0] 241.695967 s: CH | Out | Out | Out Drop | Out User Drop [IPU1-0] 241.696059 s: | ID | FPS | FPS | FPS [IPU1-0] 241.696150 s: --------------------------------------------- [IPU1-0] 241.696211 s: 0 | 0 21.43 0. 0 0. 0 [IPU1-0] 241.696333 s: [IPU1-0] 241.696364 s: [ SYNC_0 ] LATENCY, [IPU1-0] 241.696425 s: ******************** [IPU1-0] 241.696486 s: Local Link Latency : Avg = 127331 us, Min = 30 us, Max = 279662 us, [IPU1-0] 241.696608 s: Source to Link Latency : Avg = 254981 us, Min = 221222 us, Max = 279998 us, [IPU1-0] 241.696760 s: [IPU1-0] 241.696882 s: [IPU1-0] 241.696913 s: ### CPU [IPU1-0], LinkID [ 49], [IPU1-0] 241.697004 s: [IPU1-0] 241.697035 s: [ ALG_OBJECT_DRAW ] Link Statistics, [IPU1-0] 241.697126 s: ****************************** [IPU1-0] 241.697187 s: [IPU1-0] 241.697218 s: Elapsed time = 160589 msec [IPU1-0] 241.697279 s: [IPU1-0] 241.697340 s: New data Recv = 21.47 fps [IPU1-0] 241.697401 s: [IPU1-0] 241.697462 s: Input Statistics, [IPU1-0] 241.697492 s: [IPU1-0] 241.697553 s: CH | In Recv | In Drop | In User Drop | In Process [IPU1-0] 241.697614 s: | FPS | FPS | FPS | FPS [IPU1-0] 241.697706 s: -------------------------------------------------- [IPU1-0] 241.697797 s: 0 | 21.47 0. 0 0. 0 21.47 [IPU1-0] 241.697950 s: [IPU1-0] 241.697980 s: Output Statistics, [IPU1-0] 241.698041 s: [IPU1-0] 241.698072 s: CH | Out | Out | Out Drop | Out User Drop [IPU1-0] 241.698163 s: | ID | FPS | FPS | FPS [IPU1-0] 241.698224 s: --------------------------------------------- [IPU1-0] 241.698316 s: 0 | 0 21.47 0. 0 0. 0 [IPU1-0] 241.698438 s: [IPU1-0] 241.698468 s: [ ALG_OBJECT_DRAW ] LATENCY, [IPU1-0] 241.698529 s: ******************** [IPU1-0] 241.698590 s: Local Link Latency : Avg = 581 us, Min = 427 us, Max = 1525 us, [IPU1-0] 241.698743 s: Source to Link Latency : Avg = 255682 us, Min = 222198 us, Max = 281004 us, [IPU1-0] 241.698865 s: [IPU1-0] 241.698987 s: [IPU1-0] 241.699017 s: ### CPU [IPU1-0], LinkID [ 71], [IPU1-0] 241.699109 s: [IPU1-0] 241.699139 s: [ DISPLAY ] Link Statistics, [IPU1-0] 241.699200 s: ****************************** [IPU1-0] 241.699261 s: [IPU1-0] 241.699292 s: Elapsed time = 160590 msec [IPU1-0] 241.699383 s: [IPU1-0] 241.699414 s: New data Recv = 21.46 fps [IPU1-0] 241.699475 s: Driver/Notify Cb = 60.2 fps [IPU1-0] 241.699566 s: [IPU1-0] 241.699597 s: Input Statistics, [IPU1-0] 241.699658 s: [IPU1-0] 241.699688 s: CH | In Recv | In Drop | In User Drop | In Process [IPU1-0] 241.699810 s: | FPS | FPS | FPS | FPS [IPU1-0] 241.699871 s: -------------------------------------------------- [IPU1-0] 241.699963 s: 0 | 21.47 0. 0 0. 0 21.47 [IPU1-0] 241.700085 s: [IPU1-0] 241.700146 s: [ DISPLAY ] LATENCY, [IPU1-0] 241.700207 s: ******************** [IPU1-0] 241.700268 s: Local Link Latency : Avg = 56 us, Min = 30 us, Max = 671 us, [IPU1-0] 241.700359 s: Source to Link Latency : Avg = 255867 us, Min = 222595 us, Max = 281187 us, [IPU1-0] 241.700573 s: [IPU1-0] 241.700634 s: Display UnderFlow Count = 0 [IPU1-0] 241.700695 s: [IPU1-0] 241.700969 s: CPU [ IPU1-0], LinkID [ 23], Link Statistics not available ! [IPU1-0] 241.701152 s: [IPU1-0] 241.701213 s: ### CPU [IPU1-0], LinkID [ 72], [IPU1-0] 241.701274 s: [IPU1-0] 241.701305 s: [ DISPLAY ] Link Statistics, [IPU1-0] 241.701396 s: ****************************** [IPU1-0] 241.701457 s: [IPU1-0] 241.701488 s: Elapsed time = 160907 msec [IPU1-0] 241.701549 s: [IPU1-0] 241.701579 s: Driver/Notify Cb = 60.3 fps [IPU1-0] 241.701671 s: [IPU1-0] 241.701701 s: Input Statistics, [IPU1-0] 241.701793 s: [IPU1-0] 241.701823 s: CH | In Recv | In Drop | In User Drop | In Process [IPU1-0] 241.701915 s: | FPS | FPS | FPS | FPS [IPU1-0] 241.701976 s: -------------------------------------------------- [IPU1-0] 241.702067 s: 0 | 0. 0 0. 0 0. 0 0. 0 [IPU1-0] 241.702189 s: [IPU1-0] 241.702250 s: [ DISPLAY ] LATENCY, [IPU1-0] 241.702311 s: ******************** [IPU1-0] 241.702372 s: Local Link Latency : Avg = 30 us, Min = 30 us, Max = 30 us, [IPU1-0] 241.702494 s: Source to Link Latency : Avg = 110108 us, Min = 110108 us, Max = 110108 us, [IPU1-0] 241.702677 s: [IPU1-0] 241.702708 s: Display UnderFlow Count = 0 [IPU1-0] 241.702952 s: [IPU1-0] 242.202830 s: [IPU1-0] [IPU1-0] ==================== [IPU1-0] Chains Run-time Menu [IPU1-0] ==================== [IPU1-0] [IPU1-0] 0: Stop Chain [IPU1-0] [IPU1-0] 1: Pause Chain [IPU1-0] 2: Resume Chain [IPU1-0] [IPU1-0] p: Print Statistics [IPU1-0] [IPU1-0] Enter Choice: [IPU1-0] [IPU1-0] 242.203074 s: [IPU1-0] [IPU1-0] ==================== [IPU1-0] Chains Run-time Menu [IPU1-0] ==================== [IPU1-0] [IPU1-0] 0: Stop Chain [IPU1-0] [IPU1-0] 1: Pause Chain [IPU1-0] 2: Resume Chain [IPU1-0] [IPU1-0] p: Print Statistics [IPU1-0] [IPU1-0] Enter Choice: [IPU1-0]

Hi He Wei, Form the log, usecase is running properly without dropping any frame, so issue is either in RGB input may be going wrong or net and params.bin files may be wrong. So, please follow below steps 1. Verify that "tidl_net_jdetNet_ssd.bin" and tidl_param_jdetNet_ssd.bin" generated are correct, for that check import tool output (stats_tool_out.bin) for detection's while generating net and param bin files. For visualisation code (to see the detected objects in the output) please refer to below thread. e2e.ti.com/.../2502331 2. After verifying that "tidl_net_jdetNet_ssd.bin" and tidl_param_jdetNet_ssd.bin" are correct, then we can check RGB input is correct or not Thanks, Praveen

Dear Praveen, I put some debug log inside objectDrawLink_algPlugin.c, indeed, there are object detection observed from the log but got the below issues: 1. It is so "easy" to come out the "vehicle" object detection even I don't put the toy car in front of the capture camera. - Is the threshold set too low? Will it help if I increase the detection threshold? 2. The bounding box is not drawn correctly: I can see the color dot blinking when detecting corresponding object.e.g. vehicle. but not the drawing box. Is the bounding box's x, y label output from algorithm module? It could be the "tidl_net_jdetNet_ssd.bin" and tidl_param_jdetNet_ssd.bin" issue? Thanks and best regards He Wei

In addition: By enabling the log: Vps_printf(" ALG_OBJECT_DRAW: Tag=%d, Type=%d, SubType=%d, Score=%f, Scale=%f, (%d, %d : %d x %d)\n", pObjectDataDesc->objTag, pObjectDataDesc->objType, pObjectDataDesc->objSubType, pObjectDataDesc->objScore, pObjectDataDesc->objScale, pObjectDataDesc->xPos, pObjectDataDesc->yPos, pObjectDataDesc->objWidth, pObjectDataDesc->objHeight ); [IPU1-0] 260.159824 s: ALG_OBJECT_DRAW: Tag=0, Type=2, SubType=1, Score=0.398224, Scale=1.000000, (4, 4 : 0 x 0) [IPU1-0] 260.196425 s: ALG_OBJECT_DRAW: Tag=0, Type=2, SubType=1, Score=0.319275, Scale=1.000000, (4, 4 : 0 x 0) [IPU1-0] 260.231592 s: ALG_OBJECT_DRAW: Tag=0, Type=2, SubType=1, Score=0.323944, Scale=1.000000, (4, 4 : 0 x 0) [IPU1-0] 260.417983 s: ALG_OBJECT_DRAW: Tag=0, Type=2, SubType=1, Score=0.429199, Scale=1.000000, (4, 4 : 0 x 0) [IPU1-0] 260.496583 s: ALG_OBJECT_DRAW: Tag=0, Type=2, SubType=1, Score=0.430817, Scale=1.000000, (4, 4 : 0 x 0) [IPU1-0] 260.532574 s: ALG_OBJECT_DRAW: Tag=0, Type=2, SubType=1, Score=0.421326, Scale=1.000000, (4, 4 : 0 x 0) So the Width and Height is always 0x0. Any opinion where could go wrong? Thanks and best regards He Wei

In addition, By enabling the log: Vps_printf(" ALG_OBJECT_DRAW: Tag=%d, Type=%d, SubType=%d, Score=%f, Scale=%f, (%d, %d : %d x %d)\n", pObjectDataDesc->objTag, pObjectDataDesc->objType, pObjectDataDesc->objSubType, pObjectDataDesc->objScore, pObjectDataDesc->objScale, pObjectDataDesc->xPos, pObjectDataDesc->yPos, pObjectDataDesc->objWidth, pObjectDataDesc->objHeight ); 7145, Scale=1.000000, (4, 4 : 0 x 0) [IPU1-0] 545.842524 s: ALG_OBJECT_DRAW: Tag=0, Type=1, SubType=1, Score=0.415833, Scale=1.000000, (4, 4 : 0 x 0) [IPU1-0] 545.955865 s: ALG_OBJECT_DRAW: Tag=0, Type=1, SubType=1, Score=0.301208, Scale=1.000000, (4, 4 : 0 x 0) [IPU1-0] 545.991856 s: ALG_OBJECT_DRAW: Tag=0, Type=1, SubType=1, Score=0.418396, Scale=1.000000, (4, 4 : 0 x 0) [IPU1-0] 546.623040 s: ALG_OBJECT_DRAW: Tag=0, Type=1, SubType=1, Score=0.301331, Scale=1.000000, (4, 4 : 0 x 0) [IPU1-0] 547.332672 s: ALG_OBJECT_DRAW: Tag=0, Type=1, SubType=1, Score=0.428680, Scale=1.000000, (4, 4 : 0 x 0) [IPU1-0] 547.519520 s: ALG_OBJECT_DRAW: Tag=0, Type=1, SubType=1, Score=0.428894, Scale=1.000000, (4, 4 : 0 x 0) [IPU1-0] 547.892362 s: ALG_OBJECT_DRAW: Tag=0, Type=1, SubType=1, Score=0.429138, Scale=1.000000, (4, 4 : 0 x 0) So actually the algorithm is working and detected the vehicle or pedestraint , but x and y is always 4 and width and Height is always 0. What could be going wrong? Thanks and best regards He Wei

Hi He wei, I am not VSDK expert, so I am checking with VSDK team on this and will come back. Meanwhile, I can validate the net and param bin files generated are proper or not, if you share them with me along with the input used for importing them. Thanks, Praveen

Dear Praveen, Any update? by enabling the log print: [IPU1-0] 260.532574 s: ALG_OBJECT_DRAW: Tag=0, Type=2, SubType=1, Score=0.421326, Scale=1.000000, (4, 4 : 0 x 0) The x, y = 4 and height and Width x Height= 0x0. So object is detected but location and size is not correct. Do you know which layer defined the output of x,y, width and height? (Referring to deploy.prototxt). Thanks and best regards He Wei

0451.input.zipTIDL_net_para.zipDear Praveen, Seems this thread got issue, I did't see your previous reply till I send my above reply, and the net and param files I generated are attached: input.zip - prototxt and trained caffe model TIDL_net_para.zip - output bin file after using conversion tool

Dear Praveen, I need to have more information before can close this thread. Thanks and best regards He Wei

He Wei, Did you retain the model or are you using the model provided by TI. If you retained the model, did you change the parameters to match your camera and device setup configuration? Did you validate the output of the import step with an image from your camera? or your dataset If you are using TI provided model, you may not find any detections with the Live camera as the as the prior box setting used may not match with the setup. Object detection models are sensitive to the prior box setting. We recommend you to finetune the model with your setup if you are using live camera.

Dear Kumar, I am using the TI provided model and with our live camera. Can you advise how we can finetune to be able to see the "bonding box" effect? Thanks and best regards He Wei

Dear Kumar, Let me give you my detail setup:: Step 1: Take from existing VSDK TIDL_OD (object detection) use case, change the file input to live camera, we are using the standard camera 10635 supported by VSDK package. - Video display is OK. Step 2: following e2e.ti.com/.../689617 and generated net and parameter bin file for live camera. - tool and all the files are converted correctly. Step 3: Put the net and param bin file into sd card and run it. Result: Object is detected with x=y=4 and Width x Height= 0 x 0. Can you advise if some step is not correct? Or any parameters shall be change and finetune? Thanks and best regards He Wei

Dear Kumar, any update? Thanks and best regards He wei