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

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

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