File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -3049,11 +3049,12 @@ static const char * GGML_TYPE_NAME[GGML_TYPE_COUNT] = {
3049
3049
[GGML_TYPE_F16 ] = "f16" ,
3050
3050
[GGML_TYPE_Q4_0 ] = "q4_0" ,
3051
3051
[GGML_TYPE_Q4_1 ] = "q4_1" ,
3052
+ [GGML_TYPE_Q8_0 ] = "q8_0" ,
3052
3053
[GGML_TYPE_I8 ] = "i8" ,
3053
3054
[GGML_TYPE_I16 ] = "i16" ,
3054
3055
[GGML_TYPE_I32 ] = "i32" ,
3055
3056
};
3056
- static_assert (GGML_TYPE_COUNT == 7 , "GGML_TYPE_NAME is outdated" );
3057
+ static_assert (GGML_TYPE_COUNT == 8 , "GGML_TYPE_NAME is outdated" );
3057
3058
3058
3059
static const char * GGML_OP_LABEL [GGML_OP_COUNT ] = {
3059
3060
"NONE" ,
@@ -9449,6 +9450,7 @@ static void ggml_compute_forward_map_unary(
9449
9450
} break ;
9450
9451
case GGML_TYPE_Q4_0 :
9451
9452
case GGML_TYPE_Q4_1 :
9453
+ case GGML_TYPE_Q8_0 :
9452
9454
case GGML_TYPE_I8 :
9453
9455
case GGML_TYPE_I16 :
9454
9456
case GGML_TYPE_I32 :
@@ -9504,6 +9506,7 @@ static void ggml_compute_forward_map_binary(
9504
9506
} break ;
9505
9507
case GGML_TYPE_Q4_0 :
9506
9508
case GGML_TYPE_Q4_1 :
9509
+ case GGML_TYPE_Q8_0 :
9507
9510
case GGML_TYPE_I8 :
9508
9511
case GGML_TYPE_I16 :
9509
9512
case GGML_TYPE_I32 :
You can’t perform that action at this time.
0 commit comments