Table of Contents

Property SlotCount

Namespace
LMKit.Global
Assembly
LM-Kit.NET.dll

SlotCount

Requests the pool decodes together. Defaults to 4, clamped to [1, 64].

public int SlotCount { get; set; }

Property Value

int

Remarks

This is the concurrency the pool is built for, and its memory scales with it. It is not a queue depth: with Queue any number of requests may be waiting, but only this many decode at once. Reading answers with the inherited value while SlotCountOverride is null; assigning sets the override.

Share