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
use ReduceSimplify2 only
pull/15465/head
lingyunli63
4 years ago
parent
ba5b751418
commit
b3fb5897dd
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
mindspore/ccsrc/backend/optimizer/graph_kernel/arithmetic_simplify.cc
+ 1
- 1
mindspore/ccsrc/backend/optimizer/graph_kernel/arithmetic_simplify.cc
View File
@@ -725,7 +725,7 @@ AnfNodePtr SimplifyReduce3(const AnfNodePtr &node) {
}
AnfNodePtr TrySimplify(const AnfNodePtr &node) {
std::list<std::function<AnfNodePtr(const AnfNodePtr &)>> SimplifyFuncList = {SimplifyReduce
1
};
std::list<std::function<AnfNodePtr(const AnfNodePtr &)>> SimplifyFuncList = {SimplifyReduce
2
};
for (auto f : SimplifyFuncList) {
auto ret = f(node);
if (ret != nullptr) {
Write
Preview
Loading…
Cancel
Save