Skip to content

< Back


LLamaPerfContextTimings

Namespace: LLama.Native

LLama performance information

1
public struct LLamaPerfContextTimings

Inheritance ObjectValueTypeLLamaPerfContextTimings

Remarks:

llama_perf_context_data

Properties

ResetTimestamp

Timestamp when reset was last called

1
public TimeSpan ResetTimestamp { get; }

Property Value

TimeSpan

Loading

Time spent loading

1
public TimeSpan Loading { get; }

Property Value

TimeSpan

PromptEval

total milliseconds spent prompt processing

1
public TimeSpan PromptEval { get; }

Property Value

TimeSpan

Eval

Total milliseconds in eval/decode calls

1
public TimeSpan Eval { get; }

Property Value

TimeSpan

PrompTokensEvaluated

number of tokens in eval calls for the prompt (with batch size > 1)

1
public int PrompTokensEvaluated { get; }

Property Value

Int32

TokensEvaluated

number of eval calls

1
public int TokensEvaluated { get; }

Property Value

Int32


< Back