"model.properties" did not exist on "e802afd4aa8b349a960223f1ffaacfd481a7a03a"
ggml.go 3.02 KB
Newer Older
1
2
3
4
5
6
7
8
package llm

import (
	"encoding/binary"
	"errors"
	"io"
)

Michael Yang's avatar
Michael Yang committed
9
10
11
type GGML struct {
	container
	model
12
13

	Size int64
Michael Yang's avatar
Michael Yang committed
14
}
15
16

const (
Michael Yang's avatar
Michael Yang committed
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
	fileTypeF32 uint32 = iota
	fileTypeF16
	fileTypeQ4_0
	fileTypeQ4_1
	fileTypeQ4_1_F16
	fileTypeQ8_0 uint32 = iota + 2
	fileTypeQ5_0
	fileTypeQ5_1
	fileTypeQ2_K
	fileTypeQ3_K_S
	fileTypeQ3_K_M
	fileTypeQ3_K_L
	fileTypeQ4_K_S
	fileTypeQ4_K_M
	fileTypeQ5_K_S
	fileTypeQ5_K_M
	fileTypeQ6_K
Michael Yang's avatar
Michael Yang committed
34
35
36
37
38
	fileTypeIQ2_XXS
	fileTypeIQ2_XS
	fileTypeQ2_K_S
	fileTypeQ3_K_XS
	fileTypeIQ3_XXS
39
40
)

Michael Yang's avatar
Michael Yang committed
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
func fileType(fileType uint32) string {
	switch fileType {
	case fileTypeF32:
		return "F32"
	case fileTypeF16:
		return "F16"
	case fileTypeQ4_0:
		return "Q4_0"
	case fileTypeQ4_1:
		return "Q4_1"
	case fileTypeQ4_1_F16:
		return "Q4_1_F16"
	case fileTypeQ8_0:
		return "Q8_0"
	case fileTypeQ5_0:
		return "Q5_0"
	case fileTypeQ5_1:
		return "Q5_1"
	case fileTypeQ2_K:
		return "Q2_K"
	case fileTypeQ3_K_S:
		return "Q3_K_S"
	case fileTypeQ3_K_M:
		return "Q3_K_M"
	case fileTypeQ3_K_L:
		return "Q3_K_L"
	case fileTypeQ4_K_S:
		return "Q4_K_S"
	case fileTypeQ4_K_M:
		return "Q4_K_M"
	case fileTypeQ5_K_S:
		return "Q5_K_S"
	case fileTypeQ5_K_M:
		return "Q5_K_M"
	case fileTypeQ6_K:
		return "Q6_K"
Michael Yang's avatar
Michael Yang committed
77
78
79
80
81
82
83
84
85
86
	case fileTypeIQ2_XXS:
		return "IQ2_XXS"
	case fileTypeIQ2_XS:
		return "IQ2_XS"
	case fileTypeQ2_K_S:
		return "Q2_K_S"
	case fileTypeQ3_K_XS:
		return "Q3_K_XS"
	case fileTypeIQ3_XXS:
		return "IQ3_XXS"
Michael Yang's avatar
Michael Yang committed
87
	default:
Michael Yang's avatar
Michael Yang committed
88
		return "unknown"
Michael Yang's avatar
Michael Yang committed
89
90
	}
}
91

Michael Yang's avatar
Michael Yang committed
92
type model interface {
Michael Yang's avatar
Michael Yang committed
93
94
95
	ModelFamily() string
	ModelType() string
	FileType() string
96
97
98
99
100
	NumLayers() uint32
	NumGQA() uint32
	NumEmbed() uint32
	NumHead() uint32
	NumHeadKv() uint32
Michael Yang's avatar
Michael Yang committed
101
	NumCtx() uint32
102
103
104
105
}

type container interface {
	Name() string
Michael Yang's avatar
Michael Yang committed
106
	Decode(io.ReadSeeker) (model, error)
107
108
109
}

const (
Bruce MacDonald's avatar
Bruce MacDonald committed
110
	// Magic constant for `ggml` files (unversioned).
111
	FILE_MAGIC_GGML = 0x67676d6c
Bruce MacDonald's avatar
Bruce MacDonald committed
112
	// Magic constant for `ggml` files (versioned, ggmf).
113
	FILE_MAGIC_GGMF = 0x67676d66
Bruce MacDonald's avatar
Bruce MacDonald committed
114
	// Magic constant for `ggml` files (versioned, ggjt).
115
	FILE_MAGIC_GGJT = 0x67676a74
Bruce MacDonald's avatar
Bruce MacDonald committed
116
	// Magic constant for `ggla` files (LoRA adapter).
117
	FILE_MAGIC_GGLA = 0x67676C61
Bruce MacDonald's avatar
Bruce MacDonald committed
118
	// Magic constant for `gguf` files (versioned, gguf)
Michael Yang's avatar
ggufv3  
Michael Yang committed
119
120
	FILE_MAGIC_GGUF_LE = 0x46554747
	FILE_MAGIC_GGUF_BE = 0x47475546
121
122
)

Bruce MacDonald's avatar
Bruce MacDonald committed
123
124
var ErrUnsupportedFormat = errors.New("unsupported model format")

Michael Yang's avatar
Michael Yang committed
125
func DecodeGGML(rs io.ReadSeeker) (*GGML, error) {
126
	var magic uint32
Michael Yang's avatar
Michael Yang committed
127
	if err := binary.Read(rs, binary.LittleEndian, &magic); err != nil {
128
129
130
131
132
		return nil, err
	}

	var c container
	switch magic {
Bruce MacDonald's avatar
Bruce MacDonald committed
133
134
	case FILE_MAGIC_GGML, FILE_MAGIC_GGMF, FILE_MAGIC_GGJT:
		return nil, ErrUnsupportedFormat
135
	case FILE_MAGIC_GGLA:
Michael Yang's avatar
Michael Yang committed
136
		c = &ContainerGGLA{}
Michael Yang's avatar
ggufv3  
Michael Yang committed
137
	case FILE_MAGIC_GGUF_LE:
138
		c = &ContainerGGUF{ByteOrder: binary.LittleEndian}
Michael Yang's avatar
ggufv3  
Michael Yang committed
139
	case FILE_MAGIC_GGUF_BE:
140
		c = &ContainerGGUF{ByteOrder: binary.BigEndian}
141
142
143
144
	default:
		return nil, errors.New("invalid file magic")
	}

Michael Yang's avatar
Michael Yang committed
145
	model, err := c.Decode(rs)
Michael Yang's avatar
Michael Yang committed
146
147
148
	if errors.Is(err, io.EOF) {
		// noop
	} else if err != nil {
149
150
151
		return nil, err
	}

Michael Yang's avatar
Michael Yang committed
152
153
154
155
156
	offset, err := rs.Seek(0, io.SeekCurrent)
	if err != nil {
		return nil, err
	}

157
	// final model type
158
159
160
	return &GGML{
		container: c,
		model:     model,
Michael Yang's avatar
Michael Yang committed
161
		Size:      offset,
162
163
	}, nil
}