vm.ChunkSizeInBytes

vm.ChunkSizeInBytes

#Overview

name: vm.ChunkSizeInBytes

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/VectorVM/Private/VectorVM.cpp:206

Scope: file

Source code excerpt:

static int32 GVVMChunkSizeInBytes = 32768;
static FAutoConsoleVariableRef CVarVVMChunkSizeInBytes(
	TEXT("vm.ChunkSizeInBytes"),
	GVVMChunkSizeInBytes,
	TEXT("Number of bytes per VM chunk  Ideally <= L1 size. (default=32768) \n"),
	ECVF_Default
);

static int32 GVVMMaxThreadsPerScript = 8;