"src/graph/vscode:/vscode.git/clone" did not exist on "df089424c76e246de0eea9f62ef7923d41a17d17"
Unverified Commit 10e76882 authored by Josh's avatar Josh Committed by GitHub
Browse files

fix: quant err message (#5616)

parent c4cf8ad5
...@@ -33,7 +33,7 @@ func Quantize(infile, outfile string, ftype fileType) error { ...@@ -33,7 +33,7 @@ func Quantize(infile, outfile string, ftype fileType) error {
params.ftype = ftype.Value() params.ftype = ftype.Value()
if rc := C.llama_model_quantize(cinfile, coutfile, &params); rc != 0 { if rc := C.llama_model_quantize(cinfile, coutfile, &params); rc != 0 {
return fmt.Errorf("llama_model_quantize: %d", rc) return fmt.Errorf("failed to quantize model. This model architecture may not be supported, or you may need to upgrade Ollama to the latest version")
} }
return nil return nil
......
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