diff --git a/ggml/src/ggml-qnn/qnn/backend-ops.cpp b/ggml/src/ggml-qnn/qnn/backend-ops.cpp index d4d2c57cbf..1446115a57 100644 --- a/ggml/src/ggml-qnn/qnn/backend-ops.cpp +++ b/ggml/src/ggml-qnn/qnn/backend-ops.cpp @@ -112,6 +112,7 @@ constexpr const bool kQnnSupportedOps[] = { false, // GGML_OP_CONV_TRANSPOSE_1D false, // GGML_OP_IM2COL false, // GGML_OP_IM2COL_BACK + false, // GGML_OP_CONV_2D_DW false, // GGML_OP_CONV_TRANSPOSE_2D false, // GGML_OP_POOL_1D false, // GGML_OP_POOL_2D diff --git a/ggml/src/ggml-qnn/qnn/op-config-caps.cpp b/ggml/src/ggml-qnn/qnn/op-config-caps.cpp index d5b55eff97..081b7fba7f 100644 --- a/ggml/src/ggml-qnn/qnn/op-config-caps.cpp +++ b/ggml/src/ggml-qnn/qnn/op-config-caps.cpp @@ -157,6 +157,7 @@ constexpr const qnn_op_caps_t kOpCaps[] = { {}, // GGML_OP_CONV_TRANSPOSE_1D {}, // GGML_OP_IM2COL {}, // GGML_OP_IM2COL_BACK + {}, // GGML_OP_CONV_2D_DW {}, // GGML_OP_CONV_TRANSPOSE_2D {}, // GGML_OP_POOL_1D {}, // GGML_OP_POOL_2D @@ -329,6 +330,7 @@ constexpr const op_constructor_t kOpConstructors[] = { nullptr, // GGML_OP_CONV_TRANSPOSE_1D nullptr, // GGML_OP_IM2COL nullptr, // GGML_OP_IM2COL_BACK + nullptr, // GGML_OP_CONV_2D_DW nullptr, // GGML_OP_CONV_TRANSPOSE_2D nullptr, // GGML_OP_POOL_1D nullptr, // GGML_OP_POOL_2D