mirror of
https://github.com/ollama/ollama.git
synced 2025-05-11 02:16:36 +02:00
explicitly decode maxarraysize 1024
This commit is contained in:
parent
ced7d0e53d
commit
340448d2d1
4 changed files with 6 additions and 6 deletions
|
@ -414,7 +414,7 @@ func projectorMemoryRequirements(filename string) (weights, graphSize uint64) {
|
|||
}
|
||||
defer file.Close()
|
||||
|
||||
ggml, _, err := ggml.Decode(file, 0)
|
||||
ggml, _, err := ggml.Decode(file, 1024)
|
||||
if err != nil {
|
||||
return 0, 0
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue