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 bug of pass manager not new node causing the node cannot find in the allnodes list
tags/v0.5.0-beta
WilliamLian
5 years ago
parent
6748ef0019
commit
b56159e078
1 changed files
with
1 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-2
mindspore/ccsrc/pre_activate/pass/convert_tuple_output_to_maketuple.cc
+ 1
- 2
mindspore/ccsrc/pre_activate/pass/convert_tuple_output_to_maketuple.cc
View File
@@ -47,8 +47,7 @@ CNodePtr ConvertTupleInputToMakeTuple(const FuncGraphPtr &graph, const CNodePtr
convert_inputs.push_back(input_node);
}
}
cnode_ptr->set_inputs(convert_inputs);
return cnode_ptr;
return graph->NewCNode(convert_inputs);
}
} // namespace
Write
Preview
Loading…
Cancel
Save