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
clean batch when nodes is not empty
tags/v1.1.0
tronzhang
5 years ago
parent
135e21e5e1
commit
68868ab438
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/clean_all_in_once.cc
+ 1
- 1
mindspore/ccsrc/backend/optimizer/graph_kernel/clean_all_in_once.cc
View File
@@ -61,7 +61,7 @@ bool IsAtomicCleanNode(const AnfNodePtr &node) {
std::vector<AnfNodePtrList> SplitVectorByWidth(const AnfNodePtrList &nodes, int width) {
std::vector<AnfNodePtrList> splitted_nodes;
if (
!
nodes.empty()) {
if (nodes.empty()) {
return splitted_nodes;
}
Write
Preview
Loading…
Cancel
Save