Skip to content

Commit 039f835

Browse files
committed
fix compiling error
1 parent aca7069 commit 039f835

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

ggml/src/ggml-qnn/qnn/backend-ops.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@ constexpr const bool kQnnSupportedOps[] = {
112112
false, // GGML_OP_CONV_TRANSPOSE_1D
113113
false, // GGML_OP_IM2COL
114114
false, // GGML_OP_IM2COL_BACK
115+
false, // GGML_OP_CONV_2D_DW
115116
false, // GGML_OP_CONV_TRANSPOSE_2D
116117
false, // GGML_OP_POOL_1D
117118
false, // GGML_OP_POOL_2D

ggml/src/ggml-qnn/qnn/op-config-caps.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,7 @@ constexpr const qnn_op_caps_t kOpCaps[] = {
157157
{}, // GGML_OP_CONV_TRANSPOSE_1D
158158
{}, // GGML_OP_IM2COL
159159
{}, // GGML_OP_IM2COL_BACK
160+
{}, // GGML_OP_CONV_2D_DW
160161
{}, // GGML_OP_CONV_TRANSPOSE_2D
161162
{}, // GGML_OP_POOL_1D
162163
{}, // GGML_OP_POOL_2D
@@ -329,6 +330,7 @@ constexpr const op_constructor_t kOpConstructors[] = {
329330
nullptr, // GGML_OP_CONV_TRANSPOSE_1D
330331
nullptr, // GGML_OP_IM2COL
331332
nullptr, // GGML_OP_IM2COL_BACK
333+
nullptr, // GGML_OP_CONV_2D_DW
332334
nullptr, // GGML_OP_CONV_TRANSPOSE_2D
333335
nullptr, // GGML_OP_POOL_1D
334336
nullptr, // GGML_OP_POOL_2D

0 commit comments

Comments
 (0)