You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

merge_pass.cc 7.0 kB

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
4 years ago
5 years ago
4 years ago
5 years ago
4 years ago
5 years ago
5 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. /**
  2. * Copyright 2020 Huawei Technologies Co., Ltd
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #include "graph/passes/merge_pass.h"
  17. #include <memory>
  18. #include <string>
  19. #include <vector>
  20. #include "framework/common/debug/ge_log.h"
  21. #include "common/ge/ge_util.h"
  22. #include "graph/common/omg_util.h"
  23. #include "graph/debug/ge_attr_define.h"
  24. #include "graph/utils/graph_utils.h"
  25. #include "graph/passes/pass_utils.h"
  26. namespace ge {
  27. const int kValueIndexOutputIndex = 1;
  28. Status MergePass::Run(NodePtr &node) {
  29. GELOGD("MergePass running");
  30. if (node == nullptr) {
  31. GELOGE(PARAM_INVALID, "param [node] must not be null.");
  32. return PARAM_INVALID;
  33. }
  34. std::string op_type;
  35. GE_CHK_STATUS_RET(GetOriginalType(node, op_type), "get original type failed");
  36. if (op_type != MERGE) {
  37. return SUCCESS;
  38. }
  39. if (node->GetAllOutDataAnchors().empty()) {
  40. GELOGE(PARAM_INVALID, "[%s] Merge node output anchor is empty", node->GetName().c_str());
  41. return PARAM_INVALID;
  42. }
  43. const auto &in_data_nodes = node->GetInDataNodes();
  44. switch (in_data_nodes.size()) {
  45. case 0: {
  46. /// Case A: input_count = 0, the output of merge node is inactive as well
  47. /// In which case the output branch can be removed
  48. /// until another merge node is met
  49. std::vector<NodePtr> del_nodes;
  50. std::vector<NodePtr> end_nodes;
  51. Status ret = PassUtils::RemoveBranch(node, del_nodes, end_nodes);
  52. for (auto &end_node : end_nodes) {
  53. AddRePassNode(end_node);
  54. }
  55. for (const auto &delete_node : del_nodes) {
  56. AddNodeDeleted(delete_node);
  57. }
  58. return ret;
  59. }
  60. case 1: { // Case B: input_count = 1, the merge node can be optimized out
  61. std::vector<int> merge_io_map = {PassUtils::GetUniqueInDataAnchorIndex(node), -1};
  62. if (merge_io_map[0] != -1 && IsNeedChangeIndexToConstant(node)) {
  63. int index = merge_io_map[0];
  64. if (ChangeIndexToConstant(node, index) != SUCCESS) {
  65. GELOGE(FAILED, "[%s] Change value index to be Constant failed.", node->GetName().c_str());
  66. return FAILED;
  67. }
  68. }
  69. auto in_node = in_data_nodes.at(0);
  70. if (IsMergeInputNeedOptimized(in_node)) {
  71. if (IsolateAndDeleteNode(in_node, {0}) != SUCCESS) {
  72. GELOGE(FAILED, "Isolate and delete node %s failed.", in_node->GetName().c_str());
  73. return FAILED;
  74. }
  75. }
  76. return IsolateAndDeleteNode(node, merge_io_map);
  77. }
  78. default: {
  79. // Case C: input_count > 1, the merge node can not be optimized
  80. return SUCCESS;
  81. }
  82. }
  83. }
  84. bool MergePass::IsNeedChangeIndexToConstant(NodePtr &node) const {
  85. /// value_index is the index 1 output of the Merge
  86. /// value_index link to other node, change it to be Constant
  87. GE_IF_BOOL_EXEC(node == nullptr, GELOGW("Node is nullptr"); return false);
  88. auto out_anchor = node->GetOutDataAnchor(kValueIndexOutputIndex);
  89. GE_IF_BOOL_EXEC(out_anchor == nullptr, GELOGW("Out_anchor is nullptr"); return false);
  90. for (const auto &peer_in_anchor : out_anchor->GetPeerInDataAnchors()) {
  91. if (peer_in_anchor != nullptr && peer_in_anchor->GetOwnerNode() != nullptr) {
  92. GELOGI(
  93. "[%s] MergePass, value_index link to other node, "
  94. "change it to be Constant.",
  95. node->GetName().c_str());
  96. return true;
  97. }
  98. }
  99. return false;
  100. }
  101. Status MergePass::ChangeIndexToConstant(NodePtr &node, int &value_index) {
  102. GE_CHECK_NOTNULL(node);
  103. ComputeGraphPtr graph = node->GetOwnerComputeGraph();
  104. if (graph == nullptr) {
  105. GELOGE(FAILED, "[%s] The owner graph must not be null.", node->GetName().c_str());
  106. return FAILED;
  107. }
  108. OpDescPtr constant_op_desc = nullptr;
  109. if (CreateConstByValue(node, value_index, constant_op_desc) != SUCCESS) {
  110. return FAILED;
  111. }
  112. NodePtr const_node = graph->AddNode(constant_op_desc);
  113. if (const_node == nullptr) {
  114. return FAILED;
  115. }
  116. // Change peer in anchors from value_index to new Constant node
  117. if (GraphUtils::ReplaceNodeAnchors(const_node, node, {}, {1}) != GRAPH_SUCCESS) {
  118. GELOGE(FAILED, "[%s] ReplaceNodeAnchors failed.", node->GetName().c_str());
  119. return FAILED;
  120. }
  121. auto out_control_anchor = node->GetOutControlAnchor();
  122. GE_CHECK_NOTNULL(out_control_anchor);
  123. // Add control anchor between Merge and Constant
  124. if (out_control_anchor->LinkTo(const_node->GetInControlAnchor()) != GRAPH_SUCCESS) {
  125. return FAILED;
  126. }
  127. return SUCCESS;
  128. }
  129. Status MergePass::CreateConstByValue(NodePtr &node, int value_index, OpDescPtr &op_desc) {
  130. std::string constant_name = node->GetName() + "_value_index";
  131. // 1. create Constant OpDesc
  132. op_desc = MakeShared<OpDesc>(constant_name, CONSTANT);
  133. if (op_desc == nullptr) {
  134. GELOGE(FAILED, "[%s] Make shared of Constant op desc failed.", constant_name.c_str());
  135. return FAILED;
  136. }
  137. // 2. get OpDesc of output number one of Merge(value_index)
  138. OpDescPtr original_op_desc = node->GetOpDesc();
  139. if (original_op_desc == nullptr) {
  140. GELOGE(FAILED, "[%s] Op desc must not be null.", constant_name.c_str());
  141. return FAILED;
  142. }
  143. GeTensorDesc original_out_tensor_desc = original_op_desc->GetOutputDesc(1);
  144. original_out_tensor_desc.SetDataType(DT_INT32);
  145. // 3. create attr value of Constant, is a tensor
  146. GeTensorPtr const_tensor_ptr =
  147. MakeShared<GeTensor>(original_out_tensor_desc, reinterpret_cast<uint8_t *>(&value_index), sizeof(int));
  148. if (const_tensor_ptr == nullptr) {
  149. GELOGE(FAILED, "[%s] Make shared of Constant tensor failed.", constant_name.c_str());
  150. return FAILED;
  151. }
  152. GE_IF_BOOL_EXEC(!AttrUtils::SetTensor(op_desc, ATTR_NAME_WEIGHTS, const_tensor_ptr),
  153. GELOGE(FAILED, "get ATTR_NAME_WEIGHTS failed"); return FAILED);
  154. // 4. set Constant output desc
  155. GE_CHK_STATUS_RET(op_desc->AddOutputDesc(original_out_tensor_desc), "add out put desc failed");
  156. return SUCCESS;
  157. }
  158. bool MergePass::IsMergeInputNeedOptimized(NodePtr &node) const {
  159. if (node == nullptr) {
  160. return false;
  161. }
  162. // node is not inserted by MergeInputMemcpyPass
  163. if ((node->GetType() != MEMCPYASYNC) && (node->GetType() != MEMCPYADDRASYNC)) {
  164. return false;
  165. }
  166. if (node->GetInDataNodes().size() != 1) {
  167. return false;
  168. }
  169. auto in_node = node->GetInDataNodes().at(0);
  170. if (in_node == nullptr) {
  171. return false;
  172. }
  173. // in_node may be global_step var
  174. if ((in_node->GetType() == VARIABLE) || (in_node->GetType() == VARIABLEV2)) {
  175. return false;
  176. }
  177. return true;
  178. }
  179. } // namespace ge

图引擎模块(GE)是MindSpore的一个子模块,其代码由C++实现,位于前端模块ME和底层硬件之间,起到承接作用。图引擎模块以ME下发的图作为输入,然后进行一系列的深度图优化操作,最后输出一张可以在底层硬件上高效运行的图。GE针对昇腾AI处理器的硬件结构特点,做了特定的优化工作,以此来充分发挥出昇腾AI处理器的强大算力。在进行模型训练/推理时,GE会被自动调用而用户并不感知。GE主要由GE API和GE Core两部分组成,详细的架构图如下所示