This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

TDA2PXEVM: Run time of radar related algorithms in the process of radar processing data

Part Number: TDA2PXEVM

Hardware version:TDA2Px EVM    Software version:Processor SDK Radar  3.6

In the AlgorithmFxn_RadarDspProcess function, you can see the time spent calculating each algorithm, for example, fftTime[frameCount] = timeEnd - timeStart;

But after running TDA2px and printing the log, I only see the elaspedtime of each link as follows,there is no specific algorithm time.

So is there a way to get the time of each radar algorithm? Thank you, look forward to your reply.

  • Hi,

    Stats collector measure time across the entire processing block of that link.

    It does not measure time across algorithm.

    If you want  do the same then you can use Utils_getCurGlobalTimeInMsec() across algorithm to measure time.

    Regards,

    Anuj

  • Thank you very much,But where can I see the results of the run time?Can I print it out on the log using the vps_printf function?as follows,