merge ggml file decoding

This commit is contained in:
Michael Yang
2024-12-03 11:17:45 -08:00
parent 2c5fb24855
commit b7943d941d
30 changed files with 429 additions and 1733 deletions

View File

@@ -29,7 +29,7 @@ type Backend struct {
}
func New(r io.ReadSeeker) (ml.Backend, error) {
f, _, err := ggml.DecodeGGML(r, -1)
f, _, err := ggml.Decode(r, -1)
if err != nil {
return nil, err
}