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

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

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