From d98bcc46a01291d46f5418c31d11e4c328283674 Mon Sep 17 00:00:00 2001 From: lichun Date: Thu, 11 Mar 2021 14:02:46 +0800 Subject: [PATCH] dynamic shape inference support --- ge/executor/ge_executor.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ge/executor/ge_executor.cc b/ge/executor/ge_executor.cc index 8e8c9d3c..ae7bca0d 100755 --- a/ge/executor/ge_executor.cc +++ b/ge/executor/ge_executor.cc @@ -209,8 +209,7 @@ static void InitOpsProtoManager() { string file_path = RealPath(path.c_str()); if (file_path.empty()) { GELOGE(FAILED, "[Check][EnvPath]ASCEND_OPP_PATH path [%s] is invalid.", path.c_str()); - REPORT_INPUT_ERROR("E68016", "ASCEND_OPP_PATH [%s] is invalid.", - path.c_str()); + REPORT_INPUT_ERROR("E68016", {"ASCEND_OPP_PATH",path}); return; } opsproto_path = (path + "/op_proto/custom/" + ":") + (path + "/op_proto/built-in/");