vm.MaxThreadsPerScript
vm.MaxThreadsPerScript
#Overview
name: vm.MaxThreadsPerScript
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Maximum number of threads per script. Set 0 to mean \'as many as necessary\'\n
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/VectorVM/Private/VectorVM.cpp:214
Scope: file
Source code excerpt:
static int32 GVVMMaxThreadsPerScript = 8;
static FAutoConsoleVariableRef CVarVVMMaxThreadsPerScript(
TEXT("vm.MaxThreadsPerScript"),
GVVMMaxThreadsPerScript,
TEXT("Maximum number of threads per script. Set 0 to mean 'as many as necessary'\n"),
ECVF_Default
);
static int32 GbOptimizeVMByteCode = 1;