Commit d2ee599d authored by Devon Rifkin's avatar Devon Rifkin
Browse files

load arrays with up to 1024 elements when estimating

This mirrors the old behavior before #10382
parent 6ed88985
...@@ -201,7 +201,7 @@ func (s *Scheduler) processPending(ctx context.Context) { ...@@ -201,7 +201,7 @@ func (s *Scheduler) processPending(ctx context.Context) {
} }
// Load model for fitting // Load model for fitting
ggml, err := llm.LoadModel(pending.model.ModelPath, 0) ggml, err := llm.LoadModel(pending.model.ModelPath, 1024)
if err != nil { if err != nil {
pending.errCh <- err pending.errCh <- err
break break
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment