Browse Source

fix error codes

tags/v1.3.0
lichun 3 years ago
parent
commit
b00f3de4b2
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      ge/hybrid/model/hybrid_model_builder.cc

+ 2
- 2
ge/hybrid/model/hybrid_model_builder.cc View File

@@ -273,8 +273,8 @@ Status HybridModelBuilder::ParseForceInfershapeNodes(const NodePtr &node, NodeIt
// not care result, if no this attr, stand for the op does not need force infershape
(void)AttrUtils::GetBool(op_desc, kForceInfershape, node_item.is_need_force_infershape);
GELOGD("node [%s] is need do infershape , flag is %d",
op_desc->GetName().c_str(),
node_item.is_need_force_infershape);
op_desc->GetName().c_str(),
node_item.is_need_force_infershape);
return SUCCESS;
}



Loading…
Cancel
Save