Software Archive
Read-only legacy content
17060 Diskussionen

OpenCV & parallel apmlifier

krivyakin
Einsteiger
1.061Aufrufe
I am using OpenCV in my project. By default are visible only some functions (cvRound, cvMat...) in parallel amplifier, but ones likeCvANN_MLP::calc_activ_func_derivare unvisible.How I can to see all OpenCV functions'srunning time? May be are any compiler keys?

P.S. OpenCV compiled with -g
0 Kudos
4 Antworten
TimP
Geehrter Beitragender III
1.061Aufrufe
Are you certain you didn't compile with any optimizations such as in-lining, which would hide functions?
krivyakin
Einsteiger
1.061Aufrufe
Yes, I'm sure. I compiled in Debug mode.

C++ flags: -g -O0 -ggdb3 -D DEBUG
Aubrey_W_
Neuer Beitragender I
1.061Aufrufe
Hello,

I'll move this thread to our Intel Parallel Studio forum, where one of our Technical Consulting Engineers can have a look.

Best regards,

==
Aubrey W.
Intel Software Network Support
Peter_W_Intel
Mitarbeiter
1.061Aufrufe
Hi,

If you disabled compiler's optimizationoptionsfor "inline" (e.g. "O2" for icc), and with "-g" for generating symbols. VTune Amplifier should display all hot functions.

One possibility is that workload of CvANN_MLP::calc_activ_func_derivis slight- so that function isNOT ahot function when running analysis.

Thanks, Peter
Antworten