Software Tuning, Performance Optimization & Platform Monitoring
Discussion regarding monitoring and software tuning methodologies, Performance Monitoring Unit (PMU) of Intel microprocessors, and platform updating.

Unfilled slots back end / front end bound

Chris_A_
Beginner
291 Views

Can someone clarify for me what the backend / frontend bound figures represent in the general exploration section of VTune Amplifier XE, I suspect they are calculated using some function of clock cycles / ( slots or instructions ), could someone please provide the exact formula for this, secondly is there any threshold beyond which these figures are deemed to be bad, for example a CPI of 1 is deemed to by not good, is there anything similar that applies to the front end and back end bound figures, finally is there a way of relating the front end bound and back end bound figures to CPI ?

0 Kudos
2 Replies
Patrick_F_Intel1
Employee
291 Views

Here are some references for the front-end/back-end analsysis, called the topdown analysis by some Intel folks.

From http://halobates.de/blog/p/category/monitoring :

From https://sites.google.com/site/analysismethods/isca2013/program-1 there is a topdown presentation:

https://docs.google.com/viewer?a=v&pid=sites&srcid=ZGVmYXVsdGRvbWFpbnxhbmFseXNpc21ldGhvZHN8Z3g6MWJjNTE2OTU4ODVlZGFkMw

Hopefully this will make things clearer.

Pat

0 Kudos
Bernard
Valued Contributor I
291 Views

Back-End/Front-End Stall is a measure of the delay or stall in code stream execution by the CPU processing pipeline. For example good description of Front-End stall can be synchronous wait of the CPU for memory access (assume cache misses) in such a situation execution stack must wait for completion of memory transfers in order to continue execution. Situation can get worse in the term of CPI when the code is highly interdependent so in this case CPU cannot easily perform OOE here of course there is a clear dependency on the amount of prefetched instructions and size of corresponding uops buffers.

0 Kudos
Reply