Commit 6ed991c8 authored by Michael Yang's avatar Michael Yang
Browse files

ggml: fix off by one error

remove used Unknown FileType
parent e41576e7
...@@ -29,7 +29,7 @@ const ( ...@@ -29,7 +29,7 @@ const (
FileTypeQ4_0 FileTypeQ4_0
FileTypeQ4_1 FileTypeQ4_1
FileTypeQ4_1_F16 FileTypeQ4_1_F16
FileTypeQ8_0 = iota + 3 FileTypeQ8_0 = iota + 2
FileTypeQ5_0 FileTypeQ5_0
FileTypeQ5_1 FileTypeQ5_1
FileTypeQ2_K FileTypeQ2_K
...@@ -37,7 +37,6 @@ const ( ...@@ -37,7 +37,6 @@ const (
FileTypeQ4_K FileTypeQ4_K
FileTypeQ5_K FileTypeQ5_K
FileTypeQ6_K FileTypeQ6_K
FileTypeUnknown = -1
) )
type GGML struct { 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