Async.ParallelFor.YieldingTimeout
Async.ParallelFor.YieldingTimeout
#Overview
name: Async.ParallelFor.YieldingTimeout
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
The timeout (in ms) when background priority parallel for task will yield execution to give higher priority tasks the chance to run.
It is referenced in 1
C++ source file.
#Summary
#References in C++ code
#Callsites
This variable is referenced in the following C++ source code:
#Loc: <Workspace>/Engine/Source/Runtime/Core/Private/Async/ParallelFor.cpp:7
Scope: file
Source code excerpt:
CORE_API int32 GParallelForBackgroundYieldingTimeoutMs = 8;
static FAutoConsoleVariableRef CVarParallelForBackgroundYieldingTimeout(
TEXT("Async.ParallelFor.YieldingTimeout"),
GParallelForBackgroundYieldingTimeoutMs,
TEXT("The timeout (in ms) when background priority parallel for task will yield execution to give higher priority tasks the chance to run.")
);