File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
Filter options
Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
Original file line number Diff line number Diff line change @@ -443,6 +443,8 @@ def byref(obj: CtypesCData, offset: Optional[int] = None) -> CtypesRef[CtypesCDa
443
443
# LLAMA_FTYPE_MOSTLY_Q4_0_4_4 = 33, // except 1d tensors
444
444
# LLAMA_FTYPE_MOSTLY_Q4_0_4_8 = 34, // except 1d tensors
445
445
# LLAMA_FTYPE_MOSTLY_Q4_0_8_8 = 35, // except 1d tensors
446
+ # LLAMA_FTYPE_MOSTLY_TQ1_0 = 36, // except 1d tensors
447
+ # LLAMA_FTYPE_MOSTLY_TQ2_0 = 37, // except 1d tensors
446
448
#
447
449
# LLAMA_FTYPE_GUESSED = 1024, // not specified in the model file
448
450
# };
@@ -479,6 +481,8 @@ def byref(obj: CtypesCData, offset: Optional[int] = None) -> CtypesRef[CtypesCDa
479
481
LLAMA_FTYPE_MOSTLY_Q4_0_4_4 = 33
480
482
LLAMA_FTYPE_MOSTLY_Q4_0_4_8 = 34
481
483
LLAMA_FTYPE_MOSTLY_Q4_0_8_8 = 35
484
+ LLAMA_FTYPE_MOSTLY_TQ1_0 = 36
485
+ LLAMA_FTYPE_MOSTLY_TQ2_0 = 37
482
486
LLAMA_FTYPE_GUESSED = 1024
483
487
484
488
# enum llama_rope_scaling_type {
You can’t perform that action at this time.
0 commit comments