Skip to content

< Back


DecodeResult

Namespace: LLama.Native

Return codes from llama_decode

1
public enum DecodeResult

Inheritance ObjectValueTypeEnumDecodeResult
Implements IComparable, ISpanFormattable, IFormattable, IConvertible

Fields

Name Value Description
Error -1 An unspecified error
Ok 0 Ok.
NoKvSlot 1 Could not find a KV slot for the batch (try reducing the size of the batch or increase the context)
ComputeAborted 2 Compute was aborted (e.g. due to callback request or timeout)
AllocationFailed -2 Failed to allocate memory or reserve output space
DecodeFailed -3 General failure during decode (e.g. internal error, slot failure)

< Back