Desktop API: Optimizing Shaders
To determine whether shaders cause a performance bottleneck for the selected draw calls, you can do the following:
- change the shader code inside Graphics Frame Analyzer
- check the performance effect without recompiling your code
- view performance data per shader code line
To experiment with shader code:
- Select one or more draw calls for which you would like to analyze the shader code.
- From the Resource List, choose the shader used in the selected draw calls.Graphics Frame Analyzerdisplays the shader source code and all the resources used by the shader.
- In theShader Resource List, analyze resources used in the shaders grouped by type:
- Constant Buffer View (CBV) (DirectX only)
- Render Target View (RTV)
- Sampler
- Shader Resource View (SRV) (DirectX only)
- Storage Buffer Object (SBO) (Vulkan only)
- Storage Texture (Vulkan only)
- Texture (Vulkan only)
- Uniform Buffer Object (UBO) (Vulkan only)
- Unordered Access View (UAV) (DirectX only)
- Vertext Buffer View (VBV) (Vulkan only)
Graphics Frame Analyzer displays various resource parameters, the shader type using the resource, and shader registers each resource is bound to. Resources are listed in the following format:To open a resource, click the desired resource name.<shader name>:<register ID> <resource type>:<resource ID> (<view type><view ID>) <resource debug name> - From theShader Typedrop-down list, select the type of shader you would like to analyze from the drop down menu
. The shader code opens in the
Shader Editor. For easier reading, you can click the
- While Assembly code is read-only, you can experiment with the HLSL code for DirectX* and HLSL and GLSL for Vulkan*, if these codes are available for your shader. In this case, select HLSL or GLSL from the respective drop-down menu
and edit the code directly in the
Shader Viewer. The shader recompiles on the fly. If you introduced any errors, you can see the corresponding message in theNotificationpanebelow the
Shader Editor. - If the code looks fine, click theMetricspane and in theMainbar Chart.TIPWhen you click the
- If you want to undo your edits, click the
To profile shader code:
- OpenShader Viewerand click the
Shader Profiler
button. The shader viewer displays all versions of Gen ISA code and the profiling data column. - Click theShow source-assembly mappingbutton to view the source code and the assembly code side-by-side, and to map individual source or assembly lines to their counterparts.The Shader Profiler offers two modes for displaying profiling data:
- Duration: shows the estimated portion of time in percents a line of code took, relative to the execution time of all shader stages.
- Execution Time: shows the total number of times the exact line of code was executed.
- Use this information to experiment with your shader code by modifying the shader directly in theShader Profilerview. You can edit your code and evaluate the impact on visuals and performance in real time. Click the
NOTE
- Shader profiling is only available for DirectX* 11 and DirectX* 12 APIs.
- Source-assembly mapping is not available for shaders compiled without debug information. To enable source-assembly mapping, you can:
- compile a shader with debug information in your application
- modify a shader in Frame Analyzer
- For DirectX* 11 shaders without debug information, DXBC-ISA mapping is available instead of HLSL-ISA mapping.
- Source-assembly mapping is not supported for Shader Model 5 shaders on DirectX* 12 applications. To enable it, recompile the shaders for Shared Model 6.
- Shader Profiler requires Intel® Graphics driver version 26.20.100.7755 or higher.
- This feature is supported on 9th Generation (code names Skylake, Coffee Lake, Kaby Lake), and 11th Generation (codenamed Ice Lake) Intel® Graphics hardware.
See Also