Skip to content

Commit

Permalink
hacky fix, made array bigger to fit new params
Browse files Browse the repository at this point in the history
  • Loading branch information
bachittle committed Jan 9, 2024
1 parent d5b778d commit aa00e16
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ggml.c
Original file line number Diff line number Diff line change
Expand Up @@ -4007,7 +4007,7 @@ inline static void ggml_vec_argmax_f32(const int n, int * s, const float * x) {
// data types
//

static const char * GGML_OP_NAME[GGML_OP_COUNT] = {
static const char * GGML_OP_NAME[76] = {
"NONE",

"DUP",
Expand Down Expand Up @@ -4099,7 +4099,7 @@ static const char * GGML_OP_NAME[GGML_OP_COUNT] = {

static_assert(GGML_OP_COUNT == 74, "GGML_OP_COUNT != 74");

static const char * GGML_OP_SYMBOL[GGML_OP_COUNT] = {
static const char * GGML_OP_SYMBOL[76] = {
"none",

"x",
Expand Down

0 comments on commit aa00e16

Please sign in to comment.