TaskGraph.ForkedProcessMaxWorkerThreads

TaskGraph.ForkedProcessMaxWorkerThreads

#Overview

name: TaskGraph.ForkedProcessMaxWorkerThreads

This variable is created as a Console Variable (cvar).

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:97

Scope: file

Source code excerpt:

static int32 CVar_ForkedProcess_MaxWorkerThreads = 2;
static FAutoConsoleVariableRef CVarForkedProcessMaxWorkerThreads(
	TEXT("TaskGraph.ForkedProcessMaxWorkerThreads"),
	CVar_ForkedProcess_MaxWorkerThreads,
	TEXT("Configures the number of worker threads a forked process should spawn if it allows multithreading.")
);

CORE_API bool GTaskGraphUseDynamicPrioritization = 1;
static FAutoConsoleVariableRef CVarTaskDynamicPrioritization(