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
!15465
[GraphKernal] Use ReduceSimplify2 only
From:
@lingyunli63
Reviewed-by: @gaoxiong1,@anyrenwei Signed-off-by:
@anyrenwei
pull/15465/MERGE
mindspore-ci-bot
Gitee
4 years ago
parent
fdadfb2871
b3fb5897dd
commit
2b349dbf53
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