vm.ParallelChunksPerBatch
vm.ParallelChunksPerBatch
#Overview
name: vm.ParallelChunksPerBatch
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Number of chunks to process per task when running in parallel. \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:181
Scope: file
Source code excerpt:
static int32 GParallelVVMChunksPerBatch = 4;
static FAutoConsoleVariableRef CVarParallelVVMChunksPerBatch(
TEXT("vm.ParallelChunksPerBatch"),
GParallelVVMChunksPerBatch,
TEXT("Number of chunks to process per task when running in parallel. \n"),
ECVF_Default
);
//These are possibly too granular to enable for everyone.