fix compiling error
This commit is contained in:
parent
dd56e72e55
commit
3686cb5fea
|
|
@ -120,6 +120,7 @@ constexpr const bool kQnnSupportedOps[] = {
|
|||
false, // GGML_OP_CONV_TRANSPOSE_1D
|
||||
false, // GGML_OP_IM2COL
|
||||
false, // GGML_OP_IM2COL_BACK
|
||||
false, // GGML_OP_IM2COL_3D
|
||||
false, // GGML_OP_CONV_2D
|
||||
false, // GGML_OP_CONV_3D
|
||||
false, // GGML_OP_CONV_2D_DW
|
||||
|
|
|
|||
|
|
@ -175,6 +175,7 @@ constexpr const qnn_op_caps_t kOpCaps[] = {
|
|||
{}, // GGML_OP_CONV_TRANSPOSE_1D
|
||||
{}, // GGML_OP_IM2COL
|
||||
{}, // GGML_OP_IM2COL_BACK
|
||||
{}, // GGML_OP_IM2COL_3D
|
||||
{}, // GGML_OP_CONV_2D
|
||||
{}, // GGML_OP_CONV_3D
|
||||
{}, // GGML_OP_CONV_2D_DW
|
||||
|
|
@ -356,6 +357,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_IM2COL_3D
|
||||
nullptr, // GGML_OP_CONV_2D
|
||||
nullptr, // GGML_OP_CONV_3D
|
||||
nullptr, // GGML_OP_CONV_2D_DW
|
||||
|
|
|
|||
Loading…
Reference in New Issue