@@ -146,6 +146,7 @@ constexpr const qnn_op_caps_t kOpCaps[] = {
146146 {}, // GGML_OP_TRANSPOSE
147147 {}, // GGML_OP_GET_ROWS
148148 {}, // GGML_OP_GET_ROWS_BACK
149+ {}, // GGML_OP_SET_ROWS
149150 {}, // GGML_OP_DIAG
150151 {}, // GGML_OP_DIAG_MASK_INF
151152 {}, // GGML_OP_DIAG_MASK_ZERO
@@ -164,6 +165,7 @@ constexpr const qnn_op_caps_t kOpCaps[] = {
164165 {}, // GGML_OP_POOL_2D_BACK
165166 {}, // GGML_OP_UPSCALE
166167 {}, // GGML_OP_PAD
168+ {}, // GGML_OP_ROLL
167169 {}, // GGML_OP_PAD_REFLECT_1D
168170 {}, // GGML_OP_ARANGE
169171
@@ -194,6 +196,7 @@ constexpr const qnn_op_caps_t kOpCaps[] = {
194196 {}, // GGML_OP_CROSS_ENTROPY_LOSS
195197 {}, // GGML_OP_CROSS_ENTROPY_LOSS_BACK
196198 {}, // GGML_OP_OPT_STEP_ADAMW
199+ {}, // GGML_OP_GLU
197200
198201 // ggml_unary_op
199202 {}, // GGML_UNARY_OP_ABS
@@ -320,6 +323,7 @@ constexpr const op_constructor_t kOpConstructors[] = {
320323 nullptr , // GGML_OP_TRANSPOSE
321324 nullptr , // GGML_OP_GET_ROWS
322325 nullptr , // GGML_OP_GET_ROWS_BACK
326+ nullptr , // GGML_OP_SET_ROWS
323327 nullptr , // GGML_OP_DIAG
324328 nullptr , // GGML_OP_DIAG_MASK_INF
325329 nullptr , // GGML_OP_DIAG_MASK_ZERO
@@ -338,6 +342,7 @@ constexpr const op_constructor_t kOpConstructors[] = {
338342 nullptr , // GGML_OP_POOL_2D_BACK
339343 nullptr , // GGML_OP_UPSCALE
340344 nullptr , // GGML_OP_PAD
345+ nullptr , // GGML_OP_ROLL
341346 nullptr , // GGML_OP_PAD_REFLECT_1D
342347 nullptr , // GGML_OP_ARANGE
343348 nullptr , // GGML_OP_TIMESTEP_EMBEDDING
@@ -367,6 +372,7 @@ constexpr const op_constructor_t kOpConstructors[] = {
367372 nullptr , // GGML_OP_CROSS_ENTROPY_LOSS
368373 nullptr , // GGML_OP_CROSS_ENTROPY_LOSS_BACK
369374 nullptr , // GGML_OP_OPT_STEP_ADAMW
375+ nullptr , // GGML_OP_GLU
370376
371377 // ggml_unary_op
372378 nullptr , // GGML_UNARY_OP_ABS
0 commit comments