vm.PageSizeInKB
vm.PageSizeInKB
#Overview
name: vm.PageSizeInKB
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Minimum allocation per VM instance. There are 64 of these, so multiply GVVMPageSizeInKB * 64 * 1024 to get total number of bytes used by the VVM\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/VectorVMExperimental.cpp:49
Scope: file
Source code excerpt:
static int32 GVVMPageSizeInKB = 64;
static FAutoConsoleVariableRef CVarVVMPageSizeInKB(
TEXT("vm.PageSizeInKB"),
GVVMPageSizeInKB,
TEXT("Minimum allocation per VM instance. There are 64 of these, so multiply GVVMPageSizeInKB * 64 * 1024 to get total number of bytes used by the VVM\n"),
ECVF_ReadOnly
);
#if UE_BUILD_DEBUG