|
- /**
- * Copyright 2020-2022 Huawei Technologies Co., Ltd
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
- #include "frontend/optimizer/graph_transform.h"
- #include <vector>
- #include <algorithm>
- #include "ir/graph_utils.h"
-
- namespace mindspore {
- /* namespace to support opt */
- namespace opt {
- bool FuncGraphHasTupleInput(const FuncGraphPtr &fg) {
- auto is_tuple = [](const AnfNodePtr ¶m) {
- return param->abstract() != nullptr && param->abstract()->isa<abstract::AbstractTuple>();
- };
- return std::any_of(fg->parameters().cbegin(), fg->parameters().cend(), is_tuple);
- }
-
- std::vector<AnfNodePtr> TransformTupleArgument(const FuncGraphPtr &fg, const AnfNodePtr &node,
- const abstract::AbstractTuplePtr &abs) {
- auto &elements = abs->elements();
- std::vector<AnfNodePtr> tuple_node_expanded;
- for (size_t i = 0; i < elements.size(); i++) {
- auto idx = NewValueNode(SizeToLong(i));
- auto abstract_scalar = std::make_shared<abstract::AbstractScalar>(std::make_shared<Int64Imm>(SizeToLong(i)));
- idx->set_abstract(abstract_scalar);
- auto elem_node = fg->NewCNode({NewValueNode(prim::kPrimTupleGetItem), node, idx});
- elem_node->set_abstract(elements[i]);
- if (elements[i]->isa<abstract::AbstractTuple>()) {
- auto nodes = TransformTupleArgument(fg, elem_node, elements[i]->cast<abstract::AbstractTuplePtr>());
- tuple_node_expanded.insert(tuple_node_expanded.end(), nodes.begin(), nodes.end());
- } else {
- tuple_node_expanded.push_back(elem_node);
- }
- }
- return tuple_node_expanded;
- }
- } // namespace opt
- } // namespace mindspore
|