User Guide

Intel® VTune™ Profiler User Guide

ID 766319
Date 12/16/2022
Public

A newer version of this document is available. Customers should click here to go to the newest version.

Document Table of Contents

Anomaly Detection View

Interpret results after performing Anomaly Detection analysis on your application. Identify performance anomalies by examining code regions of interest.

Use the Anomaly Detection view to interpret the results of an Anomaly Detection analysis. A typical workflow involves an examination in these areas:

View Data

Once you complete running Anomaly Detection on your application, the collected data displays in the Summary window.

Start with the Code Region of Interest Duration Histogram. This shows the number of instances of a performance-critical task for a specific duration or latency (in ms).

Examine the histogram to see:

  • Code regions of interest

  • Information about regions where simulations executed faster or slower than normal

This diagram identifies unexpected performance outliers in the Slow region.

Code Region of Interest Duration Histogram
NOTE:
If necessary, use the sliders on the X-axis to adjust the thresholds for Fast, Good, and Slow latencies.

Load Details for Slow Region

In the Bottom-up window, load details for the slow code regions of interest:

  1. Switch to the Bottom-up window.

  2. Group results by Code Region of Interest / Duration Type.

  3. To further examine the outliers in the Slow region, right click on the Slow field and select Load Intel Processor Data by Selection.

This loads details about the code regions of interest in the Intel Processor Trace Details window.

Load Processor Data for latency

Compare Processor Trace Details

Once you load trace data in the Intel Processor Trace Details window, you can compare trace details of individual instances of marked code regions by placing them side by side. The top of a stack represents the kernel entry point.

Metric

Interpretation

Instructions Retired, Call Count, Total Iteration Count

Control flow metrics. Instructions Retired refers to the number of entries into a kernel.

CPU Time (Kernel and User)

Active time on the CPU.

Wait Time, Inactive Time

Duration for which a thread was idle because of synchronization or preemption.

Elapsed Time

Latency (Wall-clock time of the code region execution).

Use this window as a hub to detect the following types of performance anomalies.

  • Context Switch Anomaly

  • Kernel-Induced Anomaly

  • Frequency Drops

  • Control Flow Deviation Anomaly

Context Switch Anomaly

  1. In the Intel Processor Trace Details window, check the Inactive Time and Wait Time metrics. The Wait Time indicates the duration for which a thread was idle due to synchronization issues.

    1. If the metrics are zero, the application had no context switches. Proceed to check for a different type of anomaly.

    2. If the metrics are non-zero, continue with this procedure to check for context switches.

  2. Sort the data by Wait Time.

  3. For the instances that had significant Wait Time, compare the Wait Time with Elapsed Time. If the thread was idle for a considerable portion of elapsed time, this was due to a context switch synchronization issue. In this example, thread 25883 was idle for 1.269 out of 1.318 milliseconds, which is about 96% of the time.

    Context Switch Performance Anomaly
  4. Expand the instance to drill down to a function or a stack. Identify the stack(s) that brought the thread to an idle state.

Kernel-Induced Anomaly

  1. In the Intel Processor Trace Details window, sort the data by Kernel Time. The topmost element of the stack points to the entry point into the kernel. Where the ratio of kernel time to Elapsed Time is high, a significant amount of time was spent in the kernel. In this example, 566 out of 997 microseconds were spent in the kernel for the highlighted thread.Kernel-induced Anomaly

  2. Expand the thread to see contributing stacks that could be responsible for long kernel times.

    Stacks in Kernel-induced Anomaly

Due to the presence of dynamic code in the kernel and drivers, it is not possible to perform static processing of these binaries. The kernel_activity node at the top of the stack aggregates all performance data for kernel activity that happened during a specific instance of the Code Region of Interest.

Since kernel binaries are not processed, VTune Profiler cannot collect code flow metrics like Call Count, Iteration Count, or Instructions Retired. All these metrics are zero, except Instructions Retired, which indicates the number of entries into the kernel.

A possible explanation for a kernel-induced anomaly could be network speed. This could cause a slowdown when control goes to the kernel while receiving a request and sending a response over the network.

Frequency Drops

Find information about frequency drops in one of these windows:

  • Bottom-up window: Shows frequency information for the entire application.
  • Intel Processor Trace Details window: Shows frequency information only for the loaded region.

Frequency drops can happen due to several reasons:

  • There are Intel® Advanced Vector Extensions (Intel® AVX) instructions used inside or outside a loaded code region.

  • There are underlying hardware issues like cooling.

  • Apart from your application, low activity on the core and OS can also cause frequency drops. Look for high numbers of Inactive Time or Wait Time.

Control Flow Deviation Anomaly

When the Instructions Retired metric is unexpectedly huge for some threads, it indicates a control flow anomaly. A code deviation could have happened during execution of the code region.

Control Flow Deviation
  1. Select a node in the grid where you see a high value for Instructions Retired.

  2. Right-click and select Filter In by Selection from the context menu.

  3. Switch to the Caller/Callee window.

    Caller Callee view for control flow deviation

    In the flat profile view, you can see functions annotated with Self and Total CPU Times. The caller view shows the callers of the selected function in a bottom-up representation. The callee view shows a call tree from the selected function in a top-down representation.

In this example, the function call to _slab_evict_one function from _slab_evict_rand causes a significant delay as evidenced by the Self CPU Time.

Source Code Analysis:

This is an alternative method to identify deviations in the control flow.

  1. Check the Total Iteration Count to compare the number of loop iterations between a fast and slow iteration.

  2. If the slower iteration has a higher iteration count, switch to Source Assembly view and examine the source code of the function.

  3. Check to see if the slower iteration passed the validation of the cached element.

Both of these methods indicate the presence of a Cache Eviction, which can occur infrequently. While you may not be able to eliminate cache evictions entirely, you can minimize them through these ways:

  • Increase the cache size.
  • Update cache data and repeat the analysis.