From 7cbc4fbd8c9bd15513d0b47e1fe88e722bd863d5 Mon Sep 17 00:00:00 2001 From: hongruichen Date: Fri, 12 Jul 2024 23:26:38 +0800 Subject: [PATCH] add mul --- tests/ggml-qnn/ggml-qnn-ut.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/ggml-qnn/ggml-qnn-ut.cpp b/tests/ggml-qnn/ggml-qnn-ut.cpp index 0c3fbf71e..96dfa2bcf 100644 --- a/tests/ggml-qnn/ggml-qnn-ut.cpp +++ b/tests/ggml-qnn/ggml-qnn-ut.cpp @@ -507,6 +507,7 @@ static int qnn_op_ut(int num_threads, int n_backend_type, int n_ggml_op_type) { static const std::unordered_map kMapStringToGGMLOp = { {"GGML_OP_ADD", GGML_OP_ADD}, {"GGML_OP_MUL_MAT", GGML_OP_MUL_MAT}, + {"GGML_OP_MUL", GGML_OP_MUL}, }; int main(int argc, char * argv[]) {