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 9.2 kB

5 years ago
5 years ago
5 years ago
5 years ago
4 years ago
5 years ago
5 years ago
4 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
4 years ago
5 years ago
4 years ago
5 years ago
4 years ago
5 years ago
4 years ago
5 years ago
4 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
5 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  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 "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. const size_t kCaseNoInput = 0;
  29. const size_t kCaseOneInput = 1;
  30. Status MergePass::Run(NodePtr &node) {
  31. GELOGD("MergePass running");
  32. if (node == nullptr) {
  33. REPORT_INNER_ERROR("E19999", "Param node is nullptr, check invalid");
  34. GELOGE(PARAM_INVALID, "[Check][Param] param [node] must not be null.");
  35. return PARAM_INVALID;
  36. }
  37. std::string op_type;
  38. GE_CHK_STATUS_RET(GetOriginalType(node, op_type), "[Get][OriginalType] of node:%s failed", node->GetName().c_str());
  39. if (op_type != MERGE) {
  40. return SUCCESS;
  41. }
  42. if (node->GetAllOutDataAnchors().empty()) {
  43. REPORT_INNER_ERROR("E19999", "Param node:%s(%s) all data anchor size is 0, check invalid",
  44. node->GetName().c_str(), node->GetType().c_str());
  45. GELOGE(PARAM_INVALID, "[Check][Param] Param node:%s(%s) all data anchor size is 0",
  46. node->GetName().c_str(), node->GetType().c_str());
  47. return PARAM_INVALID;
  48. }
  49. const auto &in_data_nodes = node->GetInDataNodes();
  50. switch (in_data_nodes.size()) {
  51. case kCaseNoInput: {
  52. /// Case A: input_count = 0, the output of merge node is inactive as well
  53. /// In which case the output branch can be removed
  54. /// until another merge node is met
  55. std::vector<NodePtr> del_nodes;
  56. std::vector<NodePtr> end_nodes;
  57. Status ret = PassUtils::RemoveBranch(node, del_nodes, end_nodes);
  58. for (auto &end_node : end_nodes) {
  59. AddRePassNode(end_node);
  60. }
  61. for (const auto &delete_node : del_nodes) {
  62. AddNodeDeleted(delete_node);
  63. }
  64. return ret;
  65. }
  66. case kCaseOneInput: { // Case B: input_count = 1, the merge node can be optimized out
  67. std::vector<int> merge_io_map = {PassUtils::GetUniqueInDataAnchorIndex(node), -1};
  68. if (merge_io_map[0] != -1 && IsNeedChangeIndexToConstant(node)) {
  69. int index = merge_io_map[0];
  70. if (ChangeIndexToConstant(node, index) != SUCCESS) {
  71. GELOGE(FAILED, "[Change][Index] to be Constant failed, node:%s.", node->GetName().c_str());
  72. return FAILED;
  73. }
  74. }
  75. auto in_node = in_data_nodes.at(0);
  76. if (IsMergeInputNeedOptimized(in_node)) {
  77. if (IsolateAndDeleteNode(in_node, {0}) != SUCCESS) {
  78. REPORT_CALL_ERROR("E19999", "Isolate and delete node:%s(%s) failed",
  79. in_node->GetName().c_str(), in_node->GetType().c_str());
  80. GELOGE(FAILED, "[Remove][Node] %s failed.", in_node->GetName().c_str());
  81. return FAILED;
  82. }
  83. }
  84. return IsolateAndDeleteNode(node, merge_io_map);
  85. }
  86. default: {
  87. // Case C: input_count > 1, the merge node can not be optimized
  88. return SUCCESS;
  89. }
  90. }
  91. }
  92. bool MergePass::IsNeedChangeIndexToConstant(NodePtr &node) const {
  93. /// value_index is the index 1 output of the Merge
  94. /// value_index link to other node, change it to be Constant
  95. GE_IF_BOOL_EXEC(node == nullptr, GELOGW("Node is nullptr"); return false);
  96. auto out_anchor = node->GetOutDataAnchor(kValueIndexOutputIndex);
  97. GE_IF_BOOL_EXEC(out_anchor == nullptr, GELOGW("Out_anchor is nullptr"); return false);
  98. for (const auto &peer_in_anchor : out_anchor->GetPeerInDataAnchors()) {
  99. if (peer_in_anchor != nullptr && peer_in_anchor->GetOwnerNode() != nullptr) {
  100. GELOGI(
  101. "[%s] MergePass, value_index link to other node, "
  102. "change it to be Constant.",
  103. node->GetName().c_str());
  104. return true;
  105. }
  106. }
  107. return false;
  108. }
  109. Status MergePass::ChangeIndexToConstant(NodePtr &node, int &value_index) {
  110. GE_CHECK_NOTNULL(node);
  111. ComputeGraphPtr graph = node->GetOwnerComputeGraph();
  112. if (graph == nullptr) {
  113. REPORT_INNER_ERROR("E19999", "Owner graph of node:%s(%s) is nullptr, check invalid",
  114. node->GetName().c_str(), node->GetType().c_str());
  115. GELOGE(FAILED, "[Get][ComputeGraph] failed, Owner graph of node:%s(%s) is nullptr.",
  116. node->GetName().c_str(), node->GetType().c_str());
  117. return FAILED;
  118. }
  119. OpDescPtr constant_op_desc = nullptr;
  120. if (CreateConstByValue(node, value_index, constant_op_desc) != SUCCESS) {
  121. return FAILED;
  122. }
  123. NodePtr const_node = graph->AddNode(constant_op_desc);
  124. if (const_node == nullptr) {
  125. REPORT_CALL_ERROR("E19999", "Add node:%s(%s) to graph:%s failed",
  126. constant_op_desc->GetName().c_str(), constant_op_desc->GetType().c_str(),
  127. graph->GetName().c_str());
  128. return FAILED;
  129. }
  130. // Change peer in anchors from value_index to new Constant node
  131. if (GraphUtils::ReplaceNodeAnchors(const_node, node, {}, {1}) != GRAPH_SUCCESS) {
  132. REPORT_CALL_ERROR("E19999", "Replace node:%s(%s) by node:%s(%s) failed",
  133. node->GetName().c_str(), node->GetType().c_str(),
  134. const_node->GetName().c_str(), const_node->GetType().c_str());
  135. GELOGE(FAILED, "[Replace][Node] %s(%s) by node:%s(%s) failed",
  136. node->GetName().c_str(), node->GetType().c_str(),
  137. const_node->GetName().c_str(), const_node->GetType().c_str());
  138. return FAILED;
  139. }
  140. auto out_control_anchor = node->GetOutControlAnchor();
  141. GE_CHECK_NOTNULL(out_control_anchor);
  142. // Add control anchor between Merge and Constant
  143. if (out_control_anchor->LinkTo(const_node->GetInControlAnchor()) != GRAPH_SUCCESS) {
  144. REPORT_CALL_ERROR("E19999", "Op:%s(%s) link control to op:%s(%s) failed",
  145. node->GetName().c_str(), node->GetType().c_str(),
  146. const_node->GetName().c_str(), const_node->GetType().c_str());
  147. return FAILED;
  148. }
  149. return SUCCESS;
  150. }
  151. Status MergePass::CreateConstByValue(NodePtr &node, int value_index, OpDescPtr &op_desc) {
  152. std::string constant_name = node->GetName() + "_value_index";
  153. // 1. create Constant OpDesc
  154. op_desc = MakeShared<OpDesc>(constant_name, CONSTANT);
  155. if (op_desc == nullptr) {
  156. REPORT_CALL_ERROR("E19999", "New OpDesc failed");
  157. GELOGE(FAILED, "[New][OpDesc] failed, name:%s.", constant_name.c_str());
  158. return FAILED;
  159. }
  160. // 2. get OpDesc of output number one of Merge(value_index)
  161. OpDescPtr original_op_desc = node->GetOpDesc();
  162. if (original_op_desc == nullptr) {
  163. REPORT_INNER_ERROR("E19999", "OpDesc in node is nullptr, check invalid");
  164. GELOGE(FAILED, "[Get][OpDesc] failed, Op desc must not be null.");
  165. return FAILED;
  166. }
  167. GeTensorDesc original_out_tensor_desc = original_op_desc->GetOutputDesc(1);
  168. original_out_tensor_desc.SetDataType(DT_INT32);
  169. // 3. create attr value of Constant, is a tensor
  170. GeTensorPtr const_tensor_ptr =
  171. MakeShared<GeTensor>(original_out_tensor_desc, reinterpret_cast<uint8_t *>(&value_index), sizeof(int));
  172. if (const_tensor_ptr == nullptr) {
  173. REPORT_CALL_ERROR("E19999", "New GeTensor failed");
  174. GELOGE(FAILED, "[New][GeTensor] failed.");
  175. return FAILED;
  176. }
  177. GE_IF_BOOL_EXEC(!AttrUtils::SetTensor(op_desc, ATTR_NAME_WEIGHTS, const_tensor_ptr),
  178. REPORT_CALL_ERROR("E19999", "Set Attr:%s to op:%s(%s) failed", ATTR_NAME_WEIGHTS.c_str(),
  179. op_desc->GetName().c_str(), op_desc->GetType().c_str());
  180. GELOGE(FAILED, "[Set][Attr] %s to op:%s(%s) failed", ATTR_NAME_WEIGHTS.c_str(),
  181. op_desc->GetName().c_str(), op_desc->GetType().c_str());
  182. return FAILED);
  183. // 4. set Constant output desc
  184. GE_CHK_GRAPH_STATUS_RET(op_desc->AddOutputDesc(original_out_tensor_desc),
  185. "[Add][OutputDesc] to op:%s(%s) failed",
  186. op_desc->GetName().c_str(), op_desc->GetType().c_str());
  187. return SUCCESS;
  188. }
  189. bool MergePass::IsMergeInputNeedOptimized(NodePtr &node) const {
  190. if (node == nullptr) {
  191. return false;
  192. }
  193. // node is not inserted by MergeInputMemcpyPass
  194. if ((node->GetType() != MEMCPYASYNC) && (node->GetType() != MEMCPYADDRASYNC)) {
  195. return false;
  196. }
  197. if (node->GetInDataNodes().size() != 1) {
  198. return false;
  199. }
  200. auto in_node = node->GetInDataNodes().at(0);
  201. if (in_node == nullptr) {
  202. return false;
  203. }
  204. // in_node may be global_step var
  205. if ((in_node->GetType() == VARIABLE) || (in_node->GetType() == VARIABLEV2)) {
  206. return false;
  207. }
  208. return true;
  209. }
  210. } // namespace ge

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