Skip to content

Commit

Permalink
minor : updates after rebase to latest master
Browse files Browse the repository at this point in the history
  • Loading branch information
ggerganov committed Apr 15, 2023
1 parent 312a927 commit 3a111ab
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ggml.c
Original file line number Diff line number Diff line change
Expand Up @@ -3049,11 +3049,12 @@ static const char * GGML_TYPE_NAME[GGML_TYPE_COUNT] = {
[GGML_TYPE_F16] = "f16",
[GGML_TYPE_Q4_0] = "q4_0",
[GGML_TYPE_Q4_1] = "q4_1",
[GGML_TYPE_Q8_0] = "q8_0",
[GGML_TYPE_I8] = "i8",
[GGML_TYPE_I16] = "i16",
[GGML_TYPE_I32] = "i32",
};
static_assert(GGML_TYPE_COUNT == 7, "GGML_TYPE_NAME is outdated");
static_assert(GGML_TYPE_COUNT == 8, "GGML_TYPE_NAME is outdated");

static const char * GGML_OP_LABEL[GGML_OP_COUNT] = {
"NONE",
Expand Down Expand Up @@ -9449,6 +9450,7 @@ static void ggml_compute_forward_map_unary(
} break;
case GGML_TYPE_Q4_0:
case GGML_TYPE_Q4_1:
case GGML_TYPE_Q8_0:
case GGML_TYPE_I8:
case GGML_TYPE_I16:
case GGML_TYPE_I32:
Expand Down Expand Up @@ -9504,6 +9506,7 @@ static void ggml_compute_forward_map_binary(
} break;
case GGML_TYPE_Q4_0:
case GGML_TYPE_Q4_1:
case GGML_TYPE_Q8_0:
case GGML_TYPE_I8:
case GGML_TYPE_I16:
case GGML_TYPE_I32:
Expand Down

0 comments on commit 3a111ab

Please sign in to comment.