Unverified Commit d6178233 authored by Michael Yang's avatar Michael Yang Committed by GitHub
Browse files

Merge pull request #333 from jmorganca/off-by-one

ggml: fix off by one error
parents e41576e7 6ed991c8
......@@ -29,7 +29,7 @@ const (
FileTypeQ4_0
FileTypeQ4_1
FileTypeQ4_1_F16
FileTypeQ8_0 = iota + 3
FileTypeQ8_0 = iota + 2
FileTypeQ5_0
FileTypeQ5_1
FileTypeQ2_K
......@@ -37,7 +37,6 @@ const (
FileTypeQ4_K
FileTypeQ5_K
FileTypeQ6_K
FileTypeUnknown = -1
)
type GGML struct {
......
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