Skip to content

Commit 9f14ca8

Browse files
am17anMinh141120
authored andcommitted
Add Conv2d for CPU (ggml-org#14388)
* Conv2D: Add CPU version * Half decent * Tiled approach for F32 * remove file * Fix tests * Support F16 operations * add assert about size * Review: further formatting fixes, add assert and use CPU version of fp32->fp16
1 parent 33134bd commit 9f14ca8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ggml/src/ggml.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1003,7 +1003,7 @@ static const char * GGML_OP_NAME[GGML_OP_COUNT] = {
10031003
"GLU",
10041004
};
10051005

1006-
static_assert(GGML_OP_COUNT == 85, "GGML_OP_COUNT != 85");
1006+
static_assert(GGML_OP_COUNT == 86, "GGML_OP_COUNT != 86");
10071007

10081008
static const char * GGML_OP_SYMBOL[GGML_OP_COUNT] = {
10091009
"none",
@@ -1103,7 +1103,7 @@ static const char * GGML_OP_SYMBOL[GGML_OP_COUNT] = {
11031103
"glu(x)",
11041104
};
11051105

1106-
static_assert(GGML_OP_COUNT == 85, "GGML_OP_COUNT != 85");
1106+
static_assert(GGML_OP_COUNT == 86, "GGML_OP_COUNT != 86");
11071107

11081108
static_assert(GGML_OP_POOL_COUNT == 2, "GGML_OP_POOL_COUNT != 2");
11091109

0 commit comments

Comments
 (0)