From cb27b63fac2d4f1d4bce7a7a32c7282ce4077bb5 Mon Sep 17 00:00:00 2001 From: wangcong Date: Mon, 27 Jul 2020 21:45:46 +0800 Subject: [PATCH] fix serving core dump problem --- mindspore/ops/_op_impl/tbe/matmul.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mindspore/ops/_op_impl/tbe/matmul.py b/mindspore/ops/_op_impl/tbe/matmul.py index 7784d5e222..0f68fa4c9d 100644 --- a/mindspore/ops/_op_impl/tbe/matmul.py +++ b/mindspore/ops/_op_impl/tbe/matmul.py @@ -17,7 +17,7 @@ from mindspore.ops.op_info_register import op_info_register, TBERegOp, DataType matmul_op_info = TBERegOp("MatMul") \ - .fusion_type("DYNAMIC") \ + .fusion_type("ELEMWISE") \ .async_flag(False) \ .binfile_name("matmul.so") \ .compute_cost(10) \