r.ShaderPipelineCache.BatchSize
r.ShaderPipelineCache.BatchSize
#Overview
name: r.ShaderPipelineCache.BatchSize
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Set the number of PipelineStateObjects to compile in a single batch operation when compiling takes priority. Defaults to a maximum of 50 per frame, due to async. file IO it is less in practice.
It is referenced in 7
C++ source files.
#Summary
#Usage in the C++ source code
The purpose of r.ShaderPipelineCache.BatchSize is to control the number of PipelineStateObjects (PSOs) that can be compiled in a single batch operation when shader pipeline cache compilation takes priority. This setting is primarily used for the rendering system, specifically for managing shader pipeline cache compilation.
This setting variable is primarily used in the RenderCore module of Unreal Engine 5, as evidenced by its references in the ShaderPipelineCache.cpp and ShaderPipelineCache.h files.
The value of this variable is set through a console variable (CVarPSOFileCacheBatchSize) with a default value of 50. It can be modified at runtime using console commands or through game settings.
This variable interacts closely with other shader pipeline cache-related variables, such as r.ShaderPipelineCache.BackgroundBatchSize and r.ShaderPipelineCache.PrecompileBatchSize. It is specifically used when the batch mode is set to “Fast”.
Developers should be aware that this variable affects the performance and responsiveness of shader compilation. A higher value may lead to more PSOs being compiled per frame, which could cause frame rate drops but potentially faster overall compilation. A lower value may result in smoother performance but longer overall compilation time.
Best practices when using this variable include:
- Adjusting the value based on the target hardware capabilities.
- Using it in conjunction with other shader pipeline cache settings for optimal performance.
- Testing different values to find the right balance between compilation speed and frame rate stability.
The associated variable CVarPSOFileCacheBatchSize is the actual console variable that stores and manages the r.ShaderPipelineCache.BatchSize value. It is used internally by the engine to retrieve the current batch size value when needed, such as when setting the batch mode or initializing the shader pipeline cache. The same considerations and best practices apply to this variable as they do to r.ShaderPipelineCache.BatchSize.
#References in C++ code
#Callsites
This variable is referenced in the following C++ source code:
#Loc: <Workspace>/Engine/Source/Runtime/RenderCore/Private/ShaderPipelineCache.cpp:64
Scope: file
Source code excerpt:
);
static TAutoConsoleVariable<int32> CVarPSOFileCacheBatchSize(
TEXT("r.ShaderPipelineCache.BatchSize"),
50,
TEXT("Set the number of PipelineStateObjects to compile in a single batch operation when compiling takes priority. Defaults to a maximum of 50 per frame, due to async. file IO it is less in practice."),
ECVF_Default | ECVF_RenderThreadSafe
);
static TAutoConsoleVariable<int32> CVarPSOFileCachePrecompileBatchSize(
TEXT("r.ShaderPipelineCache.PrecompileBatchSize"),
#Loc: <Workspace>/Engine/Source/Runtime/RenderCore/Public/ShaderPipelineCache.h:34
Scope: file
Source code excerpt:
* Basic Runtime Usage:
* - Enable the cache with r.ShaderPipelineCache.Enabled = 1, which allows the pipeline cache to load existing data from disk and precompile it.
* - Set the default batch size with r.ShaderPipelineCache.BatchSize = X, where X is the maximum number of PSOs to compile in a single batch when precompiling in the default Fast BatchMode.
* - Set the background batch size with r.ShaderPipelineCache.BackgroundBatchSize = X, where X is the maximum number of PSOs to compile when in the Background BatchMode.
* - Instrument the game code to call FShaderPipelineCache::SetBatchMode to switch the batch mode between Fast & Background modes.
* - BatchMode::Fast should be used when a loading screen or movie is being displayed to allow more PSOs to be compiled whereas Background should be used behind interactive menus.
* - If required call NumPrecompilesRemaining to determine the total number of outstanding PSOs to compile and keep the loading screen or movie visible until complete.
* - Depending on the game & target platform performance it may also be required to call PauseBatching to suspend precompilation during gameplay and then ResumeBatching when behind a loading screen, menu or movie to restart precompilation.
*
* Other Runtime Options:
* - In the GGameIni (and thus also GGameUserSettingsIni) the Shader Pipeline Cache uses the [ShaderPipelineCache.CacheFile] section to store some settings.
* - The LastOpened setting stores the name of the last opened cache file as specified with Open, which if present will be used within FShaderPipelineCache::Initialize to open the existing cache.
* If not specified this will default to the AppName.
* - The SortMode settings stores the desired sort mode for the PSOs, which is one of:
* + Default: Loaded in the order specified in the file.
* + FirstToLatestUsed: Start with the PSOs with the lowest first-frame used and work toward those with the highest.
* + MostToLeastUsed: Start with the most often used PSOs working toward the least.
* Will use "Default" within FShaderPipelineCache::Initialize & OpenPipelineFileCache if nothing is specified.
* - The GameVersionKey is a read-only integer specified in the GGameIni that specifies the game content version to disambiguate incompatible versions of the game content. By default this is taken from the FEngineVersion changlist.
*
* Logging Usage:
* - Enable the cache with r.ShaderPipelineCache.Enabled = 1 and also turn on runtime logging with r.ShaderPipelineCache.LogPSO = 1.
* - Ensure that you have configured the game to open the appropriate cache on startup (see above) and allow the game to play.
* - PSOs are logged as they are encountered as the Unreal Engine does not provide facility to cook them offline, so this system will only collect PSOs which are actually used to render.
* - As such you must either manually play through the game to collect logs or automate the process which is beyond the scope of this code.
* - The data can be saved at any time by calling FShaderPipelineCache::SavePipelineFileCache and this can happen automatically after a given number of PSOs by setting r.ShaderPipelineCache.SaveAfterPSOsLogged = X where X is the desired number of PSOs to log before saving (0 will disable auto-save).
* - Log files are shader platform specific to reduce overheads.
*
* Notes:
* - The open cache file can be changed by closing the existing file with ClosePipelineFileCache (which implicitly Fast saves) and then opening a new one with OpenPipelineFileCache.
* - Different files can be used to minimise PSO compilation by having a file per-scalability bucket (i.e. one file for Low, one for Med, one for High).
* - When logging if you switch files only new entries from after the switch will be logged, which means you will miss any PSOs that should have been logged prior to switching. This prevents polluting the cache with unexpected entries.
* - The UnrealEd.MergeShaderPipelineCaches command-let can be used to merge cache files with the same file-version, shader platform and game-version.
*
* File Locations & Packaging:
* - The writable cache file is always stored in the User Saved directory.
* - The game can also provide an immutable copy within its Game Content directory which will be used as the initial or seed data.
* - Having generated logs in development and merged them with UnrealEd.MergeShaderPipelineCaches they should be packaged inside the Gane Content directory for the relevant platform.
*
* Requirements:
* - FShaderCodeLibrary must be enabled via Project Settings > Packaging > "Share Material Shader Code".
* - Enabling "Native Shader Libraries" is optional, but strongly preferred for Metal.
*/
class FShaderPipelineCache : public FTickableObjectRenderThread
{
// the FShaderPipelineCacheTask class represents a pipeline precompile of a single PSO file cache.
friend class FShaderPipelineCacheTask;
public:
/**
* Initializes the shader pipeline cache for the desired platform, called by the engine.
* The shader platform is used only to load the initial pipeline cache and can be changed by closing & reopening the cache if necessary.
*/
static RENDERCORE_API void Initialize(EShaderPlatform Platform);
/** Terminates the shader pipeline cache, called by the engine. */
static RENDERCORE_API void Shutdown();
/** Pauses precompilation. */
#Loc: <Workspace>/Engine/Source/Runtime/RenderCore/Public/ShaderPipelineCache.h:94
Scope (from outer to inner):
file
class class FShaderPipelineCache : public FTickableObjectRenderThread
Source code excerpt:
{
Background, // The maximum batch size is defined by r.ShaderPipelineCache.BackgroundBatchSize
Fast, // The maximum batch size is defined by r.ShaderPipelineCache.BatchSize
Precompile // The maximum batch size is defined by r.ShaderPipelineCache.PrecompileBatchSize
};
/** Sets the precompilation batching mode. */
static RENDERCORE_API void SetBatchMode(BatchMode Mode);
#Associated Variable and Callsites
This variable is associated with another variable named CVarPSOFileCacheBatchSize
. They share the same value. See the following C++ source code.
#Loc: <Workspace>/Engine/Source/Runtime/RenderCore/Private/ShaderPipelineCache.cpp:63
Scope: file
Source code excerpt:
ECVF_Default | ECVF_RenderThreadSafe
);
static TAutoConsoleVariable<int32> CVarPSOFileCacheBatchSize(
TEXT("r.ShaderPipelineCache.BatchSize"),
50,
TEXT("Set the number of PipelineStateObjects to compile in a single batch operation when compiling takes priority. Defaults to a maximum of 50 per frame, due to async. file IO it is less in practice."),
ECVF_Default | ECVF_RenderThreadSafe
);
static TAutoConsoleVariable<int32> CVarPSOFileCachePrecompileBatchSize(
#Loc: <Workspace>/Engine/Source/Runtime/RenderCore/Private/ShaderPipelineCache.cpp:780
Scope (from outer to inner):
file
function void FShaderPipelineCache::SetBatchMode
Source code excerpt:
case BatchMode::Fast:
{
ShaderPipelineCache->BatchSize = CVarPSOFileCacheBatchSize.GetValueOnAnyThread();
ShaderPipelineCache->BatchTime = CVarPSOFileCacheBatchTime.GetValueOnAnyThread();
break;
}
case BatchMode::Background:
default:
{
#Loc: <Workspace>/Engine/Source/Runtime/RenderCore/Private/ShaderPipelineCache.cpp:1575
Scope (from outer to inner):
file
function FShaderPipelineCache::FShaderPipelineCache
Source code excerpt:
{
case 0:
BatchSize = CVarPSOFileCacheBatchSize.GetValueOnAnyThread();
BatchTime = CVarPSOFileCacheBatchTime.GetValueOnAnyThread();
PausedCount = 1;
bPaused = true;
UE_LOG(LogRHI, Display, TEXT("ShaderPipelineCache: Starting paused. %d"), PausedCount);
break;
case 2:
#Loc: <Workspace>/Engine/Source/Runtime/RenderCore/Private/ShaderPipelineCache.cpp:1587
Scope (from outer to inner):
file
function FShaderPipelineCache::FShaderPipelineCache
Source code excerpt:
case 1:
default:
BatchSize = CVarPSOFileCacheBatchSize.GetValueOnAnyThread();
BatchTime = CVarPSOFileCacheBatchTime.GetValueOnAnyThread();
break;
}
FString StableShaderKeyFile;
if (FParse::Value(FCommandLine::Get(), TEXT("-shkfile="), StableShaderKeyFile) && !StableShaderKeyFile.IsEmpty())