diff --git a/ge/common/dump/dump_op.cc b/ge/common/dump/dump_op.cc index 6996df5c..ae29b2a8 100755 --- a/ge/common/dump/dump_op.cc +++ b/ge/common/dump/dump_op.cc @@ -104,7 +104,7 @@ Status DumpOp::DumpOutput(aicpu::dump::Task &task) { if (TensorUtils::GetTensorSizeInBytes(output_descs.at(i), output_size) != SUCCESS) { GELOGE(ACL_ERROR_GE_INTERNAL_ERROR, "[Get][TensorSize]Failed, output %zu, node %s(%s),", i, op_desc_->GetName().c_str(), op_desc_->GetType().c_str()); - REPORT_CALL_ERROR("E19999", "Get output %zu tensor size pf node %s(%s) failed", + REPORT_CALL_ERROR("E19999", "Get output %zu tensor size of node %s(%s) failed", i, op_desc_->GetName().c_str(), op_desc_->GetType().c_str()); return ACL_ERROR_GE_INTERNAL_ERROR; } diff --git a/ge/common/helper/model_helper.cc b/ge/common/helper/model_helper.cc index bcc83893..b62462b2 100644 --- a/ge/common/helper/model_helper.cc +++ b/ge/common/helper/model_helper.cc @@ -1040,7 +1040,7 @@ Status ModelTool::GetModelInfoFromOm(const char *model_file, ge::proto::ModelDef ModelPartition ir_part; ret = om_load_helper.GetModelPartition(MODEL_DEF, ir_part); if (ret != SUCCESS) { - REPORT_INNER_ERROR("E19999", "Get model partition failed ,model_file %s", model_file); + REPORT_INNER_ERROR("E19999", "Get model partition failed, model_file %s", model_file); GELOGE(ge::FAILED, "[Get][ModelPart]Failed, model_file %s", model_file); return ret; }