File tree E
8000
xpand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -180,6 +180,8 @@ def _load_shared_library(lib_base_name: str):
180
180
# LLAMA_FTYPE_MOSTLY_Q5_K_M = 17, // except 1d tensors
181
181
# LLAMA_FTYPE_MOSTLY_Q6_K = 18, // except 1d tensors
182
182
# LLAMA_FTYPE_MOSTLY_IQ2_XXS = 19, // except 1d tensors
183
+ # LLAMA_FTYPE_MOSTLY_IQ2_XS = 20, // except 1d tensors
184
+ # LLAMA_FTYPE_MOSTLY_Q2_K_S = 21, // except 1d tensors
183
185
184
186
# LLAMA_FTYPE_GUESSED = 1024, // not specified in the model file
185
187
# };
@@ -200,6 +202,9 @@ def _load_shared_library(lib_base_name: str):
200
202
LLAMA_FTYPE_MOSTLY_Q5_K_S = 16
201
203
LLAMA_FTYPE_MOSTLY_Q5_K_M = 17
202
204
LLAMA_FTYPE_MOSTLY_Q6_K = 18
205
+ LLAMA_FTYPE_MOSTLY_IQ2_XXS = 19
206
+ LLAMA_FTYPE_MOSTLY_IQ2_XS = 20
207
+ LLAMA_FTYPE_MOSTLY_Q2_K_S = 21
203
208
LLAMA_FTYPE_GUESSED = 1024
204
209
205
210
# enum llama_rope_scaling_type {
You can’t perform that action at this time.
0 commit comments