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.

hybrid_model_builder.cc 115 kB

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604
  1. /**
  2. * Copyright 2019-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 "hybrid/model/hybrid_model_builder.h"
  17. #include <algorithm>
  18. #include "common/math/math_util.h"
  19. #include "common/op/ge_op_utils.h"
  20. #include "graph/ge_context.h"
  21. #include "graph/build/memory/var_mem_assign_util.h"
  22. #include "graph/debug/ge_attr_define.h"
  23. #include "graph/common/omg_util.h"
  24. #include "graph/load/model_manager/model_utils.h"
  25. #include "graph/load/model_manager/model_manager.h"
  26. #include "graph/manager/graph_var_manager.h"
  27. #include "graph/manager/host_mem_manager.h"
  28. #include "graph/manager/trans_var_data_utils.h"
  29. #include "graph/manager/graph_mem_manager.h"
  30. #include "graph/utils/graph_utils.h"
  31. #include "hybrid/common/npu_memory_allocator.h"
  32. #include "hybrid/node_executor/node_executor.h"
  33. namespace ge {
  34. namespace hybrid {
  35. using domi::LogTimeStampDef;
  36. using domi::TaskDef;
  37. namespace {
  38. const uint32_t kSubgraphIndex = 0U;
  39. const uint32_t kVarOutputIndex = 0U;
  40. const uint64_t kProfilingFpStartLogid = 1U;
  41. const uint64_t kProfilingBpEndLogid = 2U;
  42. const uint64_t kProfilingIterEndLogid = 65535U;
  43. const int kBytes = 8;
  44. const int kDecimal = 10;
  45. const uint8_t kLoopEnterIdx = 0;
  46. const uint8_t kLoopIterationIdx = 1;
  47. const uint8_t kLoopMergeSize = 2;
  48. const uint8_t kStreamSwitchIdx = 1;
  49. const uint8_t kStreamSwitchNum = 2;
  50. const uint32_t kStringHeadElems = 2;
  51. const char *const kOwnerGraphIsUnknown = "OwnerGraphIsUnknown";
  52. const char *const kProfilingGraph = "ProfilingGraph";
  53. const char *const kProfilingFpNode = "ProfilingFpNode";
  54. const char *const kProfilingBpNode = "ProfilingBpNode";
  55. const char *const kProfilingEndNode = "ProfilingEndNode";
  56. const char *const kProfilingArNode = "ProfilingAllReduceNode";
  57. const char *const kEngineNameRts = "DNN_VM_RTS_OP_STORE";
  58. const char *const kForceInfershape = "_force_infershape_when_running";
  59. const std::set<std::string> kExecutionDependentTypes{ IF, STATELESSIF, CASE, STREAMSWITCH };
  60. const std::set<std::string> kMergeInputSkipTypes{ STREAMACTIVE, STREAMSWITCH, CONSTANT, CONSTANTOP };
  61. const std::set<std::string> kStreamActiveTypes{ ENTER, REFENTER, NEXTITERATION, REFNEXTITERATION };
  62. Status SetOutputNameAttr(ComputeGraph &graph) {
  63. vector<string> output_names;
  64. for (const auto &node : graph.GetDirectNode()) {
  65. auto op_desc = node->GetOpDesc();
  66. if (op_desc == nullptr) {
  67. continue;
  68. }
  69. auto op_type = op_desc->GetType();
  70. if (op_type == NETOUTPUT) {
  71. for (InDataAnchorPtr &in_data_anchor : node->GetAllInDataAnchors()) {
  72. const OutDataAnchorPtr &peer_out_anchor = in_data_anchor->GetPeerOutAnchor();
  73. GE_IF_BOOL_EXEC(peer_out_anchor == nullptr, continue);
  74. NodePtr in_node = peer_out_anchor->GetOwnerNode();
  75. GE_CHECK_NOTNULL(in_node);
  76. output_names.push_back(in_node->GetName());
  77. }
  78. }
  79. }
  80. GE_CHK_BOOL_EXEC(ge::AttrUtils::SetListStr(&graph, ATTR_MODEL_OUT_NODES_NAME, output_names),
  81. GELOGE(FAILED, "[Invoke][SetListStr] failed, graph:%s name:%s.", graph.GetName().c_str(),
  82. ATTR_MODEL_OUT_NODES_NAME.c_str());
  83. REPORT_CALL_ERROR("E19999", "SetListStr failed, graph:%s name:%s.", graph.GetName().c_str(),
  84. ATTR_MODEL_OUT_NODES_NAME.c_str());
  85. return FAILED);
  86. return SUCCESS;
  87. }
  88. int64_t CalcVarSizeInBytes(const GeTensorDesc &desc) {
  89. int64_t var_size = 0;
  90. auto data_type = desc.GetDataType();
  91. if (data_type == DT_STRING) {
  92. (void) TensorUtils::GetSize(desc, var_size);
  93. return var_size;
  94. }
  95. if (TensorUtils::GetTensorMemorySizeInBytes(desc, var_size) != GRAPH_SUCCESS) {
  96. GELOGW("Failed to calc var data size");
  97. return -1;
  98. }
  99. return var_size;
  100. }
  101. Status CollectDependenciesForFusedGraph(NodeItem &node_item, std::set<OpDesc *> &data_ops) {
  102. for (const auto &node : node_item.fused_subgraph->nodes) {
  103. auto op_desc = node->GetOpDesc();
  104. GE_CHECK_NOTNULL(op_desc);
  105. const auto &depends = op_desc->GetOpInferDepends();
  106. if (depends.empty()) {
  107. continue;
  108. }
  109. for (auto &input_name : depends) {
  110. auto input_index = op_desc->GetInputIndexByName(input_name);
  111. auto src_node = NodeUtils::GetInDataNodeByIndex(*node, input_index);
  112. GE_CHECK_NOTNULL(src_node);
  113. auto src_op_desc = src_node->GetOpDesc();
  114. GE_CHECK_NOTNULL(src_op_desc);
  115. if (src_node->GetType() != DATA_TYPE) {
  116. GELOGE(UNSUPPORTED, "[Check][NodeType][%s::%s] Node in fused subgraph can only depend on Data nodes,"
  117. "but depend on %s actually", node_item.NodeName().c_str(), node->GetName().c_str(),
  118. src_node->GetType().c_str());
  119. REPORT_INNER_ERROR("E19999", "[%s::%s] Node in fused subgraph can only depend on Data nodes,"
  120. "but depend on %s actually.", node_item.NodeName().c_str(), node->GetName().c_str(),
  121. src_node->GetType().c_str());
  122. return UNSUPPORTED;
  123. }
  124. data_ops.emplace(src_op_desc.get());
  125. }
  126. }
  127. return SUCCESS;
  128. }
  129. } // namespace
  130. HybridModelBuilder::HybridModelBuilder(HybridModel &hybrid_model)
  131. : hybrid_model_(hybrid_model), runtime_param_(hybrid_model.root_runtime_param_) {
  132. ge_root_model_ = hybrid_model_.ge_root_model_;
  133. }
  134. Status HybridModelBuilder::Build() {
  135. GE_CHK_STATUS_RET(ValidateParams(), "[Invoke][ValidateParams] failed, model_name_:[%s]", GetGraphName());
  136. hybrid_model_.model_name_ = ge_root_model_->GetModelName();
  137. GELOGI("[%s] Start to build hybrid model.", GetGraphName());
  138. GE_CHK_STATUS_RET(InitRuntimeParams(), "[Invoke][InitRuntimeParams] failed, model_name_:[%s]", GetGraphName());
  139. GE_CHK_STATUS_RET(RecoverGraphUnknownFlag(),
  140. "[Invoke][RecoverGraphUnknownFlag] failed, model_name_:[%s]", GetGraphName());
  141. GE_CHK_STATUS_RET(IndexSpecialNodes(), "[Invoke][IndexSpecialNodes] failed, model_name_:[%s]", GetGraphName());
  142. GE_CHK_STATUS_RET(IndexTaskDefs(), "[Invoke][IndexTaskDefs] failed, model_name_:[%s]", GetGraphName());
  143. GE_CHK_STATUS_RET(InitWeights(), "[Invoke][InitWeights] failed, model_name_:[%s]", GetGraphName());
  144. GE_CHK_STATUS_RET(LoadGraph(), "[Invoke][LoadGraph] failed, model_name_:[%s]", GetGraphName());
  145. GE_CHK_STATUS_RET(AssignUninitializedConstantOps(),
  146. "[Invoke][AssignUninitializedConstantOps] failed, model_name_:[%s]", GetGraphName());
  147. GE_CHK_STATUS_RET(TransAllVarData(), "[Invoke][TransAllVarData] failed, model_name_:[%s]", GetGraphName());
  148. GE_CHK_STATUS_RET(CopyVarData(), "[Invoke][CopyVarData] failed, model_name_:[%s]", GetGraphName());
  149. GE_CHK_STATUS_RET(InitModelMem(), "[Invoke][InitModelMem] failed, model_name_:[%s]", GetGraphName());
  150. GE_CHK_STATUS_RET(InitConstantOps(), "[Invoke][InitConstantOps] failed, model_name_:[%s]", GetGraphName());
  151. GE_CHK_STATUS_RET(InitVariableTensors(), "[Invoke][InitVariableTensors], model_name_:[%s]", GetGraphName());
  152. GE_CHK_STATUS_RET(LoadTasks(), "[Invoke][LoadTasks] failed, model_name_:[%s]", GetGraphName());
  153. GE_CHK_STATUS_RET(OptimizeDependenciesForConstantInputs(),
  154. "[Invoke][OptimizeDependenciesForConstantInputs] failed, model_name_:[%s]",
  155. GetGraphName());
  156. GELOGI("[%s] Done building hybrid model successfully.", GetGraphName());
  157. return SUCCESS;
  158. }
  159. Status HybridModelBuilder::BuildForSingleOp() {
  160. GE_CHK_STATUS_RET(ValidateParams(), "[Invoke][ValidateParams] failed, model_name_:[%s]", GetGraphName());
  161. hybrid_model_.model_name_ = ge_root_model_->GetRootGraph()->GetName();
  162. GELOGI("[%s] Start to build hybrid model.", GetGraphName());
  163. auto ret = ge_root_model_->GetSubgraphInstanceNameToModel();
  164. const GeModelPtr ge_model = ret[ge_root_model_->GetRootGraph()->GetName()];
  165. GE_CHK_STATUS_RET(IndexTaskDefs(ge_root_model_->GetRootGraph(), ge_model),
  166. "[Invoke][IndexTaskDefs] failed, model_name_:[%s]", GetGraphName());
  167. GE_CHK_STATUS_RET(LoadGraph(), "[Invoke][LoadGraph] failed, model_name_:[%s]", GetGraphName());
  168. GE_CHK_STATUS_RET(InitWeights(), "[Invoke][InitWeights] failed, model_name_:[%s]", GetGraphName());
  169. GE_CHK_STATUS_RET(LoadTasks(), "[Invoke][LoadTasks] failed, model_name_:[%s]", GetGraphName());
  170. GELOGI("[%s] Done building hybrid model for single op successfully.", GetGraphName());
  171. return SUCCESS;
  172. }
  173. Status HybridModelBuilder::ValidateParams() {
  174. GE_CHECK_NOTNULL(ge_root_model_);
  175. GE_CHECK_NOTNULL(ge_root_model_->GetRootGraph());
  176. return SUCCESS;
  177. }
  178. Status HybridModelBuilder::BuildNodeItem(const NodePtr &node, NodeItem &node_item) {
  179. auto op_desc = node->GetOpDesc();
  180. GE_CHK_STATUS_RET(ParseForceInfershapeNodes(node, node_item),
  181. "[Invoke][ParseForceInfershapeNodes]failed, node:[%s].",
  182. node_item.NodeName().c_str());
  183. vector<string> dependencies = node->GetOpDesc()->GetOpInferDepends();
  184. GE_CHK_STATUS_RET(ParseDependentInputNodes(node_item, dependencies),
  185. "[Invoke][ParseDependentInputNodes]failed, node:[%s].",
  186. node_item.NodeName().c_str());
  187. node_item.outputs.resize(node_item.num_outputs);
  188. for (int i = 0; i < node_item.num_outputs; ++i) {
  189. auto out_data_anchor = node->GetOutDataAnchor(i);
  190. if (out_data_anchor == nullptr) {
  191. GELOGE(INTERNAL_ERROR, "[Get][OutDataAnchor]out anchor[%d] of node %s is nullptr", i, node->GetName().c_str());
  192. REPORT_CALL_ERROR("E19999", "out anchor[%d] of node %s is nullptr.", i, node->GetName().c_str());
  193. return INTERNAL_ERROR;
  194. }
  195. for (auto &dst_in_anchor: out_data_anchor->GetPeerInDataAnchors()) {
  196. auto dst_node = dst_in_anchor->GetOwnerNode();
  197. if (dst_node == nullptr) {
  198. GELOGW("dst node is nullptr. out anchor = %d", out_data_anchor->GetIdx());
  199. continue;
  200. }
  201. NodeItem *dst_node_item = nullptr;
  202. GE_CHK_STATUS_RET(GetOrCreateNodeItem(dst_node, &dst_node_item),
  203. "[GetOrCreate][NodeItem] failed, dst_node:[%s].", dst_node->GetName().c_str());
  204. int canonical_index;
  205. GE_CHK_STATUS_RET(dst_node_item->GetCanonicalInputIndex(dst_in_anchor->GetIdx(), canonical_index),
  206. "[Invoke][GetCanonicalInputIndex] failed, dst_node:[%s].", dst_node->GetName().c_str());
  207. node_item.outputs[i].emplace_back(canonical_index, dst_node_item);
  208. node_item.SetDataSend(dst_node_item, dst_in_anchor->GetIdx());
  209. }
  210. }
  211. GE_CHK_STATUS_RET_NOLOG(ResolveRefIo(node_item));
  212. return SUCCESS;
  213. }
  214. Status HybridModelBuilder::ResolveRefIo(NodeItem &node_item) {
  215. bool is_ref = false;
  216. auto &op_desc = *node_item.op_desc;
  217. (void) AttrUtils::GetBool(op_desc, ATTR_NAME_REFERENCE, is_ref);
  218. if (!is_ref) {
  219. return SUCCESS;
  220. }
  221. auto inputs = op_desc.GetAllInputName();
  222. auto outputs = op_desc.GetAllOutputName();
  223. for (auto &output : outputs) {
  224. for (auto &input : inputs) {
  225. if (input.first == output.first) {
  226. int input_idx;
  227. GE_CHK_STATUS_RET_NOLOG(node_item.GetCanonicalInputIndex(input.second, input_idx));
  228. auto output_idx = static_cast<int>(output.second);
  229. node_item.reuse_inputs[output_idx] = input_idx;
  230. GELOGD("[%s] Output[%d] reuse input[%d]", node_item.NodeName().c_str(), output_idx, input_idx);
  231. }
  232. }
  233. }
  234. return SUCCESS;
  235. }
  236. Status HybridModelBuilder::GetOrCreateNodeItem(const NodePtr &node, NodeItem **node_item) {
  237. auto &node_items = hybrid_model_.node_items_;
  238. auto it = node_items.find(node);
  239. if (it != node_items.end()) {
  240. *node_item = it->second.get();
  241. return SUCCESS;
  242. }
  243. if (node->GetType() == MEMCPYASYNC) { // Convert MemcpyAsync to Identity.
  244. node->GetOpDesc()->SetType(IDENTITY);
  245. }
  246. std::unique_ptr<NodeItem> new_node;
  247. GE_CHK_STATUS_RET(NodeItem::Create(node, new_node), "[Invoke][Create] failed, model_name_:[%s]", GetGraphName());
  248. GE_CHK_STATUS_RET_NOLOG(NodeExecutorManager::GetInstance().GetExecutor(*node, &new_node->node_executor));
  249. // we do not need L2 Buffer
  250. const char *const kIsFirstNode = "is_first_node";
  251. const char *const kIsLastNode = "is_last_node";
  252. (void) AttrUtils::SetBool(new_node->op_desc, kIsFirstNode, false);
  253. (void) AttrUtils::SetBool(new_node->op_desc, kIsLastNode, false);
  254. new_node->node_id = static_cast<int>(new_node->op_desc->GetId());
  255. NodeExecutorManager::ExecutorType executor_type = NodeExecutorManager::GetInstance().ResolveExecutorType(*node);
  256. new_node->is_profiling_report = (executor_type == NodeExecutorManager::ExecutorType::AICORE) ||
  257. (executor_type == NodeExecutorManager::ExecutorType::AICPU_TF) ||
  258. (executor_type == NodeExecutorManager::ExecutorType::AICPU_CUSTOM);
  259. *node_item = new_node.get();
  260. node_items[node] = std::move(new_node);
  261. return SUCCESS;
  262. }
  263. Status HybridModelBuilder::ParseForceInfershapeNodes(const NodePtr &node, NodeItem &node_item) {
  264. auto op_desc = node->GetOpDesc();
  265. GE_CHECK_NOTNULL(op_desc);
  266. // not care result, if no this attr, stand for the op does not need force infershape
  267. (void) AttrUtils::GetBool(op_desc, kForceInfershape, node_item.is_need_force_infershape);
  268. GELOGD("node [%s] is need do infershape, flag is %d",
  269. op_desc->GetName().c_str(),
  270. node_item.is_need_force_infershape);
  271. return SUCCESS;
  272. }
  273. Status HybridModelBuilder::ParseDependencies(NodeItem &node_item, const std::vector<string> &dependencies,
  274. std::set<NodePtr> &dependent_for_shape_inference) {
  275. for (const auto &input_name : dependencies) {
  276. int input_index = node_item.op_desc->GetInputIndexByName(input_name);
  277. if (input_index < 0) {
  278. GELOGE(INTERNAL_ERROR, "[Get][InputIndex]failed, node:[%s] inputname: %s.",
  279. node_item.NodeName().c_str(), input_name.c_str());
  280. REPORT_CALL_ERROR("E19999", "GetInputIndexByName failed, node:[%s] inputname: %s.",
  281. node_item.NodeName().c_str(), input_name.c_str());
  282. return INTERNAL_ERROR;
  283. }
  284. const auto &in_anchor = node_item.node->GetInDataAnchor(input_index);
  285. GE_CHECK_NOTNULL(in_anchor);
  286. const auto &peer_out_anchor = in_anchor->GetPeerOutAnchor();
  287. GE_CHECK_NOTNULL(peer_out_anchor);
  288. const auto &src_node = peer_out_anchor->GetOwnerNode();
  289. GE_CHECK_NOTNULL(src_node);
  290. auto src_node_item = MutableNodeItem(src_node);
  291. GE_CHECK_NOTNULL(src_node_item);
  292. if (src_node_item->NodeType() == DATA) {
  293. auto op_desc = src_node_item->GetOpDesc();
  294. GE_CHECK_NOTNULL(op_desc);
  295. auto tensor = op_desc->MutableInputDesc(0);
  296. if (AttrUtils::HasAttr(tensor, ATTR_NAME_VALUE)) {
  297. GELOGD("Skip d2h memcpy, get hostmem from node %s.", src_node_item->NodeName().c_str());
  298. continue;
  299. }
  300. }
  301. src_node_item->to_const_output_id_list.emplace(peer_out_anchor->GetIdx());
  302. dependent_for_shape_inference.emplace(src_node);
  303. host_input_value_dependencies_[&node_item].emplace_back(peer_out_anchor->GetIdx(), src_node_item);
  304. GELOGD("[%s] Dependent added from output of [%s:%d]",
  305. node_item.NodeName().c_str(),
  306. src_node_item->NodeName().c_str(),
  307. peer_out_anchor->GetIdx());
  308. }
  309. return SUCCESS;
  310. }
  311. Status HybridModelBuilder::ParseDependentInputNodes(NodeItem &node_item, const std::vector<string> &dependencies) {
  312. std::set<NodePtr> dependent_for_shape_inference;
  313. std::set<NodePtr> dependent_for_execution;
  314. auto &ge_node = node_item.node;
  315. bool is_hccl_op = node_item.IsHcclOp();
  316. // The input tensors become valid after computation is done for parent nodes of type DEPEND_COMPUTE.
  317. // Wait for these parent nodes before execution.
  318. for (const auto &in_anchor : ge_node->GetAllInDataAnchors()) {
  319. const auto &peer_anchor = in_anchor->GetPeerOutAnchor();
  320. if (peer_anchor == nullptr) {
  321. GELOGD("[%s] Input[%d] do not have peer anchor", node_item.NodeName().c_str(), in_anchor->GetIdx());
  322. continue;
  323. }
  324. auto src_node = peer_anchor->GetOwnerNode();
  325. GE_CHECK_NOTNULL(src_node);
  326. NodeItem *src_node_item = nullptr;
  327. GE_CHK_STATUS_RET(GetOrCreateNodeItem(src_node, &src_node_item),
  328. "[%s] failed to get or create node item", src_node->GetName().c_str());
  329. if (src_node_item->shape_inference_type == DEPEND_COMPUTE || is_hccl_op || src_node_item->IsHcclOp()) {
  330. GELOGD("[%s](%s) Add input data dependent node [%s](%s), shape inference type = %d",
  331. ge_node->GetName().c_str(),
  332. ge_node->GetType().c_str(),
  333. src_node->GetName().c_str(),
  334. src_node->GetType().c_str(),
  335. static_cast<int>(src_node_item->shape_inference_type));
  336. src_node_item->has_observer = true;
  337. dependent_for_execution.emplace(src_node);
  338. }
  339. if (src_node_item->shape_inference_type == DEPEND_SHAPE_RANGE) {
  340. GELOGD("[%s] Add input shape dependent node [%s] due to inference type = DEPEND_SHAPE_RANGE",
  341. node_item.NodeName().c_str(),
  342. src_node_item->NodeName().c_str());
  343. src_node_item->has_observer = true;
  344. dependent_for_shape_inference.emplace(src_node);
  345. }
  346. }
  347. if (node_item.node_type == NETOUTPUT) {
  348. for (const auto &src_node : ge_node->GetInControlNodes()) {
  349. auto src_node_item = MutableNodeItem(src_node);
  350. if ((src_node_item != nullptr) && src_node_item->IsHcclOp()) {
  351. GELOGD("[%s](%s) Add input control dependent node [%s](%s)",
  352. ge_node->GetName().c_str(),
  353. ge_node->GetType().c_str(),
  354. src_node->GetName().c_str(),
  355. src_node->GetType().c_str());
  356. dependent_for_execution.emplace(src_node);
  357. }
  358. }
  359. }
  360. // cond or branch need to be prepared before the execution of IF or CASE
  361. if (kExecutionDependentTypes.count(node_item.node_type) > 0) {
  362. auto src_node = NodeUtils::GetInDataNodeByIndex(*ge_node, 0); // cond input
  363. GE_CHECK_NOTNULL(src_node);
  364. auto src_node_item = MutableNodeItem(src_node);
  365. GE_CHECK_NOTNULL(src_node_item);
  366. dependent_for_execution.emplace(src_node);
  367. GELOGD("[%s] Dependent added from %s for control op's cond/branch",
  368. node_item.NodeName().c_str(),
  369. src_node_item->NodeName().c_str());
  370. }
  371. GE_CHK_STATUS_RET(ParseDependencies(node_item, dependencies, dependent_for_shape_inference));
  372. GE_CHK_STATUS_RET(ParseDependentForFusedSubgraph(node_item, dependent_for_shape_inference));
  373. for (const auto &dep_node : dependent_for_shape_inference) {
  374. auto src_node_item = MutableNodeItem(dep_node);
  375. GE_CHECK_NOTNULL(src_node_item);
  376. src_node_item->has_observer = true;
  377. node_item.dependents_for_shape_inference.emplace_back(dep_node);
  378. }
  379. for (const auto &dep_node : dependent_for_execution) {
  380. auto src_node_item = MutableNodeItem(dep_node);
  381. GE_CHECK_NOTNULL(src_node_item);
  382. src_node_item->has_observer = true;
  383. node_item.dependents_for_execution.emplace_back(dep_node);
  384. }
  385. return SUCCESS;
  386. }
  387. Status HybridModelBuilder::ParseDependentForFusedSubgraph(NodeItem &node_item, std::set<ge::NodePtr> &dependencies) {
  388. if (node_item.fused_subgraph == nullptr) {
  389. return SUCCESS;
  390. }
  391. std::set<OpDesc *> data_ops;
  392. GE_CHK_STATUS_RET_NOLOG(CollectDependenciesForFusedGraph(node_item, data_ops));
  393. for (auto &op_desc : data_ops) {
  394. uint32_t parent_index = 0;
  395. if (!AttrUtils::GetInt(*op_desc, ATTR_NAME_PARENT_NODE_INDEX, parent_index)) {
  396. GELOGE(INTERNAL_ERROR, "[Invoke][GetInt] failed, node:[%s] attr:[%s]",
  397. op_desc->GetName().c_str(), ATTR_NAME_PARENT_NODE_INDEX.c_str());
  398. REPORT_CALL_ERROR("E19999", "invoke GetInt failed, node:[%s] attr:[%s]",
  399. op_desc->GetName().c_str(), ATTR_NAME_PARENT_NODE_INDEX.c_str());
  400. return INTERNAL_ERROR;
  401. }
  402. const auto &in_anchor = node_item.node->GetInDataAnchor(parent_index);
  403. GE_CHECK_NOTNULL(in_anchor);
  404. const auto &peer_out_anchor = in_anchor->GetPeerOutAnchor();
  405. GE_CHECK_NOTNULL(peer_out_anchor);
  406. const auto &src_node = peer_out_anchor->GetOwnerNode();
  407. GE_CHECK_NOTNULL(src_node);
  408. NodeItem *src_node_item = nullptr;
  409. GE_CHK_STATUS_RET_NOLOG(GetOrCreateNodeItem(src_node, &src_node_item));
  410. op_desc->SetId(src_node_item->op_desc->GetId());
  411. GELOGD("[%s::%s] Node id was set to that of outer src node's, src_node = %s",
  412. node_item.NodeName().c_str(),
  413. op_desc->GetName().c_str(),
  414. src_node_item->NodeName().c_str());
  415. src_node_item->to_const_output_id_list.emplace(peer_out_anchor->GetIdx());
  416. dependencies.emplace(src_node);
  417. GELOGD("[%s] Dependent added from output of [%s:%d]",
  418. node_item.NodeName().c_str(),
  419. src_node_item->NodeName().c_str(),
  420. peer_out_anchor->GetIdx());
  421. }
  422. return SUCCESS;
  423. }
  424. Status HybridModelBuilder::UpdateAnchorStatus(const NodePtr &node) {
  425. if (NodeUtils::SetAllAnchorStatus(node) != GRAPH_SUCCESS) {
  426. GELOGE(INTERNAL_ERROR, "[Invoke][SetAllAnchorStatus] failed, node:[%s].", node->GetName().c_str());
  427. REPORT_CALL_ERROR("E19999", "[%s] NodeUtils::SetAllAnchorStatus failed.", node->GetName().c_str());
  428. return INTERNAL_ERROR;
  429. }
  430. for (auto &anchor : node->GetAllInDataAnchors()) {
  431. auto peer_anchor = anchor->GetPeerOutAnchor();
  432. if (peer_anchor == nullptr) {
  433. if (AnchorUtils::SetStatus(anchor, ANCHOR_SUSPEND) != GRAPH_SUCCESS) {
  434. GELOGE(INTERNAL_ERROR, "[Invoke][SetStatus] failed to set ANCHOR_SUSPEND, node:[%s].",
  435. node->GetName().c_str());
  436. REPORT_CALL_ERROR("E19999", "SetStatus failed to set ANCHOR_SUSPEND, node:[%s].", node->GetName().c_str());
  437. return INTERNAL_ERROR;
  438. }
  439. } else if (peer_anchor->GetOwnerNode()->GetType() == CONSTANT) {
  440. if (AnchorUtils::SetStatus(anchor, ANCHOR_CONST) != GRAPH_SUCCESS) {
  441. GELOGE(INTERNAL_ERROR, "[Invoke][SetStatus] failed to set ANCHOR_CONST, node:[%s].", node->GetName().c_str());
  442. REPORT_CALL_ERROR("E19999", "SetStatus failed to set ANCHOR_CONST, node:[%s].", node->GetName().c_str());
  443. return INTERNAL_ERROR;
  444. }
  445. } else {
  446. if (AnchorUtils::SetStatus(anchor, ANCHOR_DATA) != GRAPH_SUCCESS) {
  447. GELOGE(INTERNAL_ERROR, "[Invoke][SetStatus] failed to set ANCHOR_DATA, node:[%s].", node->GetName().c_str());
  448. REPORT_CALL_ERROR("E19999", "SetStatus failed to set ANCHOR_DATA, node:[%s].", node->GetName().c_str());
  449. return INTERNAL_ERROR;
  450. }
  451. }
  452. }
  453. return SUCCESS;
  454. }
  455. Status HybridModelBuilder::DoUnlinkDataAnchors(const OutDataAnchorPtr &out_data_anchor,
  456. const InDataAnchorPtr &in_data_anchor) {
  457. GE_CHK_GRAPH_STATUS_RET(out_data_anchor->Unlink(in_data_anchor),
  458. "[Invoke][Unlink] failed to unlink %s:%d from %s:%d",
  459. out_data_anchor->GetOwnerNode()->GetName().c_str(), out_data_anchor->GetIdx(),
  460. in_data_anchor->GetOwnerNode()->GetName().c_str(), in_data_anchor->GetIdx());
  461. GELOGD("Succeeded in unlinking %s:%d from %s:%d",
  462. out_data_anchor->GetOwnerNode()->GetName().c_str(),
  463. out_data_anchor->GetIdx(),
  464. in_data_anchor->GetOwnerNode()->GetName().c_str(),
  465. in_data_anchor->GetIdx());
  466. return SUCCESS;
  467. }
  468. Status HybridModelBuilder::DoLinkDataAnchors(OutDataAnchorPtr &out_data_anchor, InDataAnchorPtr &in_data_anchor) {
  469. GE_CHK_GRAPH_STATUS_RET(out_data_anchor->LinkTo(in_data_anchor), "[Invoke][LinkTo]Failed to link %s:%d to %s:%d",
  470. out_data_anchor->GetOwnerNode()->GetName().c_str(),
  471. out_data_anchor->GetIdx(),
  472. in_data_anchor->GetOwnerNode()->GetName().c_str(),
  473. in_data_anchor->GetIdx());
  474. GELOGD("Succeeded in linking %s:%d to %s:%d",
  475. out_data_anchor->GetOwnerNode()->GetName().c_str(),
  476. out_data_anchor->GetIdx(),
  477. in_data_anchor->GetOwnerNode()->GetName().c_str(),
  478. in_data_anchor->GetIdx());
  479. return SUCCESS;
  480. }
  481. Status HybridModelBuilder::MergeInputNodes(ComputeGraph &graph) {
  482. const auto &wrapped_node = graph.GetParentNode();
  483. std::set<NodePtr> root_nodes;
  484. for (const auto &node : graph.GetDirectNode()) {
  485. GE_CHECK_NOTNULL(node);
  486. if (node->GetType() != DATA_TYPE) {
  487. if (node->GetInDataNodes().empty()) {
  488. root_nodes.emplace(node);
  489. }
  490. continue;
  491. }
  492. auto data_op_desc = node->GetOpDesc();
  493. GE_CHECK_NOTNULL(data_op_desc);
  494. uint32_t parent_index = 0;
  495. if (!AttrUtils::GetInt(data_op_desc, ATTR_NAME_PARENT_NODE_INDEX, parent_index)) {
  496. GELOGE(FAILED, "[Invoke][GetInt] failed, node:[%s] attr:[%s]",
  497. data_op_desc->GetName().c_str(), ATTR_NAME_PARENT_NODE_INDEX.c_str());
  498. REPORT_CALL_ERROR("E19999", "GetInt failed, node:[%s] attr:[%s]",
  499. data_op_desc->GetName().c_str(), ATTR_NAME_PARENT_NODE_INDEX.c_str());
  500. return FAILED;
  501. }
  502. auto wrapped_node_in_anchor = wrapped_node->GetInDataAnchor(parent_index);
  503. GE_CHECK_NOTNULL(wrapped_node_in_anchor);
  504. auto src_out_anchor = wrapped_node_in_anchor->GetPeerOutAnchor();
  505. if (src_out_anchor == nullptr || src_out_anchor->GetOwnerNode() == nullptr) {
  506. continue;
  507. }
  508. wrapped_node_in_anchor->UnlinkAll();
  509. // link src to outputs of DataNode
  510. for (auto &out_data_anchor : node->GetAllOutDataAnchors()) {
  511. GE_CHECK_NOTNULL(out_data_anchor);
  512. for (auto &peer_in_data_anchor : out_data_anchor->GetPeerInDataAnchors()) {
  513. auto dst_node = peer_in_data_anchor->GetOwnerNode();
  514. GE_CHECK_NOTNULL(dst_node);
  515. root_nodes.emplace(dst_node);
  516. GE_CHK_STATUS_RET_NOLOG(DoUnlinkDataAnchors(out_data_anchor, peer_in_data_anchor));
  517. GE_CHK_STATUS_RET_NOLOG(DoLinkDataAnchors(src_out_anchor, peer_in_data_anchor));
  518. }
  519. }
  520. }
  521. // transfer in control edges to all root nodes
  522. for (auto &root_node : root_nodes) {
  523. auto in_nodes = root_node->GetInAllNodes();
  524. std::set<NodePtr> in_node_set(in_nodes.begin(), in_nodes.end());
  525. for (auto &in_control_node : wrapped_node->GetInControlNodes()) {
  526. if (in_node_set.count(in_control_node) == 0 && kMergeInputSkipTypes.count(root_node->GetType()) == 0) {
  527. GELOGD("[%s] Restore control edge to [%s]", in_control_node->GetName().c_str(), root_node->GetName().c_str());
  528. GE_CHECK_NOTNULL(in_control_node->GetOutControlAnchor());
  529. (void) in_control_node->GetOutControlAnchor()->LinkTo(root_node->GetInControlAnchor());
  530. }
  531. }
  532. }
  533. wrapped_node->GetInControlAnchor()->UnlinkAll();
  534. return SUCCESS;
  535. }
  536. Status HybridModelBuilder::MergeNetOutputNode(ComputeGraph &graph) {
  537. const auto &parent_node = graph.GetParentNode();
  538. const NodePtr &net_output_node = graph.FindFirstNodeMatchType(NETOUTPUT);
  539. if (net_output_node == nullptr) {
  540. GELOGD("Graph has no netoutput no need to merge");
  541. return SUCCESS;
  542. }
  543. const auto &net_output_desc = net_output_node->GetOpDesc();
  544. GE_CHECK_NOTNULL(net_output_desc);
  545. auto all_in_nodes = net_output_node->GetInAllNodes();
  546. auto all_out_nodes = parent_node->GetOutAllNodes();
  547. net_output_node->GetInControlAnchor()->UnlinkAll();
  548. parent_node->GetOutControlAnchor()->UnlinkAll();
  549. for (const auto &in_data_anchor : net_output_node->GetAllInDataAnchors()) {
  550. auto src_out_anchor = in_data_anchor->GetPeerOutAnchor();
  551. GE_CHECK_NOTNULL(src_out_anchor);
  552. GE_CHECK_NOTNULL(src_out_anchor->GetOwnerNode());
  553. GE_CHK_STATUS_RET_NOLOG(DoUnlinkDataAnchors(src_out_anchor, in_data_anchor));
  554. auto index = in_data_anchor->GetIdx();
  555. auto input_desc = net_output_desc->MutableInputDesc(index);
  556. if (input_desc == nullptr) {
  557. GELOGE(INTERNAL_ERROR, "[Invoke][MutableInputDesc][%s] Failed to get input desc[%d]",
  558. net_output_desc->GetName().c_str(), index);
  559. REPORT_CALL_ERROR("E19999", "[%s] Failed to get input desc[%d].", net_output_desc->GetName().c_str(), index);
  560. return INTERNAL_ERROR;
  561. }
  562. uint32_t parent_index = 0;
  563. if (!AttrUtils::GetInt(input_desc, ATTR_NAME_PARENT_NODE_INDEX, parent_index)) {
  564. GELOGW("SubGraph: %s NetOutput input tensor %d, attr %s not found.",
  565. graph.GetName().c_str(), index, ATTR_NAME_PARENT_NODE_INDEX.c_str());
  566. continue;
  567. }
  568. const OutDataAnchorPtr &parent_out_anchor = parent_node->GetOutDataAnchor(parent_index);
  569. GE_CHECK_NOTNULL(parent_out_anchor);
  570. for (InDataAnchorPtr &dst_in_anchor : parent_out_anchor->GetPeerInDataAnchors()) {
  571. if (dst_in_anchor == nullptr) {
  572. continue;
  573. }
  574. GE_CHECK_NOTNULL(dst_in_anchor->GetOwnerNode());
  575. GE_CHK_STATUS_RET_NOLOG(DoUnlinkDataAnchors(parent_out_anchor, dst_in_anchor));
  576. GE_CHK_STATUS_RET_NOLOG(DoLinkDataAnchors(src_out_anchor, dst_in_anchor));
  577. }
  578. }
  579. // transfer out control edges
  580. std::set<NodePtr> in_node_set(all_in_nodes.begin(), all_in_nodes.end());
  581. std::set<NodePtr> out_node_set(all_out_nodes.begin(), all_out_nodes.end());
  582. for (auto &src_node : in_node_set) {
  583. GELOGD("[%s] process in node.", src_node->GetName().c_str());
  584. auto out_nodes = src_node->GetOutAllNodes();
  585. std::set<NodePtr> node_set(out_nodes.begin(), out_nodes.end());
  586. for (auto &dst_node : out_node_set) {
  587. if (node_set.count(dst_node) == 0) {
  588. src_node->GetOutControlAnchor()->LinkTo(dst_node->GetInControlAnchor());
  589. GELOGD("[%s] Restore control edge to [%s]", src_node->GetName().c_str(), dst_node->GetName().c_str());
  590. }
  591. }
  592. }
  593. return SUCCESS;
  594. }
  595. Status HybridModelBuilder::UnfoldSubgraphs(ComputeGraphPtr &root_graph, ComputeGraphPtr &merged_graph) {
  596. merged_graph = MakeShared<ComputeGraph>("MergedGraph");
  597. merged_graph->SetGraphUnknownFlag(root_graph->GetGraphUnknownFlag());
  598. for (const auto &node : root_graph->GetDirectNode()) {
  599. GE_CHECK_NOTNULL(node);
  600. auto op_desc = node->GetOpDesc();
  601. GE_CHECK_NOTNULL(op_desc);
  602. const auto &op_type = node->GetType();
  603. if (op_type != PARTITIONEDCALL) {
  604. merged_graph->AddNode(node);
  605. GELOGD("[%s] Node added to merged graph.", op_desc->GetName().c_str());
  606. continue;
  607. }
  608. auto subgraph = NodeUtils::GetSubgraph(*node, kSubgraphIndex);
  609. GE_CHECK_NOTNULL(subgraph);
  610. bool is_unknown_shape = subgraph->GetGraphUnknownFlag();
  611. if (!is_unknown_shape) {
  612. merged_graph->AddNode(node);
  613. GELOGD("[%s] Known shape partitioned call added to merged graph.", op_desc->GetName().c_str());
  614. continue;
  615. }
  616. if (op_desc->HasAttr(ATTR_STAGE_LEVEL)) {
  617. uint32_t stage_level = UINT32_MAX;
  618. if (AttrUtils::GetInt(node->GetOpDesc(), ATTR_STAGE_LEVEL, stage_level)) {
  619. for (const auto &stage_node : subgraph->GetAllNodes()) {
  620. GELOGD("Set ATTR_STAGE_LEVEL on node %s, stage_level=%u", stage_node->GetName().c_str(), stage_level);
  621. (void)AttrUtils::SetInt(stage_node->GetOpDesc(), ATTR_STAGE_LEVEL, stage_level);
  622. }
  623. }
  624. }
  625. GE_CHK_GRAPH_STATUS_RET(UnfoldSubgraph(root_graph, merged_graph, *subgraph),
  626. "[Invoke][UnfoldSubgraph][%s] Failed to merge subgraph.",
  627. subgraph->GetName().c_str());
  628. }
  629. // invoke before adding subgraphs. in case modify node id in known-shaped subgraphs.
  630. GE_CHK_GRAPH_STATUS_RET(merged_graph->TopologicalSorting(),
  631. "[Invoke][TopologicalSorting]Failed to invoke TopologicalSorting on merged graph.");
  632. GE_DUMP(merged_graph, "hybrid_merged_graph_BeforeStageSort");
  633. merged_graph->TopologicalSorting([](const NodePtr &a, const NodePtr &b) -> bool {
  634. uint32_t a_level = UINT32_MAX;
  635. (void)AttrUtils::GetInt(a->GetOpDesc(), ATTR_STAGE_LEVEL, a_level);
  636. uint32_t b_level = UINT32_MAX;
  637. (void)AttrUtils::GetInt(b->GetOpDesc(), ATTR_STAGE_LEVEL, b_level);
  638. return a_level < b_level;
  639. });
  640. for (auto &remained_subgraph : root_graph->GetAllSubgraphs()) {
  641. GELOGD("Adding subgraph [%s] to merged-graph.", remained_subgraph->GetName().c_str());
  642. GE_CHK_GRAPH_STATUS_RET(merged_graph->AddSubgraph(remained_subgraph),
  643. "[Invoke][AddSubgraph]Failed to add subgraph [%s]",
  644. remained_subgraph->GetName().c_str());
  645. remained_subgraph->SetParentGraph(merged_graph);
  646. }
  647. return SUCCESS;
  648. }
  649. Status HybridModelBuilder::UnfoldSubgraph(ComputeGraphPtr &root_graph,
  650. ComputeGraphPtr &parent_graph,
  651. ComputeGraph &sub_graph) {
  652. auto parent_node = sub_graph.GetParentNode();
  653. GE_CHECK_NOTNULL(parent_node);
  654. GE_CHK_STATUS_RET(MergeInputNodes(sub_graph),
  655. "[Invoke][MergeInputNodes][%s] Failed to merge data nodes for subgraph",
  656. sub_graph.GetName().c_str());
  657. GE_CHK_STATUS_RET(MergeNetOutputNode(sub_graph),
  658. "[Invoke][MergeNetOutputNode][%s] Failed to merge net output nodes for subgraph",
  659. sub_graph.GetName().c_str());
  660. GELOGD("[%s] Done merging subgraph inputs and outputs successfully", sub_graph.GetName().c_str());
  661. for (auto &sub_node : sub_graph.GetDirectNode()) {
  662. auto sub_op_type = sub_node->GetType();
  663. if (sub_op_type == DATA_TYPE || sub_op_type == NETOUTPUT) {
  664. continue;
  665. }
  666. if (sub_op_type == PARTITIONEDCALL) {
  667. auto sub_sub_graph = NodeUtils::GetSubgraph(*sub_node, kSubgraphIndex);
  668. GE_CHECK_NOTNULL(sub_sub_graph);
  669. if (sub_sub_graph->GetGraphUnknownFlag()) {
  670. GE_CHK_STATUS_RET(UnfoldSubgraph(root_graph, parent_graph, *sub_sub_graph),
  671. "[Invoke][UnfoldSubgraph][%s] Failed to merge subgraph",
  672. sub_sub_graph->GetName().c_str());
  673. continue;
  674. }
  675. }
  676. if (!sub_node->GetOpDesc()->GetSubgraphInstanceNames().empty()) {
  677. for (size_t i = 0; i < sub_node->GetOpDesc()->GetSubgraphInstanceNames().size(); ++i) {
  678. auto sub_sub_graph = NodeUtils::GetSubgraph(*sub_node, i);
  679. GE_CHECK_NOTNULL(sub_sub_graph);
  680. sub_sub_graph->SetParentGraph(parent_graph);
  681. }
  682. }
  683. parent_graph->AddNode(sub_node);
  684. GELOGD("[%s::%s] added to parent graph: [%s].",
  685. sub_graph.GetName().c_str(),
  686. sub_node->GetName().c_str(),
  687. parent_graph->GetName().c_str());
  688. sub_node->SetOwnerComputeGraph(parent_graph);
  689. }
  690. GELOGD("[%s] Done merging subgraph. remove it from root graph", sub_graph.GetName().c_str());
  691. root_graph->RemoveSubgraph(sub_graph.GetName());
  692. return SUCCESS;
  693. }
  694. Status HybridModelBuilder::BuildOutputMapping(GraphItem &graph_item,
  695. const NodeItem &node_item,
  696. bool is_root_graph) {
  697. auto output_size = node_item.num_inputs;
  698. graph_item.output_edges_.resize(output_size);
  699. for (auto &in_data_anchor : node_item.node->GetAllInDataAnchors()) {
  700. auto peer_out_anchor = in_data_anchor->GetPeerOutAnchor();
  701. GE_CHECK_NOTNULL(peer_out_anchor);
  702. auto src_node = peer_out_anchor->GetOwnerNode();
  703. GE_CHECK_NOTNULL(src_node);
  704. auto src_node_item = GetNodeItem(src_node);
  705. GE_CHECK_NOTNULL(src_node_item);
  706. auto output_idx = in_data_anchor->GetIdx();
  707. auto output_offset = src_node_item->output_start + peer_out_anchor->GetIdx();
  708. GELOGI("Output[%d], node = %s, output_index = %d, output_offset = %d ",
  709. output_idx,
  710. src_node_item->NodeName().c_str(),
  711. peer_out_anchor->GetIdx(),
  712. output_offset);
  713. GE_CHECK_LE(output_idx, output_size - 1);
  714. graph_item.output_edges_[output_idx] = {src_node_item, peer_out_anchor->GetIdx()};
  715. }
  716. if (!is_root_graph) {
  717. for (uint32_t i = 0; i < static_cast<uint32_t>(output_size); ++i) {
  718. uint32_t p_index = i;
  719. // Net output of Subgraph of while do not have parent index
  720. if (AttrUtils::GetInt(node_item.op_desc->GetInputDesc(i), ATTR_NAME_PARENT_NODE_INDEX, p_index)) {
  721. GELOGD("[%s] Parent index not set for input[%u].", node_item.NodeName().c_str(), i);
  722. }
  723. graph_item.output_index_mapping_.emplace_back(p_index);
  724. }
  725. }
  726. return SUCCESS;
  727. }
  728. Status HybridModelBuilder::LoadGraph() {
  729. auto root_graph = ge_root_model_->GetRootGraph();
  730. if (!GetContext().GetHostExecFlag()) {
  731. std::shared_ptr<ComputeGraph> merged_graph;
  732. GELOGI("Before merging subgraphs DirectNodesSize = %zu, GetAllNodesSize = %zu",
  733. root_graph->GetDirectNodesSize(),
  734. root_graph->GetAllNodesSize());
  735. GE_CHK_GRAPH_STATUS_RET(UnfoldSubgraphs(root_graph, merged_graph),
  736. "[Invoke][UnfoldSubgraphs]Failed to unfold subgraphs, model_name_:%s.", GetGraphName());
  737. root_graph = std::move(merged_graph);
  738. GELOGI("After merging subgraphs DirectNodesSize = %zu, GetAllNodesSize = %zu",
  739. root_graph->GetDirectNodesSize(),
  740. root_graph->GetAllNodesSize());
  741. }
  742. hybrid_model_.root_graph_ = root_graph;
  743. GE_CHK_STATUS_RET(RelinkNextIteration(), "[%s] Relink NextIteration failed", GetGraphName());
  744. // Reset node id by topological order across all subgraphs
  745. int64_t index = 0;
  746. for (const auto &node : root_graph->GetAllNodes()) {
  747. GE_CHECK_NOTNULL(node);
  748. auto parent_graph = node->GetOwnerComputeGraph();
  749. // No need to update nodes in known subgraph
  750. if (parent_graph != nullptr && !parent_graph->GetGraphUnknownFlag()) {
  751. continue;
  752. }
  753. auto op_desc = node->GetOpDesc();
  754. GE_CHECK_NOTNULL(op_desc);
  755. op_desc->SetId(index++);
  756. }
  757. GE_DUMP(root_graph, "hybrid_merged_graph");
  758. GE_CHK_STATUS_RET(LoadDynamicSubgraph(*root_graph, true),
  759. "[Invoke][LoadDynamicSubgraph]Failed to load root graph, model_name_:%s.", GetGraphName());
  760. GELOGD("Done loading root graph successfully.");
  761. GE_CHK_STATUS_RET(hybrid_model_.root_graph_item_->GroupNodes(),
  762. "[Invoke][GroupNodes]Failed to group nodes for root graph, model_name_:%s.", GetGraphName());
  763. for (auto &sub_graph : root_graph->GetAllSubgraphs()) {
  764. GE_CHECK_NOTNULL(sub_graph);
  765. GELOGD("Start to load subgraph [%s]", sub_graph->GetName().c_str());
  766. auto parent_node = sub_graph->GetParentNode();
  767. GE_CHECK_NOTNULL(parent_node);
  768. auto parent_node_item = MutableNodeItem(parent_node);
  769. // parent node is in another known subgraph
  770. if (parent_node_item == nullptr) {
  771. GELOGD("[%s] Subgraph is in another known shaped subgraph, skip it.", sub_graph->GetName().c_str());
  772. continue;
  773. }
  774. if (sub_graph->GetGraphUnknownFlag()) {
  775. GE_CHK_STATUS_RET(LoadDynamicSubgraph(*sub_graph, false),
  776. "[Invoke][LoadDynamicSubgraph]Failed to load subgraph: [%s]",
  777. sub_graph->GetName().c_str());
  778. } else {
  779. // if parent is function control op. need add a virtual partitioned call
  780. if (parent_node_item->IsControlFlowV2Op()) {
  781. GE_CHK_STATUS_RET(LoadKnownShapedSubgraph(*sub_graph, parent_node_item),
  782. "[Invoke][LoadKnownShapedSubgraph]Failed to load function control op subgraph [%s]",
  783. sub_graph->GetName().c_str());
  784. }
  785. }
  786. }
  787. for (auto &it : hybrid_model_.known_shape_sub_models_) {
  788. auto node_item = MutableNodeItem(it.first);
  789. AscendString graph_name;
  790. GE_CHK_GRAPH_STATUS_RET(it.second->GetGraph().GetName(graph_name), "Failed to get subgraph name");
  791. auto subgraph = hybrid_model_.GetRootGraph()->GetSubgraph(graph_name.GetString());
  792. GE_CHECK_NOTNULL(subgraph);
  793. GE_CHK_STATUS_RET(IdentifyVariableOutputs(*node_item, subgraph),
  794. "[Invoke][IdentifyVariableOutputs][%s] Failed to identify ref outputs.",
  795. node_item->NodeName().c_str());
  796. }
  797. GE_CHK_STATUS_RET(ParseDependentByParallelGroup(),
  798. "[Invoke][ParseDependentByParallelGroup]Failed to establish dependencies for hccl ops,"
  799. "model_name_:%s.", GetGraphName());
  800. GELOGI("Done loading all subgraphs successfully.");
  801. return SUCCESS;
  802. }
  803. const NodeItem *HybridModelBuilder::GetNodeItem(const NodePtr &node) const {
  804. return hybrid_model_.GetNodeItem(node);
  805. }
  806. NodeItem *HybridModelBuilder::MutableNodeItem(const NodePtr &node) {
  807. return hybrid_model_.MutableNodeItem(node);
  808. }
  809. Status HybridModelBuilder::VarNodeToTensor(const NodePtr &var_node, std::unique_ptr<TensorValue> &tensor) {
  810. string var_name = var_node->GetName();
  811. auto tensor_desc = var_node->GetOpDesc()->MutableOutputDesc(0);
  812. uint8_t *var_logic = nullptr;
  813. GE_CHK_STATUS_RET(var_manager_->GetVarAddr(var_name, *tensor_desc, &var_logic),
  814. "[Invoke][GetVarAddr]Failed to get var addr. var_name = %s, session_id = %ld",
  815. var_name.c_str(),
  816. hybrid_model_.GetSessionId());
  817. rtMemType_t memory_type = RT_MEMORY_HBM;
  818. uint32_t mem_type = 0;
  819. if (AttrUtils::GetInt(var_node->GetOpDesc(), ATTR_OUTPUT_MEMORY_TYPE, mem_type) && (mem_type == 1)) {
  820. memory_type = RT_MEMORY_RDMA_HBM;
  821. }
  822. uint8_t *dev_mem = var_manager_->GetVarMemoryAddr(var_logic, memory_type);
  823. if (dev_mem == nullptr) {
  824. GELOGE(INTERNAL_ERROR, "[Invoke][GetVarMemoryAddr]Failed to copy var %s from device,"
  825. "cant not get var addr from logic addr %p", var_node->GetName().c_str(), var_logic);
  826. REPORT_CALL_ERROR("E19999", "GetVarMemoryAddr failed, Failed to copy var %s from device,"
  827. "cant not get var addr from logic addr %p", var_node->GetName().c_str(), var_logic);
  828. return INTERNAL_ERROR;
  829. }
  830. int64_t var_size = CalcVarSizeInBytes(*tensor_desc);
  831. // var size is only for checking, will not allocate any memory by it
  832. tensor.reset(new(std::nothrow)TensorValue(dev_mem, static_cast<size_t>(var_size)));
  833. GE_CHECK_NOTNULL(tensor);
  834. GELOGI("Get var memory addr %p for node %s, size = %ld, mem_type=%u", dev_mem, var_name.c_str(), var_size, mem_type);
  835. return SUCCESS;
  836. }
  837. Status HybridModelBuilder::HandleDtString(const GeTensor &tensor, void *var_addr) {
  838. auto desc = tensor.GetTensorDesc();
  839. if (desc.GetDataType() == DT_STRING) {
  840. GeShape tensor_shape = desc.GetShape();
  841. /// if tensor is a scaler, it's shape size if zero, according ge_tensor.cc.
  842. /// the logic of GetShapeSize is wrong, the scaler tensor's GetShapeSize is zero
  843. /// and that of unknown shape is zero too.
  844. /// unknown shape will not appear here, so we can use zero judge a tensor is scalar or not
  845. int64_t elem_num = tensor_shape.GetShapeSize();
  846. if (elem_num == 0 && tensor_shape.GetDims().empty()) {
  847. elem_num = 1;
  848. }
  849. auto &mutable_tensor = const_cast<GeTensor &>(tensor);
  850. uint64_t *buff = reinterpret_cast<uint64_t *>(mutable_tensor.MutableData().data());
  851. GE_CHK_BOOL_RET_STATUS(ge::CheckInt64Uint32MulOverflow(elem_num, kBytes * kStringHeadElems) == SUCCESS, FAILED,
  852. "[Invoke][CheckInt64Uint32MulOverflow] failed because Shape size is invalid.");
  853. auto offset = static_cast<uint64_t>(elem_num * kBytes * kStringHeadElems);
  854. auto hbm_raw_data_base_addr =
  855. static_cast<uint64_t>(reinterpret_cast<uintptr_t>(var_addr) + offset);
  856. for (int64_t i = elem_num - 1; i >= 0; --i) {
  857. buff[i * kStringHeadElems] = hbm_raw_data_base_addr + (buff[i * kStringHeadElems] - buff[0]);
  858. }
  859. }
  860. return SUCCESS;
  861. }
  862. Status HybridModelBuilder::AssignUninitializedConstantOps() {
  863. if (GetContext().GetHostExecFlag()) {
  864. GELOGI("no need to assign when exec on host.");
  865. return SUCCESS;
  866. }
  867. for (auto &it : constant_op_nodes_) {
  868. const string &var_name = it.first;
  869. const NodePtr &var_node = it.second;
  870. auto tensor_desc = var_node->GetOpDesc()->MutableOutputDesc(0);
  871. if (!var_manager_->IsVarExist(var_name, *tensor_desc)) {
  872. // allocate constant
  873. GELOGD("[%s] Constant not allocated during graph building. now allocate it.", var_name.c_str());
  874. GE_CHK_STATUS_RET(var_manager_->AssignVarMem(var_name, *tensor_desc, RT_MEMORY_HBM));
  875. GE_CHK_STATUS_RET(var_manager_->SetAllocatedGraphId(var_name, runtime_param_.graph_id));
  876. }
  877. }
  878. for (auto &it : hybrid_model_.device_variable_nodes_) {
  879. const string &var_name = it.first;
  880. const NodePtr &var_node = it.second;
  881. auto tensor_desc = var_node->GetOpDesc()->MutableOutputDesc(0);
  882. if (!var_manager_->IsVarExist(var_name, *tensor_desc)) {
  883. // allocate constant
  884. GELOGD("[%s] Constant not allocated during graph building. now allocate it.", var_name.c_str());
  885. GE_CHK_STATUS_RET(var_manager_->AssignVarMem(var_name, *tensor_desc, RT_MEMORY_HBM));
  886. GE_CHK_STATUS_RET(VarMemAssignUtil::AssignData2Fp32Var(var_node, runtime_param_.session_id))
  887. GE_CHK_STATUS_RET(var_manager_->SetAllocatedGraphId(var_name, runtime_param_.graph_id));
  888. }
  889. }
  890. return SUCCESS;
  891. }
  892. Status HybridModelBuilder::InitConstantOps() {
  893. for (auto &it : constant_op_nodes_) {
  894. const string &var_name = it.first;
  895. const NodePtr &var_node = it.second;
  896. auto op_desc = var_node->GetOpDesc();
  897. auto v_weights = ModelUtils::GetWeights(op_desc);
  898. if (v_weights.empty()) {
  899. GELOGE(INTERNAL_ERROR, "[Check][Size][%s] Constant op has no weight", var_node->GetName().c_str());
  900. return INTERNAL_ERROR;
  901. }
  902. auto *ge_tensor = const_cast<GeTensor *>(v_weights[0].get());
  903. std::unique_ptr<TensorValue> var_tensor;
  904. if (GetContext().GetHostExecFlag()) {
  905. GE_CHECK_NOTNULL(ge_tensor);
  906. // Address for eigen kernel should be aligned with 16 bytes
  907. // Tensors return by api GetWeights share data with proto, whose addr is not confirmed to be aligned
  908. GeTensor aligned_tensor = ge_tensor->Clone();
  909. GELOGD("Init tensor with host constant %s size = %zu", var_name.c_str(), aligned_tensor.MutableData().GetSize());
  910. if (aligned_tensor.GetData().size() > 0) {
  911. if (MemManager::Instance().HostMemInstance(RT_MEMORY_HBM).Malloc(aligned_tensor.GetAlignedPtr(),
  912. aligned_tensor.GetData().size()) == nullptr) {
  913. GELOGE(MEMALLOC_FAILED, "[Malloc][HostMemory] for an existed GeTensor failed, model_name_:%s.",
  914. GetGraphName());
  915. return MEMALLOC_FAILED;
  916. }
  917. var_tensor.reset(new(std::nothrow)TensorValue(aligned_tensor.MutableData().data(),
  918. aligned_tensor.GetData().size()));
  919. } else {
  920. var_tensor.reset(new(std::nothrow)TensorValue(nullptr, 0));
  921. }
  922. } else {
  923. GE_CHK_STATUS_RET_NOLOG(VarNodeToTensor(var_node, var_tensor));
  924. GELOGD("Init const op tensor. name = %s, size = %ld", var_name.c_str(), var_tensor->GetSize());
  925. var_tensor->SetName("ConstOp_" + var_name);
  926. auto v_output_size = var_tensor->GetSize();
  927. auto v_output_addr = var_tensor->MutableData();
  928. if (ge_tensor->GetData().size() > 0) {
  929. GE_CHK_STATUS_RET_NOLOG(HandleDtString(*ge_tensor, v_output_addr));
  930. GELOGI("[IMAS]InitConstant memcpy graph_%u type[V] name[%s] output[%d] memaddr[%p]"
  931. "mem_size[%zu] datasize[%zu]",
  932. runtime_param_.graph_id, op_desc->GetName().c_str(), 0, v_output_addr, v_output_size,
  933. ge_tensor->GetData().size());
  934. GE_CHK_RT_RET(rtMemcpy(v_output_addr, v_output_size, ge_tensor->GetData().data(), ge_tensor->GetData().size(),
  935. RT_MEMCPY_HOST_TO_DEVICE));
  936. } else {
  937. GELOGI("[%s] Const op has no weight data.", op_desc->GetName().c_str());
  938. }
  939. }
  940. hybrid_model_.variable_tensors_.emplace(var_name, std::move(var_tensor));
  941. }
  942. return SUCCESS;
  943. }
  944. Status HybridModelBuilder::InitVariableTensors() {
  945. for (auto &it : hybrid_model_.device_variable_nodes_) {
  946. string var_name = it.first;
  947. NodePtr &var_node = it.second;
  948. std::unique_ptr<TensorValue> tensor;
  949. GE_CHK_STATUS_RET_NOLOG(VarNodeToTensor(var_node, tensor));
  950. GELOGD("Init variable tensor. name = %s, size = %ld, addr = %p",
  951. var_name.c_str(),
  952. tensor->GetSize(),
  953. tensor->GetData());
  954. tensor->SetName("Var_" + var_name);
  955. hybrid_model_.variable_tensors_.emplace(var_name, std::move(tensor));
  956. }
  957. for (const auto &it : hybrid_model_.host_variable_nodes_) {
  958. auto op_desc = it.second->GetOpDesc();
  959. GE_CHECK_NOTNULL(op_desc);
  960. GeTensorDesc output_tensor = op_desc->GetOutputDesc(0);
  961. int64_t tensor_size = 0;
  962. if (TensorUtils::CalcTensorMemSize(output_tensor.GetShape(), output_tensor.GetFormat(),
  963. output_tensor.GetDataType(), tensor_size) != SUCCESS) {
  964. REPORT_CALL_ERROR("E19999", "CalcTensorMemSize failed, node name:%s", it.first.c_str());
  965. GELOGE(INTERNAL_ERROR, "[Calculate][TensorMemSize] failed, node name:%s", it.first.c_str());
  966. return INTERNAL_ERROR;
  967. }
  968. SharedMemInfo mem_info(it.first, tensor_size);
  969. if (HostMemManager::Instance().MallocSharedMemory(mem_info) != SUCCESS) {
  970. GELOGE(GE_GRAPH_MALLOC_FAILED, "[Malloc][SharedMemory] failed, Host variable [%s].", it.first.c_str());
  971. return GE_GRAPH_MALLOC_FAILED;
  972. }
  973. if (MemManager::Instance().HostMemInstance(RT_MEMORY_HBM).Malloc(mem_info.host_aligned_ptr,
  974. tensor_size) == nullptr) {
  975. GELOGE(MEMALLOC_FAILED, "[Malloc][HostMem] for an existed GeTensor failed, Host variable [%s].",
  976. it.first.c_str());
  977. return MEMALLOC_FAILED;
  978. }
  979. GELOGD("Host variable [%s] malloc success, size=%ld.", it.first.c_str(), tensor_size);
  980. std::unique_ptr<TensorValue> tensor(new (std::nothrow) TensorValue(mem_info.host_aligned_ptr->MutableGet(),
  981. tensor_size));
  982. GE_CHECK_NOTNULL(tensor);
  983. hybrid_model_.variable_tensors_.emplace(it.first, std::move(tensor));
  984. }
  985. return SUCCESS;
  986. }
  987. Status HybridModelBuilder::InitWeights() {
  988. // For constant in root graph
  989. for (const auto &subgraph_model : ge_root_model_->GetSubgraphInstanceNameToModel()) {
  990. const auto &weight_buffer = subgraph_model.second->GetWeight();
  991. if (weight_buffer.GetSize() == 0) {
  992. GELOGD("weight is empty");
  993. return SUCCESS;
  994. }
  995. auto allocator = NpuMemoryAllocator::GetAllocator();
  996. GE_CHECK_NOTNULL(allocator);
  997. auto sub_weight_buffer = TensorBuffer::Create(allocator, weight_buffer.size());
  998. GE_CHECK_NOTNULL(sub_weight_buffer);
  999. auto weight_base = reinterpret_cast<uint8_t *>(sub_weight_buffer->GetData());
  1000. GE_CHK_RT_RET(rtMemcpy(weight_base,
  1001. sub_weight_buffer->GetSize(),
  1002. weight_buffer.GetData(),
  1003. weight_buffer.GetSize(),
  1004. RT_MEMCPY_HOST_TO_DEVICE));
  1005. GELOGI("Init weight mem successfully, weight base %p, weight size = %zu",
  1006. weight_base,
  1007. sub_weight_buffer->GetSize());
  1008. auto subgraph = GraphUtils::GetComputeGraph(subgraph_model.second->GetGraph());
  1009. if (subgraph != ge_root_model_->GetRootGraph()) {
  1010. subgraph = ge_root_model_->GetRootGraph()->GetSubgraph(subgraph_model.first);
  1011. }
  1012. GE_CHECK_NOTNULL(subgraph);
  1013. hybrid_model_.weight_buffer_map_.emplace(subgraph->GetName(), std::move(sub_weight_buffer));
  1014. for (auto &node : subgraph->GetDirectNode()) {
  1015. if (node->GetType() != CONSTANT) {
  1016. continue;
  1017. }
  1018. auto op_desc = node->GetOpDesc();
  1019. auto v_weights = ModelUtils::GetWeights(op_desc);
  1020. if (v_weights.empty()) {
  1021. GELOGE(INTERNAL_ERROR, "[Invoke][GetWeights][%s] Constant has no value", node->GetName().c_str());
  1022. REPORT_CALL_ERROR("E19999", "[%s] Constant has no value.", node->GetName().c_str());
  1023. return INTERNAL_ERROR;
  1024. }
  1025. auto *ge_tensor = const_cast<GeTensor *>(v_weights[0].get());
  1026. GE_CHECK_NOTNULL(ge_tensor);
  1027. const GeTensorDesc &tensor_desc = ge_tensor->GetTensorDesc();
  1028. int64_t tensor_size = 0;
  1029. GE_CHK_GRAPH_STATUS_RET(TensorUtils::GetSize(*op_desc->MutableOutputDesc(0), tensor_size),
  1030. "[Invoke][GetSize][%s] Failed to get output tensor size",
  1031. node->GetName().c_str());
  1032. int64_t data_offset = 0;
  1033. GE_CHK_GRAPH_STATUS_RET(TensorUtils::GetDataOffset(tensor_desc, data_offset),
  1034. "[Invoke][GetDataOffset][%s] Failed to get data offset",
  1035. node->GetName().c_str());
  1036. GELOGD("[%s] Start to init Constant node [%s], size = %ld, offset = %ld",
  1037. GetGraphName(),
  1038. node->GetName().c_str(),
  1039. tensor_size,
  1040. data_offset);
  1041. auto tensor_buffer = TensorBuffer::Create(weight_base + data_offset, tensor_size);
  1042. GE_CHECK_NOTNULL(tensor_buffer);
  1043. std::unique_ptr<TensorValue> constant_tensor(new (std::nothrow)TensorValue(std::move(tensor_buffer)));
  1044. GE_CHECK_NOTNULL(constant_tensor);
  1045. constant_tensor->SetName("Constant_" + op_desc->GetName());
  1046. hybrid_model_.constant_tensors_.emplace(node, std::move(constant_tensor));
  1047. GELOGD("[%s] Constant node [%s] added, size = %ld", GetGraphName(), node->GetName().c_str(), tensor_size);
  1048. }
  1049. }
  1050. return SUCCESS;
  1051. }
  1052. Status HybridModelBuilder::LoadTask(NodeItem &node_item) {
  1053. auto &node_ptr = node_item.node;
  1054. GELOGD("[%s] Start to build kernel task", node_ptr->GetName().c_str());
  1055. auto load_ret = node_item.node_executor->LoadTask(hybrid_model_,
  1056. node_ptr,
  1057. node_item.kernel_task);
  1058. if (load_ret != UNSUPPORTED && load_ret != SUCCESS) {
  1059. GELOGE(load_ret, "[Invoke][LoadTask][%s] Failed to load task", node_ptr->GetName().c_str());
  1060. REPORT_CALL_ERROR("E19999", "[%s] Failed to load task", node_ptr->GetName().c_str());
  1061. return load_ret;
  1062. }
  1063. GELOGD("[%s] Done loading task successfully.", node_ptr->GetName().c_str());
  1064. return SUCCESS;
  1065. }
  1066. Status HybridModelBuilder::LoadTasks() {
  1067. GE_CHK_STATUS_RET(CheckAicpuOpList(), "[Check][AicpuOpList] failed.");
  1068. std::map<int, std::map<std::string, NodeItem *>> ordered_partitioned_calls;
  1069. for (auto &it : hybrid_model_.node_items_) {
  1070. auto &node_item = it.second;
  1071. if (node_item->node_type == NETOUTPUT) {
  1072. continue;
  1073. }
  1074. if (node_item->node_type == PARTITIONEDCALL) {
  1075. ordered_partitioned_calls[node_item->node_id][node_item->node_name] = node_item.get();
  1076. continue;
  1077. }
  1078. GE_CHK_STATUS_RET_NOLOG(LoadTask(*node_item));
  1079. }
  1080. // HCCL operators need to be loaded in the same order across different processes
  1081. for (auto &it : ordered_partitioned_calls) {
  1082. for (auto &it2 : it.second) {
  1083. GE_CHK_STATUS_RET_NOLOG(LoadTask(*it2.second));
  1084. }
  1085. }
  1086. return SUCCESS;
  1087. }
  1088. Status HybridModelBuilder::LoadGeModel(ComputeGraph &sub_graph, const GeModelPtr &ge_model) {
  1089. auto parent_node = sub_graph.GetParentNode();
  1090. GE_CHECK_NOTNULL(parent_node);
  1091. auto op_type = parent_node->GetType();
  1092. if (IsControlFlowV2Op(op_type)) {
  1093. GELOGD("Set ge_model for control op subgraph: [%s], task_size = %d",
  1094. sub_graph.GetName().c_str(),
  1095. ge_model->GetModelTaskDefPtr()->task_size());
  1096. subgraph_models_.emplace(sub_graph.GetName(), ge_model);
  1097. } else {
  1098. GELOGD("Set ge_model for subgraph: [%s], task_size = %d",
  1099. sub_graph.GetName().c_str(),
  1100. ge_model->GetModelTaskDefPtr()->task_size());
  1101. hybrid_model_.known_shape_sub_models_.emplace(parent_node, ge_model);
  1102. }
  1103. return SUCCESS;
  1104. }
  1105. Status HybridModelBuilder::IndexTaskDefs(const ComputeGraphPtr &sub_graph, const GeModelPtr &ge_model) {
  1106. // index task defs
  1107. GELOGD("To index tasks for subgraph: %s", sub_graph->GetName().c_str());
  1108. std::unordered_map<int64_t, NodePtr> node_map;
  1109. for (const auto &node : sub_graph->GetDirectNode()) {
  1110. GE_CHECK_NOTNULL(node);
  1111. GE_CHECK_NOTNULL(node->GetOpDesc());
  1112. auto node_id = node->GetOpDesc()->GetId();
  1113. GELOGD("op_index = %ld, node_name = %s", node_id, node->GetName().c_str());
  1114. node_map.emplace(node_id, node);
  1115. }
  1116. auto tasks = ge_model->GetModelTaskDefPtr()->task();
  1117. for (int i = 0; i < tasks.size(); ++i) {
  1118. const domi::TaskDef &task_def = tasks[i];
  1119. GELOGI("Task id = %d, task type = %d", i, task_def.type());
  1120. auto task_type = static_cast<rtModelTaskType_t>(task_def.type());
  1121. uint32_t op_index = -1;
  1122. if (task_type == RT_MODEL_TASK_KERNEL) {
  1123. op_index = task_def.kernel().context().op_index();
  1124. } else if (task_type == RT_MODEL_TASK_KERNEL_EX) {
  1125. op_index = task_def.kernel_ex().op_index();
  1126. } else if (task_type == RT_MODEL_TASK_HCCL) {
  1127. op_index = task_def.kernel_hccl().op_index();
  1128. } else if (task_type == RT_MODEL_TASK_ALL_KERNEL) {
  1129. op_index = task_def.kernel_with_handle().context().op_index();
  1130. } else {
  1131. GELOGD("Skip task type: %d", static_cast<int>(task_type));
  1132. continue;
  1133. }
  1134. GELOGD("op_index = %u, task_type = %d", op_index, task_type);
  1135. auto iter = node_map.find(op_index);
  1136. if (iter == node_map.end()) {
  1137. GELOGE(INTERNAL_ERROR, "[Find][Node]Failed to get node by op_index = %u", op_index);
  1138. REPORT_INNER_ERROR("E19999", "Failed to get node by op_index = %u.", op_index);
  1139. return INTERNAL_ERROR;
  1140. }
  1141. auto &node = iter->second;
  1142. if (task_type == RT_MODEL_TASK_KERNEL || task_type == RT_MODEL_TASK_ALL_KERNEL) {
  1143. ge_model->GetTBEKernelStore().LoadTBEKernelBinToOpDesc(node->GetOpDesc());
  1144. }
  1145. GELOGD("Task loaded for node: %s, task type = %d, op_index = %u", node->GetName().c_str(), task_type, op_index);
  1146. hybrid_model_.task_defs_[node].emplace_back(task_def);
  1147. }
  1148. return SUCCESS;
  1149. }
  1150. Status HybridModelBuilder::IndexTaskDefs() {
  1151. const auto &root_graph = ge_root_model_->GetRootGraph();
  1152. if (SetOutputNameAttr(*root_graph) != SUCCESS) {
  1153. GELOGW("Set output name attr failed.");
  1154. }
  1155. for (auto &it : ge_root_model_->GetSubgraphInstanceNameToModel()) {
  1156. auto &name = it.first;
  1157. auto &ge_model = it.second;
  1158. GE_CHECK_NOTNULL(ge_model);
  1159. const auto &sub_graph = root_graph->GetSubgraph(name);
  1160. if (sub_graph == nullptr) {
  1161. continue;
  1162. }
  1163. bool is_unknown_shape = sub_graph->GetGraphUnknownFlag();
  1164. if (!is_unknown_shape) {
  1165. GE_CHK_STATUS_RET_NOLOG(LoadGeModel(*sub_graph, ge_model));
  1166. continue;
  1167. }
  1168. // index task defs
  1169. GELOGD("To index tasks for subgraph: %s", name.c_str());
  1170. std::unordered_map<int64_t, NodePtr> node_map;
  1171. for (const auto &node : sub_graph->GetDirectNode()) {
  1172. GE_CHECK_NOTNULL(node);
  1173. GE_CHECK_NOTNULL(node->GetOpDesc());
  1174. auto node_id = node->GetOpDesc()->GetId();
  1175. GELOGD("op_index = %ld, node_name = %s", node_id, node->GetName().c_str());
  1176. node_map.emplace(node_id, node);
  1177. }
  1178. auto tasks = ge_model->GetModelTaskDefPtr()->task();
  1179. for (int i = 0; i < tasks.size(); ++i) {
  1180. const domi::TaskDef &task_def = tasks[i];
  1181. GELOGI("Task id = %d, task type = %d", i, task_def.type());
  1182. auto task_type = static_cast<rtModelTaskType_t>(task_def.type());
  1183. uint32_t op_index = -1;
  1184. if (task_type == RT_MODEL_TASK_KERNEL) {
  1185. op_index = task_def.kernel().context().op_index();
  1186. } else if (task_type == RT_MODEL_TASK_KERNEL_EX) {
  1187. op_index = task_def.kernel_ex().op_index();
  1188. } else if (task_type == RT_MODEL_TASK_HCCL) {
  1189. op_index = task_def.kernel_hccl().op_index();
  1190. } else if (task_type == RT_MODEL_TASK_ALL_KERNEL) {
  1191. op_index = task_def.kernel_with_handle().context().op_index();
  1192. } else {
  1193. GELOGD("Skip task type: %d", static_cast<int>(task_type));
  1194. continue;
  1195. }
  1196. auto iter = node_map.find(op_index);
  1197. if (iter == node_map.end()) {
  1198. GELOGE(INTERNAL_ERROR, "[Find][Node]Failed to get node by index = %u.", op_index);
  1199. REPORT_INNER_ERROR("E19999", "Failed to get node by index = %u.", op_index);
  1200. return INTERNAL_ERROR;
  1201. }
  1202. auto &node = iter->second;
  1203. if (task_type == RT_MODEL_TASK_KERNEL || task_type == RT_MODEL_TASK_ALL_KERNEL) {
  1204. ge_model->GetTBEKernelStore().LoadTBEKernelBinToOpDesc(node->GetOpDesc());
  1205. }
  1206. GELOGD("Task loaded for node: %s, task type = %d, op_index = %u", node->GetName().c_str(), task_type, op_index);
  1207. hybrid_model_.task_defs_[node].emplace_back(task_def);
  1208. }
  1209. }
  1210. return SUCCESS;
  1211. }
  1212. Status HybridModelBuilder::IndexSpecialNodes() {
  1213. GELOGD("Start to index special nodes");
  1214. const auto &root_graph = ge_root_model_->GetRootGraph();
  1215. for (auto &node : root_graph->GetAllNodes()) {
  1216. GE_CHECK_NOTNULL(node);
  1217. GE_CHECK_NOTNULL(node->GetOpDesc());
  1218. auto op_type = node->GetType();
  1219. GELOGD("node name = %s, node type = %s", node->GetName().c_str(), node->GetType().c_str());
  1220. if (op_type == VARIABLE) {
  1221. string placement;
  1222. (void) AttrUtils::GetStr(node->GetOpDesc(), ATTR_VARIABLE_PLACEMENT, placement);
  1223. if (placement == "host") {
  1224. hybrid_model_.host_variable_nodes_.emplace(node->GetName(), node);
  1225. } else {
  1226. hybrid_model_.device_variable_nodes_.emplace(node->GetName(), node);
  1227. }
  1228. } else if (op_type == CONSTANTOP) {
  1229. constant_op_nodes_.emplace(node->GetName(), node);
  1230. } else if (op_type == STREAMMERGE) {
  1231. stream_merge_op_nodes_.emplace(node->GetName(), node);
  1232. } else if (op_type == NEXTITERATION || op_type == REFNEXTITERATION) {
  1233. next_iteration_op_nodes_.emplace(node->GetName(), node);
  1234. } else if (op_type == DATA && node->GetOwnerComputeGraph() != root_graph) {
  1235. NodePtr src_node;
  1236. int peer_out_index = -1;
  1237. GE_CHK_STATUS_RET_NOLOG(GetPeerNodeAcrossSubGraphs(node, src_node, peer_out_index));
  1238. GELOGD("Got peer node for data node %s, peer node = %s(%s)",
  1239. node->GetName().c_str(),
  1240. src_node->GetName().c_str(),
  1241. src_node->GetType().c_str());
  1242. auto src_op_type = src_node->GetType();
  1243. if (src_op_type == CONSTANTOP || src_op_type == VARIABLE) {
  1244. for (auto &dst_node_and_in_anchor : node->GetOutDataNodesAndAnchors()) {
  1245. auto &dst_node = dst_node_and_in_anchor.first;
  1246. auto &in_anchor = dst_node_and_in_anchor.second;
  1247. node_ref_inputs_[dst_node].emplace_back(std::make_pair(in_anchor->GetIdx(), src_node));
  1248. }
  1249. }
  1250. }
  1251. }
  1252. return SUCCESS;
  1253. }
  1254. Status HybridModelBuilder::GetPeerNodeAcrossSubGraphs(const NodePtr &data_node,
  1255. NodePtr &peer_node,
  1256. int &peer_out_index) {
  1257. auto sub_graph = data_node->GetOwnerComputeGraph();
  1258. GE_CHECK_NOTNULL(sub_graph);
  1259. GELOGD("To get peer node of %s::%s", sub_graph->GetName().c_str(), data_node->GetName().c_str());
  1260. auto wrapped_node = data_node->GetOwnerComputeGraph()->GetParentNode();
  1261. if (wrapped_node == nullptr) {
  1262. REPORT_INNER_ERROR("E19999", "[%s] Node is in root graph.", data_node->GetName().c_str());
  1263. GELOGE(INTERNAL_ERROR, "[Invoke][GetParentNode][%s] Node is in root graph.", data_node->GetName().c_str());
  1264. return INTERNAL_ERROR;
  1265. }
  1266. auto data_op_desc = data_node->GetOpDesc();
  1267. uint32_t parent_index = 0;
  1268. if (!AttrUtils::GetInt(data_op_desc, ATTR_NAME_PARENT_NODE_INDEX, parent_index)) {
  1269. REPORT_CALL_ERROR("E19999", "[%s] Failed to get attr [%s].", data_op_desc->GetName().c_str(),
  1270. ATTR_NAME_PARENT_NODE_INDEX.c_str());
  1271. GELOGE(INTERNAL_ERROR, "[Invoke][GetInt][%s] Failed to get attr [%s]",
  1272. data_op_desc->GetName().c_str(), ATTR_NAME_PARENT_NODE_INDEX.c_str());
  1273. return INTERNAL_ERROR;
  1274. }
  1275. auto wrapped_node_in_anchor = wrapped_node->GetInDataAnchor(parent_index);
  1276. GE_CHECK_NOTNULL(wrapped_node_in_anchor);
  1277. auto src_out_anchor = wrapped_node_in_anchor->GetPeerOutAnchor();
  1278. if (src_out_anchor == nullptr || src_out_anchor->GetOwnerNode() == nullptr) {
  1279. REPORT_INNER_ERROR("E19999", "[%s] Parent node do not have peer anchor.", data_node->GetName().c_str());
  1280. GELOGE(INTERNAL_ERROR,
  1281. "[Check][ParentNode][%s] Parent node do not have peer anchor.", data_node->GetName().c_str());
  1282. return INTERNAL_ERROR;
  1283. }
  1284. auto src_wrapped_node_out_anchor = wrapped_node_in_anchor->GetPeerOutAnchor();
  1285. GE_CHECK_NOTNULL(src_wrapped_node_out_anchor);
  1286. auto src_wrapped_node = src_wrapped_node_out_anchor->GetOwnerNode();
  1287. GE_CHECK_NOTNULL(src_wrapped_node);
  1288. // connected to root-graph's DATA
  1289. auto src_node_type = src_wrapped_node->GetType();
  1290. if (src_node_type != PARTITIONEDCALL) {
  1291. peer_node = src_wrapped_node;
  1292. peer_out_index = kVarOutputIndex;
  1293. GELOGD("[%s] Node is connected to root graph's node: %s",
  1294. data_node->GetName().c_str(),
  1295. peer_node->GetName().c_str());
  1296. return SUCCESS;
  1297. }
  1298. auto src_graph = NodeUtils::GetSubgraph(*src_wrapped_node, kSubgraphIndex);
  1299. GE_CHECK_NOTNULL(src_graph);
  1300. auto src_net_output_node = src_graph->FindFirstNodeMatchType(NETOUTPUT);
  1301. if (src_net_output_node == nullptr) {
  1302. REPORT_INNER_ERROR("E19999", "Failed to find NetOutput in subgraph: %s", src_graph->GetName().c_str());
  1303. GELOGE(INTERNAL_ERROR, "[Invoke][FindFirstNodeMatchType]Failed to find NetOutput in subgraph: %s",
  1304. src_graph->GetName().c_str());
  1305. return INTERNAL_ERROR;
  1306. }
  1307. auto net_output_desc = src_net_output_node->GetOpDesc();
  1308. GE_CHECK_NOTNULL(net_output_desc);
  1309. auto out_index = static_cast<uint32_t>(src_wrapped_node_out_anchor->GetIdx());
  1310. GELOGD("src graph = %s, src parent output index = %u", src_graph->GetName().c_str(), out_index);
  1311. // link src to outputs of DataNode
  1312. auto input_size = net_output_desc->GetAllInputsSize();
  1313. GE_CHECK_LE(input_size, UINT32_MAX);
  1314. for (uint32_t i = 0; i < static_cast<uint32_t>(input_size); ++i) {
  1315. uint32_t p_index = 0;
  1316. if (!AttrUtils::GetInt(net_output_desc->GetInputDesc(i), ATTR_NAME_PARENT_NODE_INDEX, p_index)) {
  1317. GELOGW("SubGraph: %s input tensor %u attr %s not found.",
  1318. src_graph->GetName().c_str(), i, ATTR_NAME_PARENT_NODE_INDEX.c_str());
  1319. continue;
  1320. }
  1321. GELOGD("NetOutput's input[%u], parent_node_index = %u", i, p_index);
  1322. if (p_index == out_index) {
  1323. auto in_anchor = src_net_output_node->GetInDataAnchor(i);
  1324. GE_CHECK_NOTNULL(in_anchor);
  1325. auto peer_out_anchor = in_anchor->GetPeerOutAnchor();
  1326. GE_CHECK_NOTNULL(peer_out_anchor);
  1327. peer_node = peer_out_anchor->GetOwnerNode();
  1328. GE_CHECK_NOTNULL(peer_node);
  1329. peer_out_index = peer_out_anchor->GetIdx();
  1330. GELOGD("Found peer node of Data node: %s::%s is %s::%s",
  1331. sub_graph->GetName().c_str(),
  1332. data_node->GetName().c_str(),
  1333. src_graph->GetName().c_str(),
  1334. peer_node->GetName().c_str());
  1335. return SUCCESS;
  1336. }
  1337. }
  1338. GELOGE(FAILED, "[Get][PeerNode]Failed to find peer node for %s::%s", sub_graph->GetName().c_str(),
  1339. data_node->GetName().c_str());
  1340. REPORT_INNER_ERROR("E19999", "Failed to find peer node for %s::%s.",
  1341. sub_graph->GetName().c_str(), data_node->GetName().c_str());
  1342. return FAILED;
  1343. }
  1344. Status HybridModelBuilder::InitRuntimeParams() {
  1345. int64_t value = 0;
  1346. bool ret = false;
  1347. if (ge_root_model_->GetSubgraphInstanceNameToModel().empty()) {
  1348. GELOGE(INTERNAL_ERROR, "[Get][SubModel]Root model has no sub model, model:%s.", GetGraphName());
  1349. REPORT_INNER_ERROR("E19999", "Root model has no sub model, model:%s.", GetGraphName());
  1350. return INTERNAL_ERROR;
  1351. }
  1352. // session id and var size is same for every model
  1353. auto first_model = ge_root_model_->GetSubgraphInstanceNameToModel().begin()->second;
  1354. ret = ge::AttrUtils::GetInt(first_model, ge::MODEL_ATTR_SESSION_ID, value);
  1355. runtime_param_.session_id = ret ? static_cast<uint64_t>(value) : 0;
  1356. ret = ge::AttrUtils::GetInt(first_model, ATTR_MODEL_TASK_GEN_VAR_ADDR, value);
  1357. runtime_param_.logic_var_base = ret ? static_cast<uint64_t>(value) : 0;
  1358. runtime_param_.graph_id = ge_root_model_->GetRootGraph()->GetGraphID();
  1359. value = 0;
  1360. for (auto &it : ge_root_model_->GetSubgraphInstanceNameToModel()) {
  1361. (void) ge::AttrUtils::GetInt(it.second, ATTR_MODEL_VAR_SIZE, value);
  1362. if (value > 0) {
  1363. runtime_param_.var_size = static_cast<uint64_t>(value);
  1364. break;
  1365. }
  1366. }
  1367. GELOGI("InitRuntimeParams(), session_id:%lu, var_size:%lu. graph_id = %u",
  1368. runtime_param_.session_id, runtime_param_.var_size, runtime_param_.graph_id);
  1369. var_manager_ = VarManager::Instance(runtime_param_.session_id);
  1370. GE_CHECK_NOTNULL(var_manager_);
  1371. return SUCCESS;
  1372. }
  1373. Status HybridModelBuilder::IdentifyVariableOutputs(NodeItem &node_item, const ComputeGraphPtr &subgraph) {
  1374. GELOGD("Start to parse outputs of node: %s", node_item.NodeName().c_str());
  1375. auto net_output_node = subgraph->FindFirstNodeMatchType(NETOUTPUT);
  1376. if (net_output_node == nullptr) {
  1377. GELOGD("[%s] Subgraph do not got net output", subgraph->GetName().c_str());
  1378. return SUCCESS;
  1379. }
  1380. auto net_output_desc = net_output_node->GetOpDesc();
  1381. GE_CHECK_NOTNULL(net_output_desc);
  1382. // constants connected to net output
  1383. for (const auto &in_data_anchor : net_output_node->GetAllInDataAnchors()) {
  1384. auto src_node = GetPeerNode(in_data_anchor);
  1385. GE_CHECK_NOTNULL(src_node);
  1386. auto src_op_type = src_node->GetType();
  1387. if (src_op_type == CONSTANTOP || src_op_type == CONSTANT) {
  1388. known_subgraph_constant_output_refs_[&node_item].emplace(in_data_anchor->GetIdx(), src_node);
  1389. }
  1390. }
  1391. // Data nodes marked with REF_VAR_SRC_VAR_NAME
  1392. // Using variable tensor as data's output
  1393. for (auto &node : subgraph->GetDirectNode()) {
  1394. if (node->GetType() != DATA) {
  1395. continue;
  1396. }
  1397. string ref_var_name;
  1398. (void) AttrUtils::GetStr(node->GetOpDesc(), REF_VAR_SRC_VAR_NAME, ref_var_name);
  1399. if (ref_var_name.empty()) {
  1400. continue;
  1401. }
  1402. GELOGD("Data node ref to variable: %s", ref_var_name.c_str());
  1403. NodePtr src_node;
  1404. auto var_node = hybrid_model_.GetVariableNode(ref_var_name);
  1405. GE_CHECK_NOTNULL(var_node);
  1406. GELOGD("Found var node [%s] by ref_var_name [%s]", var_node->GetName().c_str(), ref_var_name.c_str());
  1407. int peer_output_index = -1;
  1408. GE_CHK_STATUS_RET_NOLOG(GetPeerNodeAcrossSubGraphs(node, src_node, peer_output_index));
  1409. auto src_node_item = MutableNodeItem(src_node);
  1410. GE_CHECK_NOTNULL(src_node_item);
  1411. src_node_item->ref_outputs.emplace(peer_output_index, var_node);
  1412. }
  1413. return SUCCESS;
  1414. }
  1415. NodePtr HybridModelBuilder::GetPeerNode(const InDataAnchorPtr &in_data_anchor) {
  1416. auto peer_out_anchor = in_data_anchor->GetPeerOutAnchor();
  1417. if (peer_out_anchor != nullptr) {
  1418. return peer_out_anchor->GetOwnerNode();
  1419. }
  1420. return nullptr;
  1421. }
  1422. Status HybridModelBuilder::GetParentNodeOutputIndex(const OpDesc &op_desc, int index, uint32_t &out_index) {
  1423. auto input_desc = op_desc.MutableInputDesc(index);
  1424. GE_CHECK_NOTNULL(input_desc);
  1425. if (!AttrUtils::GetInt(input_desc, ATTR_NAME_PARENT_NODE_INDEX, out_index)) {
  1426. GELOGE(INTERNAL_ERROR, "[Invoke][GetInt]NetOutput %s input tensor %d, attr %s not found.",
  1427. op_desc.GetName().c_str(), index, ATTR_NAME_PARENT_NODE_INDEX.c_str());
  1428. REPORT_CALL_ERROR("E19999", "NetOutput %s input tensor %d, attr %s not found.",
  1429. op_desc.GetName().c_str(), index, ATTR_NAME_PARENT_NODE_INDEX.c_str());
  1430. return INTERNAL_ERROR;
  1431. }
  1432. return SUCCESS;
  1433. }
  1434. Status HybridModelBuilder::InitModelMem() {
  1435. hybrid_model_.var_mem_base_ = var_manager_->GetVarMemoryBase(RT_MEMORY_HBM);
  1436. auto total_var_size = hybrid_model_.TotalVarMemSize();
  1437. if (total_var_size == 0 && !constant_op_nodes_.empty()) {
  1438. total_var_size = var_manager_->GetVarMemSize(RT_MEMORY_HBM) > 0 ? var_manager_->GetVarMemMaxSize() : 0;
  1439. GELOGD("Model var size = 0. but got uninitialized constant. set var size to %zu.", total_var_size);
  1440. }
  1441. if (total_var_size > 0 && hybrid_model_.var_mem_base_ == nullptr) {
  1442. GE_CHK_STATUS_RET(var_manager_->MallocVarMemory(total_var_size),
  1443. "[Malloc][VarMemory] failed, size:%zu.", total_var_size);
  1444. hybrid_model_.var_mem_base_ = var_manager_->GetVarMemoryBase(RT_MEMORY_HBM);
  1445. }
  1446. runtime_param_.var_base = hybrid_model_.var_mem_base_;
  1447. auto allocator = NpuMemoryAllocator::GetAllocator();
  1448. GE_CHECK_NOTNULL(allocator);
  1449. hybrid_model_.global_step_ = TensorBuffer::Create(allocator, sizeof(int64_t));
  1450. GE_CHECK_NOTNULL(hybrid_model_.global_step_);
  1451. return SUCCESS;
  1452. }
  1453. Status HybridModelBuilder::TransAllVarData() {
  1454. GELOGI("TransAllVarData start: session_id:%lu, graph_id: %u.", runtime_param_.session_id, runtime_param_.graph_id);
  1455. rtContext_t ctx = nullptr;
  1456. rtError_t rt_ret = rtCtxGetCurrent(&ctx);
  1457. if (rt_ret != RT_ERROR_NONE) {
  1458. GELOGE(RT_FAILED, "[Invoke][rtCtxGetCurrent]Failed to get current context, error_code is: 0x%X.", rt_ret);
  1459. REPORT_CALL_ERROR("E19999", "rtCtxGetCurrent failed, error_code: 0x%X.", rt_ret);
  1460. return RT_FAILED;
  1461. }
  1462. std::vector<NodePtr> variable_node_list;
  1463. for (auto &it : hybrid_model_.device_variable_nodes_) {
  1464. variable_node_list.emplace_back(it.second);
  1465. GELOGD("[%s] added for trans var data", it.first.c_str());
  1466. }
  1467. GE_CHK_STATUS_RET(TransVarDataUtils::TransAllVarData(variable_node_list,
  1468. runtime_param_.session_id,
  1469. ctx,
  1470. runtime_param_.graph_id),
  1471. "[Invoke][TransAllVarData] failed.");
  1472. GELOGI("TransAllVarData success.");
  1473. return SUCCESS;
  1474. }
  1475. Status HybridModelBuilder::CopyVarData() {
  1476. GE_CHK_STATUS_RET(TransVarDataUtils::CopyVarData(ge_root_model_->GetRootGraph(),
  1477. runtime_param_.session_id,
  1478. hybrid_model_.device_id_),
  1479. "[Invoke][CopyVarData] failed.");
  1480. GELOGI("CopyVarData success.");
  1481. return SUCCESS;
  1482. }
  1483. Status HybridModelBuilder::LoadKnownShapedSubgraph(ComputeGraph &graph, NodeItem *parent_node_item) {
  1484. GELOGD("Start to load known shaped subgraph [%s]", graph.GetName().c_str());
  1485. auto graph_item = std::unique_ptr<GraphItem>(new(std::nothrow)GraphItem());
  1486. GE_CHECK_NOTNULL(graph_item);
  1487. graph_item->is_dynamic_ = false;
  1488. auto subgraph_name = graph.GetName();
  1489. auto wrapper_op_desc = MakeShared<OpDesc>(subgraph_name + "_partitioned_call", PARTITIONEDCALL);
  1490. GE_CHECK_NOTNULL(wrapper_op_desc);
  1491. for (auto &node : graph.GetDirectNode()) {
  1492. GE_CHECK_NOTNULL(node);
  1493. auto op_desc = node->GetOpDesc();
  1494. GE_CHECK_NOTNULL(op_desc);
  1495. const auto &op_type = node->GetType();
  1496. if (op_type == DATA) {
  1497. int32_t data_index = 0;
  1498. if (!AttrUtils::GetInt(node->GetOpDesc(), ATTR_NAME_PARENT_NODE_INDEX, data_index)) {
  1499. GELOGE(FAILED,
  1500. "[Invoke][GetInt][%s] Failed to get attr [%s]",
  1501. node->GetName().c_str(),
  1502. ATTR_NAME_PARENT_NODE_INDEX.c_str());
  1503. return FAILED;
  1504. }
  1505. (void) wrapper_op_desc->AddInputDesc(op_desc->GetInputDesc(0));
  1506. graph_item->input_index_mapping_.emplace_back(data_index);
  1507. } else if (op_type == NETOUTPUT) {
  1508. int output_index = 0;
  1509. for (const auto &output_desc : op_desc->GetAllInputsDescPtr()) {
  1510. int32_t data_index = output_index++;
  1511. if (!AttrUtils::GetInt(output_desc, ATTR_NAME_PARENT_NODE_INDEX, data_index)) {
  1512. GELOGI("[%s] Failed to get attr [%s]", node->GetName().c_str(), ATTR_NAME_PARENT_NODE_INDEX.c_str());
  1513. }
  1514. GE_CHK_GRAPH_STATUS_RET(wrapper_op_desc->AddOutputDesc(*output_desc),
  1515. "[Invoke][AddOutputDesc][%s] Failed to add output desc. output index = %d",
  1516. graph.GetName().c_str(),
  1517. output_index);
  1518. graph_item->output_index_mapping_.emplace_back(data_index);
  1519. }
  1520. }
  1521. }
  1522. auto temp_graph = MakeShared<ComputeGraph>("temp");
  1523. GE_CHECK_NOTNULL(temp_graph);
  1524. auto wrapper_node = temp_graph->AddNode(wrapper_op_desc);
  1525. wrapper_op_desc->SetId(parent_node_item->node_id);
  1526. GeModelPtr ge_model = subgraph_models_[subgraph_name];
  1527. GE_CHECK_NOTNULL(ge_model);
  1528. hybrid_model_.known_shape_sub_models_.emplace(wrapper_node, ge_model);
  1529. NodeItem *node_item = nullptr;
  1530. GE_CHK_STATUS_RET_NOLOG(GetOrCreateNodeItem(wrapper_node, &node_item));
  1531. node_item->input_start = 0;
  1532. node_item->output_start = 0;
  1533. node_item->outputs.resize(node_item->num_outputs);
  1534. graph_item->node_items_.emplace_back(node_item);
  1535. graph_item->output_node_ = node_item;
  1536. graph_item->total_inputs_ = node_item->num_inputs;
  1537. graph_item->total_outputs_ = node_item->num_outputs;
  1538. GELOGD("NodeItem create for known shape subgraph [%s], NodeItem = %s",
  1539. graph.GetName().c_str(),
  1540. node_item->DebugString().c_str());
  1541. GELOGD("Done parse known shape subgraph successfully. graph = [%s]", graph.GetName().c_str());
  1542. graph_item->SetName(graph.GetName());
  1543. GELOGD("Done loading known shape subgraph: [%s]", graph_item->GetName().c_str());
  1544. hybrid_model_.subgraph_items_.emplace(graph.GetName(), std::move(graph_item));
  1545. return SUCCESS;
  1546. }
  1547. Status HybridModelBuilder::RecoverGraphUnknownFlag() {
  1548. const auto &root_graph = ge_root_model_->GetRootGraph();
  1549. for (auto &sub_graph : root_graph->GetAllSubgraphs()) {
  1550. GE_CHECK_NOTNULL(sub_graph);
  1551. for (const auto &node : sub_graph->GetDirectNode()) {
  1552. bool is_unknown_shape = false;
  1553. (void)AttrUtils::GetBool(node->GetOpDesc(), kOwnerGraphIsUnknown, is_unknown_shape);
  1554. sub_graph->SetGraphUnknownFlag(is_unknown_shape);
  1555. break;
  1556. }
  1557. }
  1558. return SUCCESS;
  1559. }
  1560. Status HybridModelBuilder::GenerateFpProfilingTask(const OpDescPtr &op_desc, vector<domi::TaskDef> &task_def_list) {
  1561. uint64_t jobid_log_id = ge::GetContext().TraceId();
  1562. GELOGD("The first FP operator is %s,, job_id %lu", op_desc->GetName().c_str(), jobid_log_id);
  1563. TaskDef job_task_def;
  1564. job_task_def.set_type(RT_MODEL_TASK_PROFILER_TRACE);
  1565. job_task_def.set_stream_id(op_desc->GetStreamId());
  1566. LogTimeStampDef *job_log_def = job_task_def.mutable_log_timestamp();
  1567. if (job_log_def != nullptr) {
  1568. job_log_def->set_logid(jobid_log_id);
  1569. job_log_def->set_notify(false);
  1570. }
  1571. task_def_list.emplace_back(job_task_def);
  1572. TaskDef fp_task_def;
  1573. fp_task_def.set_type(RT_MODEL_TASK_PROFILER_TRACE);
  1574. fp_task_def.set_stream_id(op_desc->GetStreamId());
  1575. LogTimeStampDef *fp_log_def = fp_task_def.mutable_log_timestamp();
  1576. if (fp_log_def != nullptr) {
  1577. fp_log_def->set_logid(kProfilingFpStartLogid);
  1578. fp_log_def->set_notify(false);
  1579. }
  1580. task_def_list.emplace_back(fp_task_def);
  1581. return SUCCESS;
  1582. }
  1583. Status HybridModelBuilder::GenerateArProfilingTask(const OpDescPtr &op_desc, int64_t log_id,
  1584. vector<domi::TaskDef> &task_def_list) {
  1585. TaskDef ar_task_def;
  1586. ar_task_def.set_type(RT_MODEL_TASK_PROFILER_TRACE);
  1587. ar_task_def.set_stream_id(op_desc->GetStreamId());
  1588. LogTimeStampDef *ar_log_def = ar_task_def.mutable_log_timestamp();
  1589. if (ar_log_def != nullptr) {
  1590. ar_log_def->set_logid(log_id);
  1591. ar_log_def->set_notify(false);
  1592. }
  1593. task_def_list.emplace_back(ar_task_def);
  1594. return SUCCESS;
  1595. }
  1596. Status HybridModelBuilder::GenerateBpProfilingTask(const OpDescPtr &op_desc, vector<domi::TaskDef> &task_def_list) {
  1597. TaskDef bp_task_def;
  1598. bp_task_def.set_type(RT_MODEL_TASK_PROFILER_TRACE);
  1599. bp_task_def.set_stream_id(op_desc->GetStreamId());
  1600. LogTimeStampDef *bp_log_def = bp_task_def.mutable_log_timestamp();
  1601. GE_CHECK_NOTNULL(bp_log_def);
  1602. bp_log_def->set_logid(kProfilingBpEndLogid);
  1603. bp_log_def->set_notify(false);
  1604. task_def_list.emplace_back(bp_task_def);
  1605. return SUCCESS;
  1606. }
  1607. Status HybridModelBuilder::GenerateEndProfilingTask(const OpDescPtr &op_desc, vector<domi::TaskDef> &task_def_list) {
  1608. TaskDef end_task_def;
  1609. end_task_def.set_type(RT_MODEL_TASK_PROFILER_TRACE);
  1610. end_task_def.set_stream_id(op_desc->GetStreamId());
  1611. LogTimeStampDef *end_log_def = end_task_def.mutable_log_timestamp();
  1612. GE_CHECK_NOTNULL(end_log_def);
  1613. end_log_def->set_logid(kProfilingIterEndLogid);
  1614. end_log_def->set_notify(true);
  1615. task_def_list.emplace_back(end_task_def);
  1616. return SUCCESS;
  1617. }
  1618. Status HybridModelBuilder::CreateProfilingNodeBefore(GraphItem &graph_item, const NodePtr &node, uint32_t &prev_num) {
  1619. GE_CHECK_NOTNULL(node);
  1620. const OpDescPtr &op_desc = node->GetOpDesc();
  1621. GE_CHECK_NOTNULL(op_desc);
  1622. const auto &compute_graph = MakeShared<ComputeGraph>(kProfilingGraph);
  1623. GE_CHECK_NOTNULL(compute_graph);
  1624. NodePtr node_ptr = nullptr;
  1625. map<NodePtr, vector<domi::TaskDef>> node_task_map;
  1626. // create fp node
  1627. bool is_insert_fp_profiling_task = false;
  1628. (void)ge::AttrUtils::GetBool(op_desc, ATTR_NAME_INSERT_FP_PROFILILNG_TASK, is_insert_fp_profiling_task);
  1629. if (is_insert_fp_profiling_task) {
  1630. vector<domi::TaskDef> task_def_list;
  1631. (void)GenerateFpProfilingTask(op_desc, task_def_list);
  1632. auto fp_desc = MakeShared<OpDesc>(kProfilingFpNode, PROFILINGTRAININGTRACE);
  1633. GE_CHECK_NOTNULL(fp_desc);
  1634. fp_desc->SetOpKernelLibName(kEngineNameRts);
  1635. node_ptr = compute_graph->AddNode(fp_desc);
  1636. GE_CHECK_NOTNULL(node_ptr);
  1637. node_task_map[node_ptr] = task_def_list;
  1638. GELOGD("Create fp profiling node success before.");
  1639. }
  1640. // creat all reduce start node
  1641. bool is_insert_bp_profiling_task = false;
  1642. (void)ge::AttrUtils::GetBool(op_desc, ATTR_NAME_INSERT_BP_PROFILILNG_TASK, is_insert_bp_profiling_task);
  1643. bool is_all_reduce = (op_desc->GetType() == HCOMALLREDUCE || op_desc->GetType() == HVDCALLBACKALLREDUCE);
  1644. if (is_all_reduce && is_insert_bp_profiling_task) {
  1645. vector<domi::TaskDef> task_def_list;
  1646. int64_t log_id = 0;
  1647. (void)ge::AttrUtils::GetInt(op_desc, ATTR_NAME_INSERT_PROFILILNG_TASK_LOG_ID, log_id);
  1648. GELOGD("All reduce node profiling task log id: %ld before", log_id);
  1649. (void) GenerateArProfilingTask(op_desc, log_id, task_def_list);
  1650. string op_name = string(kProfilingArNode) + std::to_string(log_id);
  1651. auto ar_desc_start = MakeShared<OpDesc>(op_name, PROFILINGTRAININGTRACE);
  1652. GE_CHECK_NOTNULL(ar_desc_start);
  1653. ar_desc_start->SetOpKernelLibName(kEngineNameRts);
  1654. node_ptr = compute_graph->AddNode(ar_desc_start);
  1655. GE_CHECK_NOTNULL(node_ptr);
  1656. node_task_map[node_ptr] = task_def_list;
  1657. GELOGD("Create all reduce start profiling node success before.");
  1658. }
  1659. if (!node_task_map.empty()) {
  1660. for (const auto &node_task : node_task_map) {
  1661. NodePtr profiling_node = node_task.first;
  1662. const vector<domi::TaskDef> &task_def_lists = node_task.second;
  1663. for (const auto &task_def : task_def_lists) {
  1664. hybrid_model_.task_defs_[profiling_node].emplace_back(task_def);
  1665. }
  1666. if (op_desc->HasAttr(ATTR_STAGE_LEVEL)) {
  1667. uint32_t stage_level = UINT32_MAX;
  1668. (void)ge::AttrUtils::GetInt(op_desc, ATTR_STAGE_LEVEL, stage_level);
  1669. (void)ge::AttrUtils::SetInt(node_ptr->GetOpDesc(), ATTR_STAGE_LEVEL, stage_level);
  1670. }
  1671. NodeItem *node_item = nullptr;
  1672. GE_CHK_STATUS_RET_NOLOG(GetOrCreateNodeItem(profiling_node, &node_item));
  1673. GE_CHECK_NOTNULL(node_item);
  1674. node_item->input_start = 0;
  1675. node_item->output_start = 0;
  1676. graph_item.node_items_.emplace_back(node_item);
  1677. ++prev_num;
  1678. }
  1679. } else {
  1680. GELOGD("No need to create profiling node before.");
  1681. }
  1682. return SUCCESS;
  1683. }
  1684. Status HybridModelBuilder::CreateProfilingNodeAfter(GraphItem &graph_item, const NodePtr &node, uint32_t &post_num) {
  1685. GE_CHECK_NOTNULL(node);
  1686. const OpDescPtr &op_desc = node->GetOpDesc();
  1687. GE_CHECK_NOTNULL(op_desc);
  1688. const auto &compute_graph = MakeShared<ComputeGraph>(kProfilingGraph);
  1689. GE_CHECK_NOTNULL(compute_graph);
  1690. NodePtr node_ptr = nullptr;
  1691. map<NodePtr, vector<domi::TaskDef>> node_task_map;
  1692. // Create all reduce end node
  1693. bool is_insert_bp_profiling_task = false;
  1694. (void)ge::AttrUtils::GetBool(op_desc, ATTR_NAME_INSERT_BP_PROFILILNG_TASK, is_insert_bp_profiling_task);
  1695. bool is_all_reduce = (op_desc->GetType() == HCOMALLREDUCE || op_desc->GetType() == HVDCALLBACKALLREDUCE);
  1696. if (is_all_reduce && is_insert_bp_profiling_task) {
  1697. vector<domi::TaskDef> task_def_list;
  1698. int64_t log_id = 0;
  1699. (void)ge::AttrUtils::GetInt(op_desc, ATTR_NAME_INSERT_PROFILILNG_TASK_LOG_ID, log_id);
  1700. GELOGD("All reduce node profiling task log id: %ld after", log_id);
  1701. (void) GenerateArProfilingTask(op_desc, log_id + 1, task_def_list);
  1702. string op_name = string(kProfilingArNode) + std::to_string(log_id + 1);
  1703. auto ar_desc_end = MakeShared<OpDesc>(op_name, PROFILINGTRAININGTRACE);
  1704. GE_CHECK_NOTNULL(ar_desc_end);
  1705. ar_desc_end->SetOpKernelLibName(kEngineNameRts);
  1706. node_ptr = compute_graph->AddNode(ar_desc_end);
  1707. GE_CHECK_NOTNULL(node_ptr);
  1708. node_task_map[node_ptr] = task_def_list;
  1709. GELOGD("Create all reduce end profiling node success after.");
  1710. }
  1711. // create bp node
  1712. if (!is_all_reduce && is_insert_bp_profiling_task) {
  1713. vector<domi::TaskDef> task_def_list;
  1714. (void) GenerateBpProfilingTask(op_desc, task_def_list);
  1715. auto bp_op_desc = MakeShared<OpDesc>(kProfilingBpNode, PROFILINGTRAININGTRACE);
  1716. GE_CHECK_NOTNULL(bp_op_desc);
  1717. bp_op_desc->SetOpKernelLibName(kEngineNameRts);
  1718. node_ptr = compute_graph->AddNode(bp_op_desc);
  1719. GE_CHECK_NOTNULL(node_ptr);
  1720. node_task_map[node_ptr] = task_def_list;
  1721. GELOGD("Create bp profiling node success after.");
  1722. }
  1723. // create end node
  1724. bool is_insert_end_profiling_task = false;
  1725. (void)ge::AttrUtils::GetBool(op_desc, ATTR_NAME_INSERT_END_PROFILILNG_TASK, is_insert_end_profiling_task);
  1726. if (is_insert_end_profiling_task) {
  1727. vector<domi::TaskDef> task_def_list;
  1728. (void)GenerateEndProfilingTask(op_desc, task_def_list);
  1729. auto end_desc = MakeShared<OpDesc>(kProfilingEndNode, PROFILINGTRAININGTRACE);
  1730. GE_CHECK_NOTNULL(end_desc);
  1731. end_desc->SetOpKernelLibName(kEngineNameRts);
  1732. node_ptr = compute_graph->AddNode(end_desc);
  1733. GE_CHECK_NOTNULL(node_ptr);
  1734. node_task_map[node_ptr] = task_def_list;
  1735. GELOGD("Create end profiling node success after.");
  1736. }
  1737. if (!node_task_map.empty()) {
  1738. for (const auto &node_task : node_task_map) {
  1739. NodePtr profiling_node = node_task.first;
  1740. const vector<domi::TaskDef> &task_def_lists = node_task.second;
  1741. for (const auto &task_def : task_def_lists) {
  1742. hybrid_model_.task_defs_[profiling_node].emplace_back(task_def);
  1743. }
  1744. if (op_desc->HasAttr(ATTR_STAGE_LEVEL)) {
  1745. uint32_t stage_level = UINT32_MAX;
  1746. (void)ge::AttrUtils::GetInt(op_desc, ATTR_STAGE_LEVEL, stage_level);
  1747. (void)ge::AttrUtils::SetInt(profiling_node->GetOpDesc(), ATTR_STAGE_LEVEL, stage_level);
  1748. }
  1749. NodeItem *node_item = nullptr;
  1750. GE_CHK_STATUS_RET_NOLOG(GetOrCreateNodeItem(profiling_node, &node_item));
  1751. GE_CHECK_NOTNULL(node_item);
  1752. node_item->input_start = 0;
  1753. node_item->output_start = 0;
  1754. graph_item.node_items_.emplace_back(node_item);
  1755. ++post_num;
  1756. }
  1757. } else {
  1758. GELOGD("No need to create profiling node after.");
  1759. }
  1760. return SUCCESS;
  1761. }
  1762. Status HybridModelBuilder::LoadDynamicSubgraph(ComputeGraph &graph, bool is_root_graph) {
  1763. GELOGD("Start to load subgraph [%s]", graph.GetName().c_str());
  1764. // for known partitioned call, load all nodes
  1765. auto graph_item = std::unique_ptr<GraphItem>(new(std::nothrow)GraphItem());
  1766. GE_CHECK_NOTNULL(graph_item);
  1767. graph_item->is_dynamic_ = true;
  1768. graph_item->node_items_.reserve(graph.GetDirectNodesSize());
  1769. int input_start = 0;
  1770. int output_start = 0;
  1771. std::vector<NodeItem *> data_nodes;
  1772. std::map<size_t, std::pair<uint32_t, uint32_t>> profiling_nodes;
  1773. for (auto &node : graph.GetDirectNode()) {
  1774. GE_CHECK_NOTNULL(node);
  1775. GE_CHECK_NOTNULL(node->GetOpDesc());
  1776. const auto &op_type = node->GetType();
  1777. NodeItem *node_item = nullptr;
  1778. GE_CHK_STATUS_RET_NOLOG(GetOrCreateNodeItem(node, &node_item));
  1779. GE_CHK_STATUS_RET_NOLOG(BuildNodeItem(node, *node_item));
  1780. GE_CHK_STATUS_RET_NOLOG(UpdateAnchorStatus(node)); // needed by FE generate task
  1781. GE_CHK_STATUS_RET_NOLOG(BuildControlFlowGroup(*graph_item, node, node_item));
  1782. if (node->GetInAllNodes().empty()) {
  1783. graph_item->root_items_.emplace_back(node_item);
  1784. GELOGD("[%s] add to root node list", node->GetName().c_str());
  1785. }
  1786. node_item->input_start = input_start;
  1787. node_item->output_start = output_start;
  1788. input_start += node_item->num_inputs;
  1789. output_start += node_item->num_outputs;
  1790. if (op_type == DATA_TYPE || op_type == AIPP_DATA_TYPE) {
  1791. data_nodes.emplace_back(node_item);
  1792. } else if (op_type == NETOUTPUT) {
  1793. graph_item->output_node_ = node_item;
  1794. GE_CHK_STATUS_RET_NOLOG(BuildOutputMapping(*graph_item, *node_item, is_root_graph));
  1795. }
  1796. uint32_t prev_num = 0;
  1797. uint32_t post_num = 0;
  1798. GE_CHK_STATUS_RET_NOLOG(CreateProfilingNodeBefore(*graph_item, node, prev_num));
  1799. size_t node_index = graph_item->node_items_.size();
  1800. graph_item->node_items_.emplace_back(node_item);
  1801. GE_CHK_STATUS_RET_NOLOG(CreateProfilingNodeAfter(*graph_item, node, post_num));
  1802. if (prev_num > 0 || post_num > 0) {
  1803. profiling_nodes[node_index] = { prev_num, post_num };
  1804. }
  1805. // parse var outputs
  1806. GE_CHK_STATUS_RET_NOLOG(ParseVarOutputs(*node_item));
  1807. GELOGD("NodeItem created: %s", node_item->DebugString().c_str());
  1808. }
  1809. graph_item->total_inputs_ = input_start;
  1810. graph_item->total_outputs_ = output_start;
  1811. GE_CHK_STATUS_RET_NOLOG(BuildInputMapping(*graph_item, data_nodes, is_root_graph));
  1812. GE_CHK_STATUS_RET_NOLOG(BuildProfilingControl(*graph_item, profiling_nodes));
  1813. if (is_root_graph) {
  1814. graph_item->SetName("Root-Graph");
  1815. GELOGD("Done loading dynamic subgraph: [%s]", graph_item->GetName().c_str());
  1816. hybrid_model_.root_graph_item_ = std::move(graph_item);
  1817. } else {
  1818. graph_item->SetName(graph.GetName());
  1819. GELOGD("Done loading dynamic subgraph: [%s]", graph_item->GetName().c_str());
  1820. hybrid_model_.subgraph_items_.emplace(graph.GetName(), std::move(graph_item));
  1821. }
  1822. return SUCCESS;
  1823. }
  1824. Status HybridModelBuilder::ParseVarOutputs(NodeItem &node_item) {
  1825. for (int i = 0; i < node_item.num_outputs; ++i) {
  1826. auto output_tensor_desc = node_item.op_desc->GetOutputDesc(i);
  1827. std::string var_name;
  1828. (void) AttrUtils::GetStr(output_tensor_desc, ASSIGN_VAR_NAME, var_name);
  1829. if (!var_name.empty()) {
  1830. auto var_node = hybrid_model_.GetVariableNode(var_name);
  1831. GE_CHECK_NOTNULL(var_node);
  1832. node_item.ref_outputs.emplace(i, var_node);
  1833. }
  1834. }
  1835. return SUCCESS;
  1836. }
  1837. Status HybridModelBuilder::BuildInputMapping(GraphItem &graph_item,
  1838. vector<NodeItem *> &data_nodes,
  1839. bool is_root_graph) {
  1840. uint32_t data_op_index = 0;
  1841. for (auto &node_item : data_nodes) {
  1842. auto node = node_item->node;
  1843. int data_index = data_op_index;
  1844. if (is_root_graph) {
  1845. if (AttrUtils::GetInt(node->GetOpDesc(), ATTR_NAME_INDEX, data_index)) {
  1846. GELOGI("ge_train: get new index %u, old %u", data_index, data_op_index);
  1847. }
  1848. data_op_index++;
  1849. } else {
  1850. if (!AttrUtils::GetInt(node->GetOpDesc(), ATTR_NAME_PARENT_NODE_INDEX, data_index)) {
  1851. GELOGE(FAILED, "[Invoke][GetInt][%s] Failed to get attr [%s]",
  1852. node->GetName().c_str(), ATTR_NAME_PARENT_NODE_INDEX.c_str());
  1853. REPORT_CALL_ERROR("E19999", "call GetInt failed, [%s] Failed to get attr [%s]",
  1854. node->GetName().c_str(), ATTR_NAME_PARENT_NODE_INDEX.c_str());
  1855. return FAILED;
  1856. }
  1857. }
  1858. if (graph_item.input_nodes_.size() <= static_cast<size_t>(data_index)) {
  1859. graph_item.input_nodes_.resize(data_index + 1);
  1860. }
  1861. graph_item.input_nodes_[data_index] = node_item;
  1862. }
  1863. return SUCCESS;
  1864. }
  1865. Status HybridModelBuilder::CheckAicpuOpList() {
  1866. std::vector<std::string> aicpu_optype_list;
  1867. std::vector<std::string> aicpu_tf_optype_list;
  1868. std::set<std::string> aicpu_optype_set;
  1869. std::set<std::string> aicpu_tf_optype_set;
  1870. for (auto &it : ge_root_model_->GetSubgraphInstanceNameToModel()) {
  1871. auto &ge_model = it.second;
  1872. GE_CHECK_NOTNULL(ge_model);
  1873. if (ge::AttrUtils::GetListStr(*ge_model, "needCheckCpu", aicpu_optype_list)) {
  1874. aicpu_optype_set.insert(aicpu_optype_list.begin(), aicpu_optype_list.end());
  1875. }
  1876. if (ge::AttrUtils::GetListStr(*ge_model, "needCheckTf", aicpu_tf_optype_list)) {
  1877. aicpu_tf_optype_set.insert(aicpu_tf_optype_list.begin(), aicpu_tf_optype_list.end());
  1878. }
  1879. }
  1880. // reset list with set
  1881. aicpu_optype_list.assign(aicpu_optype_set.begin(), aicpu_optype_set.end());
  1882. aicpu_tf_optype_list.assign(aicpu_tf_optype_set.begin(), aicpu_tf_optype_set.end());
  1883. GE_CHK_STATUS_RET(ModelManager::GetInstance()->LaunchKernelCheckAicpuOp(aicpu_optype_list, aicpu_tf_optype_list),
  1884. "[Launch][KernelCheckAicpuOp] failed.");
  1885. return SUCCESS;
  1886. }
  1887. Status HybridModelBuilder::CollectParallelGroups(NodeItem *node_item) {
  1888. const auto &node = node_item->node;
  1889. auto executor_type = NodeExecutorManager::GetInstance().ResolveExecutorType(*node);
  1890. if (executor_type == NodeExecutorManager::ExecutorType::HCCL) {
  1891. std::string parallel_group;
  1892. if (AttrUtils::GetStr(node->GetOpDesc(), ATTR_NAME_PARALLEL_GROUP, parallel_group)) {
  1893. GELOGD("[%s] Got parallel group = [%s]", node_item->NodeName().c_str(), parallel_group.c_str());
  1894. parallel_group_to_nodes_[parallel_group].emplace(node_item);
  1895. std::set<std::string> group{parallel_group};
  1896. node_to_parallel_groups_[node_item].emplace(parallel_group);
  1897. }
  1898. } else if (executor_type == NodeExecutorManager::ExecutorType::COMPILED_SUBGRAPH) {
  1899. std::set<std::string> parallel_groups;
  1900. GELOGD("[%s] To collect parallel group for known-shaped subgraph", node_item->NodeName().c_str());
  1901. for (const auto &subgraph_name : node->GetOpDesc()->GetSubgraphInstanceNames()) {
  1902. GELOGD("[%s] Start to get parallel group from subgraph: %s",
  1903. node_item->NodeName().c_str(),
  1904. subgraph_name.c_str());
  1905. auto subgraph = hybrid_model_.root_graph_->GetSubgraph(subgraph_name);
  1906. GE_CHECK_NOTNULL(subgraph);
  1907. for (const auto &sub_node : subgraph->GetAllNodes()) {
  1908. std::string parallel_group;
  1909. if (AttrUtils::GetStr(sub_node->GetOpDesc(), ATTR_NAME_PARALLEL_GROUP, parallel_group)) {
  1910. GELOGD("[%s::%s] Got parallel group = %s",
  1911. subgraph_name.c_str(),
  1912. sub_node->GetName().c_str(),
  1913. parallel_group.c_str());
  1914. parallel_groups.emplace(parallel_group);
  1915. }
  1916. }
  1917. }
  1918. if (!parallel_groups.empty()) {
  1919. for (const auto &parallel_group : parallel_groups) {
  1920. parallel_group_to_nodes_[parallel_group].emplace(node_item);
  1921. GELOGD("[%s] has parallel group: %s", node_item->NodeName().c_str(), parallel_group.c_str());
  1922. }
  1923. node_to_parallel_groups_.emplace(node_item, std::move(parallel_groups));
  1924. }
  1925. }
  1926. return SUCCESS;
  1927. }
  1928. Status HybridModelBuilder::ParseDependentByParallelGroup() {
  1929. for (auto &it : hybrid_model_.node_items_) {
  1930. GE_CHK_STATUS_RET_NOLOG(CollectParallelGroups(it.second.get()));
  1931. }
  1932. for (const auto &it : node_to_parallel_groups_) {
  1933. auto node_item = it.first;
  1934. auto dst_executor_type = NodeExecutorManager::GetInstance().ResolveExecutorType(*node_item->node);
  1935. for (const auto &parallel_group : it.second) {
  1936. auto &dependent_nodes = parallel_group_to_nodes_[parallel_group];
  1937. NodeItem *nearest_dep_node = nullptr;
  1938. int max_id = -1;
  1939. for (auto &dep_node : dependent_nodes) {
  1940. if (dep_node->node_id < node_item->node_id && dep_node->node_id > max_id) {
  1941. nearest_dep_node = dep_node;
  1942. max_id = dep_node->node_id;
  1943. }
  1944. }
  1945. if (nearest_dep_node != nullptr) {
  1946. GELOGD("[%s] Nearest node = [%s]", node_item->NodeName().c_str(), nearest_dep_node->NodeName().c_str());
  1947. auto src_engine_type = NodeExecutorManager::GetInstance().ResolveExecutorType(*nearest_dep_node->node);
  1948. if (src_engine_type == dst_executor_type) {
  1949. GELOGD("No need to add dependency for nodes with same executor type");
  1950. continue;
  1951. }
  1952. auto &deps = node_item->dependents_for_execution;
  1953. if (std::find(deps.begin(), deps.end(), nearest_dep_node->node) != deps.end()) {
  1954. GELOGD("%s->%s Already has dependency, skip it",
  1955. nearest_dep_node->node->GetName().c_str(),
  1956. node_item->NodeName().c_str());
  1957. continue;
  1958. }
  1959. nearest_dep_node->has_observer = true;
  1960. deps.emplace_back(nearest_dep_node->node);
  1961. GELOGD("Add dependency for nodes with the same parallel group[%s], src = [%s], dst = [%s]",
  1962. parallel_group.c_str(),
  1963. nearest_dep_node->NodeName().c_str(),
  1964. node_item->NodeName().c_str());
  1965. }
  1966. }
  1967. }
  1968. return SUCCESS;
  1969. }
  1970. Status HybridModelBuilder::OptimizeDependenciesForConstantInputs() {
  1971. std::map<NodePtr, std::set<uint32_t>> converted;
  1972. for (auto &it : host_input_value_dependencies_) {
  1973. auto node_item = it.first;
  1974. std::map<NodeItem *, int> ref_counts;
  1975. bool changed = false;
  1976. for (auto output_idx_and_node : it.second) {
  1977. auto output_idx = output_idx_and_node.first;
  1978. auto src_node_item = output_idx_and_node.second;
  1979. ++ref_counts[src_node_item];
  1980. NodePtr constant_node;
  1981. if (src_node_item->node_type == CONSTANT || src_node_item->node_type == CONSTANTOP) {
  1982. constant_node = src_node_item->node;
  1983. GELOGD("src node [%s] is a constant", src_node_item->NodeName().c_str());
  1984. } else {
  1985. auto iter = known_subgraph_constant_output_refs_.find(src_node_item);
  1986. if (iter != known_subgraph_constant_output_refs_.end()) {
  1987. constant_node = iter->second[output_idx];
  1988. if (constant_node != nullptr) {
  1989. GELOGD("Output[%u] of subgraph [%s] is a constant", output_idx, src_node_item->NodeName().c_str());
  1990. }
  1991. }
  1992. }
  1993. if (constant_node == nullptr) {
  1994. GELOGD("Output[%u] of [%s] is not a constant", output_idx, src_node_item->NodeName().c_str());
  1995. continue;
  1996. }
  1997. if (converted[constant_node].count(output_idx) == 0) {
  1998. GE_CHK_STATUS_RET(Convert2HostTensor(constant_node, src_node_item->node_id, output_idx),
  1999. "[%s] Failed to convert constant to host tensor", constant_node->GetName().c_str());
  2000. converted[constant_node].emplace(output_idx);
  2001. }
  2002. src_node_item->to_const_output_id_list.erase(output_idx);
  2003. --ref_counts[src_node_item];
  2004. changed = true;
  2005. }
  2006. if (changed) {
  2007. std::vector<NodePtr> depends_to_keep;
  2008. for (auto &ref_count_it : ref_counts) {
  2009. if (ref_count_it.second == 0) {
  2010. GELOGD("[%s] no longer depends on [%s] for shape inference",
  2011. node_item->NodeName().c_str(),
  2012. ref_count_it.first->NodeName().c_str());
  2013. } else {
  2014. depends_to_keep.emplace_back(ref_count_it.first->node);
  2015. }
  2016. }
  2017. node_item->dependents_for_shape_inference.swap(depends_to_keep);
  2018. }
  2019. }
  2020. return SUCCESS;
  2021. }
  2022. Status HybridModelBuilder::Convert2HostTensor(const NodePtr &node, int node_id, uint32_t output_idx) {
  2023. auto tensor_value = hybrid_model_.GetTensor(node);
  2024. GE_CHECK_NOTNULL(tensor_value);
  2025. auto tensor_desc = node->GetOpDesc()->MutableOutputDesc(0);
  2026. GE_CHECK_NOTNULL(tensor_desc);
  2027. Tensor tensor(TensorAdapter::GeTensorDesc2TensorDesc(*tensor_desc));
  2028. int64_t tensor_size = -1;
  2029. GE_CHK_GRAPH_STATUS_RET(TensorUtils::GetTensorSizeInBytes(*tensor_desc, tensor_size),
  2030. "[%s] Failed to get tensor size", node->GetName().c_str());
  2031. if (tensor_size > 0) {
  2032. auto copy_size = static_cast<size_t>(tensor_size);
  2033. GE_CHECK_GE(tensor_value->GetSize(), copy_size);
  2034. std::vector<uint8_t> buffer(copy_size);
  2035. GE_CHK_RT_RET(rtMemcpy(buffer.data(),
  2036. copy_size,
  2037. tensor_value->GetData(),
  2038. copy_size,
  2039. RT_MEMCPY_DEVICE_TO_HOST));
  2040. tensor.SetData(std::move(buffer));
  2041. GELOGD("[%s] Copy constant tensor to host successfully, size = %zu", node->GetName().c_str(), copy_size);
  2042. }
  2043. hybrid_model_.host_tensors_[node_id].emplace_back(output_idx, std::move(tensor));
  2044. return SUCCESS;
  2045. }
  2046. Status HybridModelBuilder::RelinkNextIteration() {
  2047. for (const auto &item : stream_merge_op_nodes_) {
  2048. const auto &merge = item.second;
  2049. std::string node_name;
  2050. if (!AttrUtils::GetStr(merge->GetOpDesc(), ATTR_NAME_NEXT_ITERATION, node_name)) {
  2051. GELOGD("[%s] no attribute[%s], not in while loop", merge->GetName().c_str(), ATTR_NAME_NEXT_ITERATION.c_str());
  2052. continue;
  2053. }
  2054. const auto it = next_iteration_op_nodes_.find(node_name);
  2055. if (it == next_iteration_op_nodes_.end()) {
  2056. GELOGE(INTERNAL_ERROR, "[%s] expect NextIteration[%s] not found", merge->GetName().c_str(), node_name.c_str());
  2057. return INTERNAL_ERROR;
  2058. }
  2059. const auto &iteration = it->second;
  2060. if (GraphUtils::AddEdge(iteration->GetOutDataAnchor(0), merge->GetInDataAnchor(1)) != GRAPH_SUCCESS) {
  2061. GELOGE(INTERNAL_ERROR, "[%s] -> [%s] Add edge failed", node_name.c_str(), merge->GetName().c_str());
  2062. return INTERNAL_ERROR;
  2063. }
  2064. }
  2065. return SUCCESS;
  2066. }
  2067. Status HybridModelBuilder::BuildProfilingControl(GraphItem &graph_item,
  2068. const std::map<size_t, std::pair<uint32_t, uint32_t>> &nodes) {
  2069. const auto node_size = graph_item.node_items_.size();
  2070. for (const auto &item : nodes) {
  2071. const auto node_index = item.first;
  2072. GE_CHK_BOOL_RET_STATUS(node_index < node_size, FAILED, "node index invalid");
  2073. const auto &node_item = graph_item.node_items_[node_index];
  2074. if (item.second.first > 0) {
  2075. const auto prev_num = item.second.first;
  2076. if (node_index == prev_num) {
  2077. // Profiling Before root node.
  2078. for (uint32_t i = 1; i <= prev_num; ++i) {
  2079. GE_CHK_BOOL_RET_STATUS(node_index - i < node_size, FAILED, "prev index invalid");
  2080. const auto &curr_item = graph_item.node_items_[node_index - i];
  2081. graph_item.root_items_.emplace(graph_item.root_items_.begin(), curr_item);
  2082. }
  2083. } else {
  2084. GE_CHK_BOOL_RET_STATUS((node_index - prev_num) - 1 < node_size, FAILED, "prev index invalid");
  2085. const auto &prev_item = graph_item.node_items_[(node_index - prev_num) - 1];
  2086. for (uint32_t i = 1; i <= prev_num; ++i) {
  2087. GE_CHK_BOOL_RET_STATUS(node_index - i < node_size, FAILED, "prev index invalid");
  2088. const auto &curr_item = graph_item.node_items_[node_index - i];
  2089. prev_item->SetCtrlSend(curr_item, UINT32_MAX);
  2090. curr_item->SetCtrlSend(node_item, UINT32_MAX);
  2091. }
  2092. }
  2093. }
  2094. if (item.second.second > 0) {
  2095. const auto post_num = item.second.second;
  2096. if (node_size == node_index + post_num + 1) {
  2097. // Profiling After last node.
  2098. for (uint32_t i = 1; i <= post_num; ++i) {
  2099. GE_CHK_BOOL_RET_STATUS(node_index + i < node_size, FAILED, "post index invalid");
  2100. const auto &curr_item = graph_item.node_items_[node_index + i];
  2101. node_item->SetCtrlSend(curr_item, UINT32_MAX);
  2102. }
  2103. } else {
  2104. GE_CHK_BOOL_RET_STATUS((node_index + post_num) + 1 < node_size, FAILED, "post index invalid");
  2105. const auto &post_item = graph_item.node_items_[(node_index + post_num) + 1];
  2106. for (uint32_t i = 1; i <= post_num; ++i) {
  2107. GE_CHK_BOOL_RET_STATUS(node_index + i < node_size, FAILED, "post index invalid");
  2108. const auto &curr_item = graph_item.node_items_[node_index + i];
  2109. node_item->SetCtrlSend(curr_item, UINT32_MAX);
  2110. curr_item->SetCtrlSend(post_item, UINT32_MAX);
  2111. }
  2112. }
  2113. }
  2114. }
  2115. return SUCCESS;
  2116. }
  2117. Status HybridModelBuilder::BuildControlFlowGroup(GraphItem &graph_item, const NodePtr &node, NodeItem *node_item) {
  2118. GELOGD("Build control flow for node %s", node->GetName().c_str());
  2119. using GroupBuilder = std::function<Status(HybridModelBuilder *, const NodePtr &, NodeItem *)>;
  2120. static const std::map<std::string, GroupBuilder> control_flow{
  2121. { STREAMACTIVE, &HybridModelBuilder::CreateStreamActiveGroup },
  2122. { STREAMSWITCH, &HybridModelBuilder::CreateStreamSwitchGroup },
  2123. { STREAMSWITCHN, &HybridModelBuilder::CreateStreamSwitchNGroup },
  2124. { NEXTITERATION, &HybridModelBuilder::CreateNextIterationGroup },
  2125. { REFNEXTITERATION, &HybridModelBuilder::CreateNextIterationGroup },
  2126. { SWITCH, &HybridModelBuilder::CreateSwitchGroup },
  2127. { REFSWITCH, &HybridModelBuilder::CreateSwitchGroup },
  2128. { LABELSET, &HybridModelBuilder::CreateLabelSetGroup },
  2129. { LABELGOTO, &HybridModelBuilder::CreateLabelGotoGroup },
  2130. { LABELGOTOEX, &HybridModelBuilder::CreateLabelGotoGroup },
  2131. { LABELSWITCH, &HybridModelBuilder::CreateLabelSwitchGroup },
  2132. { LABELSWITCHBYINDEX, &HybridModelBuilder::CreateLabelSwitchGroup }
  2133. };
  2134. Status ret = SUCCESS;
  2135. auto it = control_flow.find(node_item->node_type);
  2136. if (it == control_flow.end()) {
  2137. ret = CreateNormalNodeGroup(node, node_item);
  2138. } else {
  2139. graph_item.has_ctrl_flow_op_ = true;
  2140. ret = it->second(this, node, node_item);
  2141. }
  2142. GELOGD("Node: %s, control by: %zu, control for: %zu, switch group: %zu", node->GetName().c_str(),
  2143. node_item->ctrl_recv_.size(), node_item->ctrl_send_.size(), node_item->switch_groups_.size());
  2144. return ret;
  2145. }
  2146. Status HybridModelBuilder::CreateNormalNodeGroup(const NodePtr &node, NodeItem *node_item) {
  2147. for (const auto &dst_node : node->GetOutControlNodes()) {
  2148. GE_CHECK_NOTNULL(dst_node);
  2149. if ((dst_node->GetType() == STREAMACTIVE) && (kStreamActiveTypes.count(node->GetType()) == 0)) {
  2150. GELOGI("[%s] ignore control to [%s]", node->GetName().c_str(), dst_node->GetName().c_str());
  2151. continue;
  2152. }
  2153. NodeItem *dst_node_item = nullptr;
  2154. GE_CHK_STATUS_RET(GetOrCreateNodeItem(dst_node, &dst_node_item),
  2155. "[%s] failed to get or create node item", dst_node->GetName().c_str());
  2156. node_item->SetCtrlSend(dst_node_item, UINT32_MAX);
  2157. }
  2158. return SUCCESS;
  2159. }
  2160. Status HybridModelBuilder::CreateMergeEnterGroup(const NodePtr &node, NodeItem *node_item) {
  2161. // Enter --> StreamActive --> StreamMerge
  2162. for (const auto &dst_node : node->GetOutControlNodes()) {
  2163. GE_CHECK_NOTNULL(dst_node);
  2164. NodeItem *dst_node_item = nullptr;
  2165. GE_CHK_STATUS_RET(GetOrCreateNodeItem(dst_node, &dst_node_item),
  2166. "[%s] failed to get or create node item", dst_node->GetName().c_str());
  2167. // Set Enter Control to StreamMerge as Group 0.
  2168. dst_node_item->switch_groups_.resize(kLoopMergeSize);
  2169. dst_node_item->SetMergeCtrl(node_item, kLoopEnterIdx);
  2170. }
  2171. return SUCCESS;
  2172. }
  2173. Status HybridModelBuilder::CreateMergeIterationGroup(const NodePtr &node, NodeItem *node_item) {
  2174. // NextIteration --> StreamActive {-->} StreamMerge
  2175. std::string node_name;
  2176. for (const auto &src_node : node->GetInControlNodes()) {
  2177. GE_CHECK_NOTNULL(src_node);
  2178. if (kNextIterationOpTypes.count(src_node->GetType()) == 0) {
  2179. GELOGI("[%s] Skip Not NextIteration node [%s]", node->GetName().c_str(), src_node->GetName().c_str());
  2180. continue;
  2181. }
  2182. if (!AttrUtils::GetStr(src_node->GetOpDesc(), ATTR_NAME_NEXT_ITERATION, node_name)) {
  2183. GELOGE(INTERNAL_ERROR, "[%s] input node [%s] expect attribute[%s] not found",
  2184. node->GetName().c_str(), src_node->GetName().c_str(), ATTR_NAME_NEXT_ITERATION.c_str());
  2185. return INTERNAL_ERROR;
  2186. }
  2187. const auto it = stream_merge_op_nodes_.find(node_name);
  2188. if (it == stream_merge_op_nodes_.end()) {
  2189. GELOGE(INTERNAL_ERROR, "[%s] expect StreamMerge[%s] not found", node->GetName().c_str(), node_name.c_str());
  2190. return INTERNAL_ERROR;
  2191. }
  2192. const auto &dst_node = it->second;
  2193. GE_CHECK_NOTNULL(dst_node);
  2194. NodeItem *dst_node_item = nullptr;
  2195. GE_CHK_STATUS_RET(GetOrCreateNodeItem(dst_node, &dst_node_item), "[%s] failed to get or create node item",
  2196. dst_node->GetName().c_str());
  2197. // Set NextIteration Control to StreamMerge as Group 1.
  2198. dst_node_item->SetMergeCtrl(node_item, kLoopIterationIdx);
  2199. }
  2200. return SUCCESS;
  2201. }
  2202. Status HybridModelBuilder::CreateStreamActiveGroup(const NodePtr &node, NodeItem *node_item) {
  2203. if (node_item->node_type != STREAMACTIVE) {
  2204. GELOGE(INTERNAL_ERROR, "Called by %s is invalid", node_item->node_type.c_str());
  2205. return INTERNAL_ERROR;
  2206. }
  2207. const auto ctrl_nodes = node->GetInControlNodes();
  2208. if (ctrl_nodes.empty()) {
  2209. GELOGW("Skip no in control node: %s", node->GetName().c_str());
  2210. return SUCCESS;
  2211. }
  2212. const auto IsEnterNode = [](const NodePtr &n) {
  2213. return kEnterOpTypes.count(n->GetType()) > 0;
  2214. };
  2215. const auto IsIterationNode = [](const NodePtr &n) {
  2216. return kNextIterationOpTypes.count(n->GetType()) > 0;
  2217. };
  2218. if (std::any_of(ctrl_nodes.begin(), ctrl_nodes.end(), IsEnterNode)) {
  2219. // Enter --> StreamActive --> StreamMerge
  2220. return CreateMergeEnterGroup(node, node_item);
  2221. } else if (std::any_of(ctrl_nodes.begin(), ctrl_nodes.end(), IsIterationNode)) {
  2222. // NextIteration --> StreamActive {-->} StreamMerge
  2223. return CreateMergeIterationGroup(node, node_item);
  2224. }
  2225. return SUCCESS;
  2226. }
  2227. Status HybridModelBuilder::CreateStreamSwitchGroup(const NodePtr &node, NodeItem *node_item) {
  2228. if (node_item->node_type != STREAMSWITCH) {
  2229. GELOGE(INTERNAL_ERROR, "Called by %s is invalid", node_item->node_type.c_str());
  2230. return INTERNAL_ERROR;
  2231. }
  2232. // Consider as two groups, group[0] set empty for false, group[1] for true.
  2233. node_item->switch_groups_.resize(kStreamSwitchNum);
  2234. for (const auto &dst_node : node->GetOutControlNodes()) {
  2235. GE_CHECK_NOTNULL(dst_node);
  2236. NodeItem *dst_node_item = nullptr;
  2237. GE_CHK_STATUS_RET(GetOrCreateNodeItem(dst_node, &dst_node_item),
  2238. "[%s] failed to get or create node item", dst_node->GetName().c_str());
  2239. node_item->SetCtrlSend(dst_node_item, kStreamSwitchIdx);
  2240. }
  2241. return SUCCESS;
  2242. }
  2243. Status HybridModelBuilder::CreateStreamSwitchNGroup(const NodePtr &node, NodeItem *node_item) {
  2244. if (node_item->node_type != STREAMSWITCHN) {
  2245. GELOGE(INTERNAL_ERROR, "Called by %s is invalid", node->GetName().c_str());
  2246. return INTERNAL_ERROR;
  2247. }
  2248. uint32_t batch_num = 0;
  2249. if (!AttrUtils::GetInt(node->GetOpDesc(), ATTR_NAME_BATCH_NUM, batch_num)) {
  2250. GELOGE(INTERNAL_ERROR, "[%s] Get ATTR_NAME_BATCH_NUM failed", node->GetName().c_str());
  2251. return INTERNAL_ERROR;
  2252. }
  2253. if (batch_num == 0) {
  2254. GELOGW("[%s] Got empty branch for SwitchN, Please check.", node->GetName().c_str());
  2255. return SUCCESS;
  2256. }
  2257. node_item->switch_groups_.resize(batch_num);
  2258. for (const auto &dst_node : node->GetOutControlNodes()) {
  2259. GE_CHECK_NOTNULL(dst_node);
  2260. std::string batch_label;
  2261. if (!AttrUtils::GetStr(dst_node->GetOpDesc(), ATTR_NAME_BATCH_LABEL, batch_label)) {
  2262. GELOGE(INTERNAL_ERROR, "[%s] Get ATTR_NAME_BATCH_LABEL failed", dst_node->GetName().c_str());
  2263. return INTERNAL_ERROR;
  2264. }
  2265. std::string::size_type pos = batch_label.rfind("_");
  2266. if (pos == std::string::npos) {
  2267. GELOGW("[%s] Separator not found in batch label: %s.", dst_node->GetName().c_str(), batch_label.c_str());
  2268. continue;
  2269. }
  2270. ++pos; // Skip Separator
  2271. uint64_t batch_index = std::strtoul(batch_label.data() + pos, nullptr, kDecimal);
  2272. if (batch_index >= batch_num) {
  2273. GELOGW("batch label: %s, batch index: %lu great than batch num: %u", batch_label.c_str(), batch_index, batch_num);
  2274. continue;
  2275. }
  2276. NodeItem *dst_node_item = nullptr;
  2277. GE_CHK_STATUS_RET(GetOrCreateNodeItem(dst_node, &dst_node_item),
  2278. "[%s] failed to get or create node item", dst_node->GetName().c_str());
  2279. node_item->SetCtrlSend(dst_node_item, batch_index);
  2280. }
  2281. return SUCCESS;
  2282. }
  2283. Status HybridModelBuilder::CreateNextIterationGroup(const NodePtr &node, NodeItem *node_item) {
  2284. if (node_item->node_type != NEXTITERATION && node_item->node_type != REFNEXTITERATION) {
  2285. GELOGE(INTERNAL_ERROR, "Called by %s is invalid", node->GetName().c_str());
  2286. return INTERNAL_ERROR;
  2287. }
  2288. return CreateNormalNodeGroup(node, node_item);
  2289. }
  2290. Status HybridModelBuilder::CreateSwitchGroup(const NodePtr &node, NodeItem *node_item) {
  2291. if (node_item->node_type != SWITCH && node_item->node_type != REFSWITCH) {
  2292. GELOGE(INTERNAL_ERROR, "Called by %s is invalid", node->GetName().c_str());
  2293. return INTERNAL_ERROR;
  2294. }
  2295. for (const auto &dst_node : node->GetOutControlNodes()) {
  2296. GE_CHECK_NOTNULL(dst_node);
  2297. NodeItem *dst_node_item = nullptr;
  2298. GE_CHK_STATUS_RET(GetOrCreateNodeItem(dst_node, &dst_node_item),
  2299. "[%s] failed to get or create node item", dst_node->GetName().c_str());
  2300. node_item->SetCtrlSend(dst_node_item, UINT32_MAX);
  2301. }
  2302. // Group switch flow by out put data.
  2303. node_item->switch_groups_.resize(SWITCH_OUTPUT_NUM);
  2304. for (uint32_t i = 0; i < SWITCH_OUTPUT_NUM; ++i) {
  2305. for (const auto &dst_node : node->GetOutDataNodes()) {
  2306. GE_CHECK_NOTNULL(dst_node);
  2307. NodeItem *dst_node_item = nullptr;
  2308. GE_CHK_STATUS_RET(GetOrCreateNodeItem(dst_node, &dst_node_item),
  2309. "[%s] failed to get or create node item", dst_node->GetName().c_str());
  2310. node_item->SetCtrlSend(dst_node_item, i); // take switch data as ctrl.
  2311. }
  2312. }
  2313. return SUCCESS;
  2314. }
  2315. Status HybridModelBuilder::CreateLabelSetGroup(const NodePtr &node, NodeItem *node_item) {
  2316. if (node_item->node_type != LABELSET) {
  2317. GELOGE(INTERNAL_ERROR, "Called by %s is invalid", node->GetName().c_str());
  2318. return INTERNAL_ERROR;
  2319. }
  2320. GELOGE(UNSUPPORTED, "[%s] Not implemented.", node->GetName().c_str());
  2321. return UNSUPPORTED;
  2322. }
  2323. Status HybridModelBuilder::CreateLabelGotoGroup(const NodePtr &node, NodeItem *node_item) {
  2324. if (node_item->node_type != LABELGOTO && node_item->node_type != LABELGOTOEX) {
  2325. GELOGE(INTERNAL_ERROR, "Called by %s is invalid", node->GetName().c_str());
  2326. return INTERNAL_ERROR;
  2327. }
  2328. GELOGE(UNSUPPORTED, "[%s] Not implemented.", node->GetName().c_str());
  2329. return UNSUPPORTED;
  2330. }
  2331. Status HybridModelBuilder::CreateLabelSwitchGroup(const NodePtr &node, NodeItem *node_item) {
  2332. if (node_item->node_type != LABELSWITCH && node_item->node_type != LABELSWITCHBYINDEX) {
  2333. GELOGE(INTERNAL_ERROR, "Called by %s is invalid", node->GetName().c_str());
  2334. return INTERNAL_ERROR;
  2335. }
  2336. GELOGE(UNSUPPORTED, "[%s] Not implemented.", node->GetName().c_str());
  2337. return UNSUPPORTED;
  2338. }
  2339. } // namespace hybrid
  2340. } // namespace ge

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