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

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