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
!1813
fix bug of pass manager not new node causing the node cannot find in the all node list
Merge pull request
!1813
from lianliguang/master
tags/v0.5.0-beta
mindspore-ci-bot
Gitee
5 years ago
parent
82b6c83653
b56159e078
commit
1971e3f993
1 changed files
with
1 additions
and
2 deletions
Unified 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);
convert_inputs.push_back(input_node);
}
}
}
}
cnode_ptr->set_inputs(convert_inputs);
return cnode_ptr;
return graph->NewCNode(convert_inputs);
}
}
} // namespace
} // namespace
Write
Preview
Loading…
Cancel
Save