This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
AI开发
Register
Sign In
Huawei_Technology
/
mindspore
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
13
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
fix log print of bprop loading
tags/v0.5.0-beta
panyifeng
5 years ago
parent
8de8289cfd
commit
61af205204
2 changed files
with
0 additions
and
6 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+0
-3
mindspore/ccsrc/ir/primitive.cc
+0
-3
mindspore/ccsrc/utils/primitive_utils.cc
+ 0
- 3
mindspore/ccsrc/ir/primitive.cc
View File
@@ -52,9 +52,6 @@ py::function PrimitivePy::GetBpropFunction() {
return fn;
} else {
auto fn = GetBpropFunctionByObj(python_obj_);
if (fn.is_none()) {
MS_LOG(WARNING) << "Can't find bprop function for " << name();
}
return fn;
}
}
+ 0
- 3
mindspore/ccsrc/utils/primitive_utils.cc
View File
@@ -29,9 +29,6 @@ py::function GetBpropFunctionByObj(py::object obj) {
py::function GetBpropFunction(std::string name) {
auto fn = GetBpropFunctionByObj(py::str(name));
if (fn.is_none()) {
MS_LOG(WARNING) << "Can't find bprop function for " << name;
}
return fn;
}
Write
Preview
Loading…
Cancel
Save