clean review bot warning

This commit is contained in:
WilliamLian 2020-07-20 11:17:43 +08:00
parent bbfcbbe26d
commit 6ed2e636e1
2 changed files with 0 additions and 2 deletions

View File

@ -156,6 +156,5 @@ const AnfNodePtr OptimizeDependence::GetConvertNode(const FuncGraphPtr &graph, c
} }
return replace_node; return replace_node;
} }
} // namespace opt } // namespace opt
} // namespace mindspore } // namespace mindspore

View File

@ -131,7 +131,6 @@ py::function PrimitivePy::GetComputeFunction() const {
MS_LOG(INFO) << name() << ": get_vm_impl_fn"; MS_LOG(INFO) << name() << ": get_vm_impl_fn";
py::function get_fn = parse::python_adapter::GetPyFn(vm_module, get_vm_impl_fn); py::function get_fn = parse::python_adapter::GetPyFn(vm_module, get_vm_impl_fn);
py::function vm_fn = get_fn(python_obj_); py::function vm_fn = get_fn(python_obj_);
if (py::isinstance<py::none>(vm_fn)) { if (py::isinstance<py::none>(vm_fn)) {
MS_LOG(WARNING) << "Cannot find " << python_obj_.attr("__class__").attr("__name__").cast<std::string>(); MS_LOG(WARNING) << "Cannot find " << python_obj_.attr("__class__").attr("__name__").cast<std::string>();
vm_fn = mindspore::GetComputeFunction(Primitive::name()); vm_fn = mindspore::GetComputeFunction(Primitive::name());