|
- /**
- * Copyright 2019-2020 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 "framework/common/util.h"
- #include "graph_item.h"
-
- namespace ge {
- namespace hybrid {
- namespace {
- constexpr int kInvalidIndex = -1;
- } // namespace
- GraphItem::~GraphItem() {
- GELOGD("[%s] GraphItem destroyed.", name_.c_str());
- }
-
- const vector<NodeItem *> &hybrid::GraphItem::GetAllNodes() const {
- return node_items_;
- }
-
- const vector<NodeItem *> &GraphItem::GetAllNodes(int group) const {
- if (group == -1) {
- return GetAllNodes();
- }
-
- if (group >= static_cast<int>(grouped_node_items_.size())) {
- static vector<NodeItem *> empty_nodes;
- return empty_nodes;
- }
-
- return grouped_node_items_[group];
- }
-
- const vector<NodeItem *> &GraphItem::GetRootNodes(int group) const {
- if (group == -1) {
- return root_items_;
- }
-
- if (static_cast<uint32_t>(group) >= grouped_root_items_.size()) {
- static vector<NodeItem *> empty_nodes;
- return empty_nodes;
- }
-
- return grouped_root_items_[group];
- }
-
- size_t GraphItem::GetNodeSize(int group) const {
- if (group == -1) {
- return node_items_.size();
- }
-
- return (static_cast<uint32_t>(group) < grouped_node_items_.size()) ? grouped_node_items_[group].size() : 0;
- }
-
- const vector<const NodeItem *> &GraphItem::GetInputNodes() const {
- return input_nodes_;
- }
-
- Status GraphItem::GetOutputDescList(vector<ConstGeTensorDescPtr> &output_desc_list) const {
- if (output_node_ == nullptr) {
- return SUCCESS;
- }
-
- if (is_dynamic_) {
- for (auto &tensor_desc : output_node_->GetOpDesc()->GetAllInputsDescPtr()) {
- output_desc_list.emplace_back(tensor_desc);
- }
- } else {
- for (auto &tensor_desc : output_node_->GetOpDesc()->GetAllOutputsDescPtr()) {
- output_desc_list.emplace_back(tensor_desc);
- }
- }
-
- return SUCCESS;
- }
-
- bool GraphItem::IsDynamic() const {
- return is_dynamic_;
- }
-
- const vector<int> &GraphItem::GetInputIndexMapping() const {
- return input_index_mapping_;
- }
-
- int GraphItem::GetParentOutputIndex(size_t index) const {
- if (index >= output_index_mapping_.size()) {
- return kInvalidIndex;
- }
-
- return output_index_mapping_[index];
- }
-
- const NodeItem *GraphItem::GetOutputNode() const {
- return output_node_;
- }
- const vector<std::pair<const NodeItem *, int>> &GraphItem::GetOutputEdges() const {
- return output_edges_;
- }
-
- Status GraphItem::GroupNodes(const std::vector<NodeItem *> &node_items,
- std::vector<std::vector<NodeItem *>> &grouped_node_items) const {
- int curr_group = 0;
- int last_group = INT32_MIN;
- std::set<int> seen_groups;
- for (auto node : node_items) {
- int group = node->group;
- if (group != last_group) {
- if (seen_groups.find(group) != seen_groups.end()) {
- GELOGE(INTERNAL_ERROR,
- "[Find][Group]Unordered node group found. node = %s, group = %d", node->NodeName().c_str(), group);
- return INTERNAL_ERROR;
- } else {
- last_group = group;
- seen_groups.insert(group);
- curr_group = static_cast<int>(grouped_node_items.size());
- grouped_node_items.emplace_back(std::vector<NodeItem *>());
- }
- }
-
- node->group = curr_group;
- GELOGD("Adding node [%s] to group %d", node->NodeName().c_str(), node->group);
- grouped_node_items.back().emplace_back(node);
- }
-
- return SUCCESS;
- }
-
- Status GraphItem::GroupNodes() {
- GE_CHK_STATUS_RET_NOLOG(GroupNodes(node_items_, grouped_node_items_));
- GE_CHK_STATUS_RET_NOLOG(GroupNodes(root_items_, grouped_root_items_));
- return SUCCESS;
- }
- } // namespace hybrid
- } // namespace ge
|