Analyzers
Talk to fellow users of Intel Analyzer tools (Intel VTune™ Profiler, Intel Advisor)
4995 Discussions

cache miss and floating point operation

Fabrizio_A_
Beginner
407 Views

Salve a tutti,

sono interessato a valutare i cache miss e il numero di operazioni floating point con riferimento ad un programma MPI.

Da riga di comando ho provato:

mpirun -n 4 -l amplxe-cl -result-dir XXX -collect hotspots eseguibile

Il tipo di analisi "HOTSPOTS" è sufficiente per ottenere quanto desiderato?

Se sì. una volta aperti i risultati usando l'interfaccia grafica (amplxe-gui), dove sono reperibili le informazioni di cui sopra?

Se no, che comando è necessario utilizzare?

Grazie a tutti in anticipo!

0 Kudos
9 Replies
Bernard
Valued Contributor I
407 Views

Can you use Google translate?

0 Kudos
David_A_Intel1
Employee
407 Views

Hi Fabrizio!

Unfortunately, it is not that easy.  Modern processors have many ways of performing "float-point operations."  Therefore, I refer you to this article

0 Kudos
Bernard
Valued Contributor I
407 Views

>>>FP_COMP_OPS_EXE.X87>>>

This option refers  only to x87 floating-point code. Modern compilers usually emit SSE/AVX code for target architecture which is newer that Pentium 3.

0 Kudos
Bernard
Valued Contributor I
407 Views

What CPU do you have?

0 Kudos
Bernard
Valued Contributor I
407 Views

Then you should look for SSE/AVX generated code unless you have some old library compiled into x87 code.

0 Kudos
Peter_W_Intel
Employee
407 Views

Command line is OK. I don't know what processor you used. You may use "amplxe-runss - event-list | grep FP_" to find them, which are supported by your processor.

About using events to measure cache miss, please read right tuning guides from this.

0 Kudos
Bernard
Valued Contributor I
407 Views

>>>So, you need to know what processor you work,>>>

OP is using  Intel Core i7 3610QM.

0 Kudos
Peter_W_Intel
Employee
407 Views

@iliyapolak

It's hard to say that PMU event name is strictly same as doc described, that was why I provided the way to list supported events...you can find similar one (you want) from the list...for example, use key words "x87", "SSE_DOUBLE",etc to find

0 Kudos
Bernard
Valued Contributor I
407 Views

Ok I understand it.

0 Kudos
Reply