Analyzers
Talk to fellow users of Intel Analyzer tools (Intel VTune™ Profiler, Intel Advisor)
5292 討論

Hot spot analysis about video coding

fei__xing_h
初學者
940 檢視

Hi,I am using vtune amplifier to analyze coding efficiency about video encoding. I found the most consuming code is arithmetic coding module. In “Caller/Callee” tab, I double click the function of the core arithmetic coding which is called frequently, the time consuming of this function is showed. My question is, when the most time consuming code line is the function name line, what’s the meaning?vtune-arithmetic-intel.jpg

0 積分
4 回應
Peter_W_Intel
員工
940 檢視

Usually it was due to compiler's issue...compiler will generate optimized code sequence for performance consideration, that didn't match original source code's order. You can click on one source line then click "Assembly" button in source view of VTune, it will display assembly code for corresponding source line.

TimP
榮譽貢獻者 III
940 檢視

You may need options such as /debug:inline-debug-info

Bernard
傑出貢獻者 I
940 檢視

As @Peter said you should look at corresponding disassembled code of encoding function. Regarding the most time consumption line of code maybe it could accumulated wait time for the resources.

 

Bernard
傑出貢獻者 I
940 檢視

>>>Regarding the most time consumption line of code maybe it could accumulated wait time for the resources.>>>

@coolfat

You can check it by looking at Front-End stalls.

回覆