TaskGraph.UseDynamicPrioritization
TaskGraph.UseDynamicPrioritization
#Overview
name: TaskGraph.UseDynamicPrioritization
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Adjust thread priority per-task so that higher priority tasks running on background threads can\'t be preempted as easily. Helps a lot under high load.
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/TaskGraph.cpp:104
Scope: file
Source code excerpt:
CORE_API bool GTaskGraphUseDynamicPrioritization = 1;
static FAutoConsoleVariableRef CVarTaskDynamicPrioritization(
TEXT("TaskGraph.UseDynamicPrioritization"),
GTaskGraphUseDynamicPrioritization,
TEXT("Adjust thread priority per-task so that higher priority tasks running on background threads can't be preempted as easily. Helps a lot under high load."),
ECVF_ReadOnly
);
CORE_API int32 GUseNewTaskBackend = 1;