Merge pull request !23871 from hwjiaorui/tbe-log
This commit is contained in:
i-robot 2021-09-23 03:53:09 +00:00 committed by Gitee
commit 504b3f278c
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ bool SingleTbeJsonCreator::GenInputsJson(const AnfNodePtr &anf_node, nlohmann::j
std::vector<OpIOInfoPtr> inputs_ptr = op_info_ptr->inputs_ptr();
std::vector<nlohmann::json> inputs_json;
if (inputs_ptr.empty()) {
MS_LOG(WARNING) << op_name << " registration info has no input info.";
MS_LOG(DEBUG) << op_name << " registration info has no input info.";
(*compute_json)[kJInputDesc] = inputs_json;
return true;
}