mirror of
https://github.com/ollama/ollama.git
synced 2025-05-11 18:36:41 +02:00
llm: Fix debug logging for memory estimates
This commit is contained in:
parent
1feff61977
commit
f4f0992b6e
1 changed files with 1 additions and 1 deletions
|
@ -374,7 +374,7 @@ func (m MemoryEstimate) LogValue() slog.Value {
|
|||
slog.Group(
|
||||
"weights",
|
||||
// memory of the weights
|
||||
"total", format.HumanBytes2(m.memoryWeights),
|
||||
"total", format.HumanBytes2(m.memoryWeights+m.memoryLayerOutput),
|
||||
// memory of repeating layers
|
||||
"repeating", format.HumanBytes2(m.memoryWeights),
|
||||
// memory of non-repeating layers
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue