Stutter Analysis

Stutter Analysis Overview

Nsight Systems displays stutter analysis visualization aids for profiled graphics applications that use either OpenGL, D3D11, D3D12 or Vulkan, as detailed below in the following sections.

FPS Overview

The Frame Duration section displays frame durations on both the CPU and the GPU.

FPS overview

FPS stutter row

The stutter row highlights frames that are significantly longer than the other frames in their immediate vicinity.

The stutter row uses an algorithm that compares the duration of each frame to the median duration of the surrounding 19 frames. Duration difference under 4 milliseconds is never considered a stutter, to avoid cluttering the display with frames whose absolute stutter is small and not noticeable to the user.

For example, if the stutter threshold is set at 20%:

  1. Median duration is 10 ms. Frame with 13 ms time will not be reported (relative difference > 20%, absolute difference < 4 ms)
  2. Median duration is 60 ms. Frame with 71 ms time will not be reported (relative difference < 20%, absolute difference > 4 ms)
  3. Median duration is 60 ms. Frame with 80 ms is a stutter (relative difference > 20%, absolute difference > 4 ms, both conditions met)

OSC detection The ’19 frame window median’ algorithm by itself may not work well with some cases of ‘oscillation’ (consecutive fast and slow frames), resulting in some false positives. The median duration is not meaningful in cases of oscillation and can be misleading.

To address the issue and identify if oscillating frames, the following method is applied:

  1. For every frame, calculate the median duration, 1st and 3rd quartiles of 19-frames window.
  2. Calculate the delta and ratio between 1st and 3rd quartiles.
  3. If the 90th percentile of 3rd – 1st quartile delta array > 4 ms AND the 90th percentile of 3rd/1st quartile array > 1.2 (120%) then mark the results with ‘OSC’ text.

Right-clicking the Frame Duration row caption lets you choose the target frame rate (30, 60, 90 or custom frames per second).

FPS pick

By clicking the Customize FPS Display option, a customization dialog pops up. In the dialog, you can now define the frame duration threshold to customize the view of the potentially problematic frames. In addition, you can define the threshold for the stutter analysis frames.

FPS pick

Frame duration bars are color coded:

Bad FPS

The CPU Frame Duration row displays the CPU frame duration measured between the ends of consecutive frame boundary calls:

The GPU Frame Duration row displays the time measured between

Frame Health

The Frame Health row displays actions that took significantly a longer time during the current frame, compared to the median time of the same actions executed during the surrounding 19-frames. This is a great tool for detecting the reason for frame time stuttering. Such actions may be: shader compilation, present, memory mapping and more. Nsight Systems measures the accumulated time of such actions in each frame. For example: calculating the accumulated time of shader compilations in each frame and comparing it to the accumulated time of shader compilations in the surrounding 19 frames.

Example of a Vulkan frame health row: Frame Health

Example of a D3D12 frame health row: Frame Health

GPU Memory Utilization

The Memory Utilization row displays the amount of used local GPU memory and the commit limit for each GPU.

Memory Utilization

Vertical Synchronization

The VSYNC rows display when the monitor's vertical synchronizations occur.

Vertical Synchronization


Copyright (c) 2012-2020, NVIDIA Corporation. All rights reserved.