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.

graph_manager.cc 134 kB

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
4 years ago
5 years ago
5 years ago
5 years ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
4 years ago
5 years ago
5 years ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
4 years ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222
  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 "graph/manager/graph_manager.h"
  17. #include <pthread.h>
  18. #include <algorithm>
  19. #include <future>
  20. #include <set>
  21. #include <sstream>
  22. #include <string>
  23. #include <thread>
  24. #include "common/math/math_util.h"
  25. #include "common/thread_pool.h"
  26. #include "analyzer/analyzer.h"
  27. #include "graph/common/ge_call_wrapper.h"
  28. #include "graph/common/local_context.h"
  29. #include "graph/common/transop_util.h"
  30. #include "graph/ge_context.h"
  31. #include "graph/ge_global_options.h"
  32. #include "graph/manager/util/rt_context_util.h"
  33. #include "graph/partition/dynamic_shape_partition.h"
  34. #include "graph/passes/enter_pass.h"
  35. #include "graph/partition/stage_partition.h"
  36. #include "graph/passes/addn_pass.h"
  37. #include "graph/passes/bitcast_pass.h"
  38. #include "graph/passes/atomic_addr_clean_pass.h"
  39. #include "graph/passes/attach_stream_label_pass.h"
  40. #include "graph/passes/cast_remove_pass.h"
  41. #include "graph/passes/common_subexpression_elimination_pass.h"
  42. #include "graph/passes/compile_nodes_pass.h"
  43. #include "graph/passes/cond_remove_pass.h"
  44. #include "graph/passes/constant_folding_pass.h"
  45. #include "graph/passes/constant_fuse_same_pass.h"
  46. #include "graph/passes/control_trigger_pass.h"
  47. #include "graph/passes/ctrl_edge_transfer_pass.h"
  48. #include "graph/passes/dimension_adjust_pass.h"
  49. #include "graph/passes/dimension_compute_pass.h"
  50. #include "graph/passes/flow_ctrl_pass.h"
  51. #include "graph/passes/identity_pass.h"
  52. #include "graph/passes/input_output_connection_identify_pass.h"
  53. #include "graph/passes/iterator_op_pass.h"
  54. #include "graph/passes/link_gen_mask_nodes_pass.h"
  55. #include "graph/passes/mark_graph_unknown_status_pass.h"
  56. #include "graph/passes/dynamic_single_op_reset_shape_pass.h"
  57. #include "graph/passes/merge_pass.h"
  58. #include "graph/passes/merge_input_memcpy_pass.h"
  59. #include "graph/passes/merge_to_stream_merge_pass.h"
  60. #include "graph/passes/multi_batch_pass.h"
  61. #include "graph/passes/next_iteration_pass.h"
  62. #include "graph/passes/permute_pass.h"
  63. #include "graph/passes/prune_pass.h"
  64. #include "graph/passes/ref_identity_delete_op_pass.h"
  65. #include "graph/passes/remove_same_const_pass.h"
  66. #include "graph/passes/reshape_recovery_pass.h"
  67. #include "graph/passes/reshape_remove_pass.h"
  68. #include "graph/passes/same_transdata_breadth_fusion_pass.h"
  69. #include "graph/passes/subgraph_pass.h"
  70. #include "graph/passes/switch_data_edges_bypass.h"
  71. #include "graph/passes/switch_dead_branch_elimination.h"
  72. #include "graph/passes/switch_logic_remove_pass.h"
  73. #include "graph/passes/switch_to_stream_switch_pass.h"
  74. #include "graph/passes/transop_breadth_fusion_pass.h"
  75. #include "graph/passes/transop_nearby_allreduce_fusion_pass.h"
  76. #include "graph/passes/transop_symmetry_elimination_pass.h"
  77. #include "graph/passes/transop_without_reshape_fusion_pass.h"
  78. #include "graph/passes/transpose_transdata_pass.h"
  79. #include "graph/passes/useless_control_out_remove_pass.h"
  80. #include "graph/passes/variable_op_pass.h"
  81. #include "graph/passes/variable_ref_delete_op_pass.h"
  82. #include "graph/passes/variable_ref_useless_control_out_delete_pass.h"
  83. #include "graph/passes/end_of_sequence_add_control_pass.h"
  84. #include "graph/passes/subexpression_migration_pass.h"
  85. #include "graph/passes/subgraph_const_migration_pass.h"
  86. #include "graph/passes/unused_args_clean_pass.h"
  87. #include "graph/passes/global_step_insert_pass.h"
  88. #include "graph/passes/memcpy_addr_async_pass.h"
  89. #include "graph/build/label_allocator.h"
  90. #include "graph/utils/tensor_adapter.h"
  91. #include "inc/pass_manager.h"
  92. #include "init/gelib.h"
  93. #include "ir_build/atc_ir_common.h"
  94. #include "graph/common/local_context.h"
  95. #include "graph/common/omg_util.h"
  96. #include "common/formats/utils/formats_trans_utils.h"
  97. namespace {
  98. const char *const kSummary = "Summary";
  99. const char *const kSave = "Save";
  100. const char *const kNetOutput = "NetOutput";
  101. const char *const kVariable = "Variable";
  102. const char *const kSend = "Send";
  103. const char *const kRecv = "Recv";
  104. const char *const kCheckPointForGetVar = "CheckPointGraphForGetVar";
  105. const char *const kCheckPointGraph = "checkpoint_graph";
  106. const char *const kVectorEngine = "VectorEngine";
  107. const char *const kAIcoreEngine = "AIcoreEngine";
  108. const char *const kOffOptimize = "off_optimize";
  109. const int32_t kDynamicDimsTypeIsGetNext = 0;
  110. const int32_t kDynamicDimsTypeIsData = 1;
  111. const int64_t kInvalidDynaimcDimsType = -1;
  112. const char *const kSubstrOfGetNextNosinkName = "IteratorGetNext";
  113. const char *const kShapeDataName = "ascend_mbatch_shape_data";
  114. const char *const kGetNextName = "IteratorV2";
  115. const char *const kExtAttrDataNodes = "data_nodes";
  116. const char *const kExtAttrGetNextNoSink = "getnext_no_sink";
  117. bool IsTailingOptimization() {
  118. string is_tailing_optimization_option;
  119. auto ret = ge::GetContext().GetOption(ge::OPTION_EXEC_ENABLE_TAILING_OPTIMIZATION, is_tailing_optimization_option);
  120. if (ret == ge::GRAPH_SUCCESS) {
  121. GELOGI("Option ge.exec.isTailingOptimization is %s", is_tailing_optimization_option.c_str());
  122. // "1" means it's True from frontend option
  123. return is_tailing_optimization_option == "1";
  124. }
  125. GELOGW("OPTION_EXEC_ENABLE_TAILING_OPTIMIZATION not set, use BFSTopologicalSorting by default.");
  126. return false;
  127. }
  128. ge::Status CheckFpCeilingMode() {
  129. static const std::unordered_set<std::string> kValidFpCeilingMode = {"0", "1", "2"};
  130. string mode;
  131. auto ret = ge::GetContext().GetOption("ge.fpCeilingMode", mode);
  132. if (ret == ge::GRAPH_SUCCESS) {
  133. if (kValidFpCeilingMode.count(mode) == 0) {
  134. GELOGE(ge::GE_GRAPH_OPTIONS_INVALID, "The fp_ceiling_mode %s is invalid, options are 0, 1, and 2.", mode.c_str());
  135. return ge::GE_GRAPH_OPTIONS_INVALID;
  136. }
  137. GELOGI("The parameter fp_ceiling_mode is set to %s.", mode.c_str());
  138. return ge::SUCCESS;
  139. }
  140. GELOGW("The parameter fp_ceiling_mode is not set.");
  141. return ge::SUCCESS;
  142. }
  143. } // namespace
  144. namespace ge {
  145. GraphManager::GraphManager()
  146. : thread_run_flag_(false),
  147. graph_run_listener_(nullptr),
  148. init_flag_(false) {
  149. }
  150. Status GraphManager::Initialize(const std::map<string, string> &options) {
  151. if (init_flag_) {
  152. GELOGW("[Initialize] GraphManager already initialized.");
  153. return SUCCESS;
  154. }
  155. // malloc
  156. graph_run_listener_ = MakeShared<GraphModelListener>(sync_run_mutex_, condition_);
  157. if (graph_run_listener_ == nullptr) {
  158. GELOGE(MEMALLOC_FAILED, "Make shared failed");
  159. return MEMALLOC_FAILED;
  160. }
  161. // graph context
  162. graph_context_ = MakeShared<GraphContext>();
  163. if (graph_context_ == nullptr) {
  164. GELOGE(MEMALLOC_FAILED, "Make shared failed.");
  165. return MEMALLOC_FAILED;
  166. }
  167. // parse option parameters
  168. Status ret = ParseOptions(options);
  169. if (ret != SUCCESS) {
  170. GELOGE(ret, "[Initialize] parse options failed.");
  171. return ret;
  172. }
  173. ret = CheckFpCeilingMode();
  174. if (ret != SUCCESS) {
  175. GELOGE(ret, "[Initialize] Check fp-ceiling-mode options failed.");
  176. return ret;
  177. }
  178. ret = graph_context_->Initialize(options);
  179. if (ret != SUCCESS) {
  180. GELOGE(ret, "[Initialize] GraphContext initialize failed.");
  181. return ret;
  182. }
  183. graph_map_.clear();
  184. cache_helper_map_.clear();
  185. init_flag_ = true;
  186. thread_run_flag_ = true;
  187. prerun_thread_ = std::thread(GraphManager::PreRunThread, this);
  188. run_thread_ = std::thread(GraphManager::RunThread, this);
  189. return SUCCESS;
  190. }
  191. Status GraphManager::Finalize() {
  192. if (!init_flag_) {
  193. GELOGW("GraphManager has not been initialized.");
  194. return SUCCESS;
  195. }
  196. if (graph_executor_.FreeExecuteMemory() != SUCCESS) {
  197. GELOGW("Graph executor FreeExecuteMemory failed, resources may not be released correctly.");
  198. }
  199. StopQueue(this);
  200. if (prerun_thread_.joinable()) {
  201. prerun_thread_.join();
  202. }
  203. if (run_thread_.joinable()) {
  204. run_thread_.join();
  205. }
  206. // check graph whether running or not
  207. Status unload_model_ret = SUCCESS;
  208. Status ret;
  209. rtError_t rt_ret;
  210. for (auto iter = graph_map_.begin(); iter != graph_map_.end(); ++iter) {
  211. GraphNodePtr graph_node = iter->second;
  212. if (graph_node->GetRunFlag()) {
  213. GELOGW("[GraphManager] finalize failed, graphId=%u.", iter->first);
  214. unload_model_ret = GE_GRAPH_GRAPH_IS_RUNNING;
  215. continue;
  216. }
  217. // unload model
  218. auto ge_root_model = graph_node->GetGeRootModel();
  219. if (ge_root_model != nullptr && ge_root_model->GetModelId() != INVALID_MODEL_ID && graph_node->GetLoadFlag()) {
  220. rt_ret = rtSetDevice(GetContext().DeviceId());
  221. if (rt_ret != RT_ERROR_NONE) {
  222. GELOGW("[GraphManager] rtSetDevice failed, modelId=%u, graphId=%u.", ge_root_model->GetModelId(), iter->first);
  223. unload_model_ret = FAILED;
  224. continue;
  225. }
  226. ret = GraphLoader::UnloadModel(ge_root_model->GetModelId());
  227. if (ret != SUCCESS) {
  228. GELOGW("[GraphManager] unload model failed, modelId=%u, graphId=%u.", ge_root_model->GetModelId(), iter->first);
  229. unload_model_ret = ret;
  230. }
  231. rt_ret = rtDeviceReset(GetContext().DeviceId());
  232. if (rt_ret != RT_ERROR_NONE) {
  233. GELOGW("[GraphManager] rtDeviceReset failed, modelId=%u, graphId=%u.", ge_root_model->GetModelId(),
  234. iter->first);
  235. unload_model_ret = FAILED;
  236. continue;
  237. }
  238. }
  239. // clear analyzer saved info(graph level)
  240. auto compute_graph = GraphUtils::GetComputeGraph(*graph_node->GetGraph());
  241. GE_CHECK_NOTNULL(compute_graph);
  242. auto session_id = compute_graph->GetSessionID();
  243. auto graph_id = compute_graph->GetGraphID();
  244. Analyzer::GetInstance()->DestroyGraphJsonObject(session_id, graph_id);
  245. }
  246. graph_map_.clear();
  247. cache_helper_map_.clear();
  248. // graph context
  249. if (graph_context_ != nullptr) {
  250. Status ret_final = graph_context_->Finalize();
  251. if (ret_final != SUCCESS) {
  252. GELOGE(ret_final, "[GraphManager] graph context Finalize failed!");
  253. unload_model_ret = ret_final;
  254. }
  255. }
  256. init_flag_ = false;
  257. return unload_model_ret;
  258. }
  259. Status GraphManager::InitDynamicParams(ComputeGraphPtr &compute_graph) {
  260. for (const auto &node : compute_graph->GetAllNodes()) {
  261. auto op_desc = node->GetOpDesc();
  262. if (op_desc == nullptr) {
  263. continue;
  264. }
  265. GetLocalOmgContext().need_multi_batch = false;
  266. std::string op_type;
  267. auto ret = GetOriginalType(node, op_type);
  268. if (ret != SUCCESS) {
  269. GELOGE(FAILED, "Failed to get node %s original type.", node->GetName().c_str());
  270. return FAILED;
  271. }
  272. if ((op_desc->GetType() == DATA) || (op_type == kGetNextName)) {
  273. GELOGI("Need to process multi batch for compute graph.");
  274. GetLocalOmgContext().need_multi_batch = true;
  275. break;
  276. }
  277. }
  278. if (!options_.input_shape.empty() && !options_.dynamic_dims.empty()) {
  279. if (!ge::ParseInputShape(options_.input_shape, GetLocalOmgContext().input_dims,
  280. GetLocalOmgContext().user_input_dims, true)) {
  281. GELOGE(GRAPH_PARAM_INVALID, "Failed to parse input shape: %s.", options_.input_shape.c_str());
  282. return GRAPH_PARAM_INVALID;
  283. }
  284. GetLocalOmgContext().dynamic_dims = options_.dynamic_dims;
  285. }
  286. if (options_.dynamic_node_type == kDynamicDimsTypeIsGetNext) {
  287. GetLocalOmgContext().dynamic_node_type = GETNEXT;
  288. }
  289. if (options_.dynamic_node_type == kDynamicDimsTypeIsData) {
  290. GetLocalOmgContext().dynamic_node_type = DATA;
  291. }
  292. return SUCCESS;
  293. }
  294. Status GraphManager::AddGraph(const GraphId &graph_id, const Graph &graph,
  295. const std::map<std::string, std::string> &options,
  296. const OmgContext &omg_context) {
  297. if (HasGraphNode(graph_id)) {
  298. GELOGE(GE_GRAPH_GRAPH_ALREADY_EXIST, "[GraphManager] graph exists, graph_id = %u.", graph_id);
  299. return GE_GRAPH_GRAPH_ALREADY_EXIST;
  300. }
  301. auto compute_graph = GraphUtils::GetComputeGraph(graph);
  302. if (compute_graph != nullptr) {
  303. compute_graph->SetGraphID(graph_id);
  304. bool graph_has_been_added = false;
  305. if (AttrUtils::GetBool(*compute_graph, ATTR_NAME_GRAPH_HAS_BEEN_ADDED, graph_has_been_added)
  306. && graph_has_been_added) {
  307. GELOGE(GE_GRAPH_GRAPH_ALREADY_EXIST,
  308. "[GraphManager] same graph object can not be added again, graph_id = %u.", graph_id);
  309. return GE_GRAPH_GRAPH_ALREADY_EXIST;
  310. }
  311. (void)AttrUtils::SetBool(*compute_graph, ATTR_NAME_GRAPH_HAS_BEEN_ADDED, true);
  312. compute_graph_ = compute_graph;
  313. } else {
  314. GELOGE(FAILED, "compute graph is null");
  315. return FAILED;
  316. }
  317. std::string session_graph_id;
  318. if (!AttrUtils::GetStr(*compute_graph, ATTR_NAME_SESSION_GRAPH_ID, session_graph_id) || session_graph_id.empty()) {
  319. session_graph_id = "-1_" + to_string(graph_id);
  320. if (!AttrUtils::SetStr(*compute_graph, ATTR_NAME_SESSION_GRAPH_ID, session_graph_id)) {
  321. GELOGW("Set attribute of compute graph failed.");
  322. }
  323. for (auto &subgraph : compute_graph->GetAllSubgraphs()) {
  324. (void)AttrUtils::SetStr(*subgraph, ATTR_NAME_SESSION_GRAPH_ID, session_graph_id);
  325. }
  326. GELOGD("Get graph session_graph_id attr failed, set session id to default value: [0]");
  327. }
  328. GraphNodePtr graph_node = MakeShared<ge::GraphNode>(graph_id);
  329. GE_IF_BOOL_EXEC(graph_node == nullptr, GELOGE(FAILED, "GraphNode make shared failed");
  330. return FAILED);
  331. std::shared_ptr<Graph> graph_ptr = MakeShared<ge::Graph>(graph);
  332. GE_IF_BOOL_EXEC(graph_ptr == nullptr, GELOGE(FAILED, "GraphPtr make shared failed");
  333. return FAILED);
  334. graph_node->SetGraph(graph_ptr);
  335. graph_node->SetOptions(options);
  336. AddGraphNode(graph_id, graph_node);
  337. AddLocalOmgContext(graph_id, omg_context);
  338. if (!options_.output_datatype.empty()) {
  339. GetLocalOmgContext().output_type = options_.output_datatype;
  340. }
  341. if (InitDynamicParams(compute_graph) != SUCCESS) {
  342. GELOGE(GRAPH_PARAM_INVALID, "Failed to init params when online infer is dynamic.");
  343. return GRAPH_PARAM_INVALID;
  344. }
  345. CompilerStages &stages = GetCompilerStages(graph_id);
  346. stages.preparer.SetOptions(options_);
  347. Status status = stages.optimizer.SetOptions(options_);
  348. if (status != SUCCESS) {
  349. GELOGE(status, "Graph optimizer set options failed.");
  350. return status;
  351. }
  352. stages.builder.SetOptions(options_);
  353. var_acc_ctrl_.AddGraph(graph_id, compute_graph);
  354. return SUCCESS;
  355. }
  356. Status GraphManager::AddGraphWithCopy(const GraphId &graph_id, const Graph &graph,
  357. const std::map<std::string, std::string> &options,
  358. const OmgContext &omg_context) {
  359. if (HasGraphNode(graph_id)) {
  360. GELOGE(GE_GRAPH_GRAPH_ALREADY_EXIST, "[GraphManager] graph exists, graph_id = %u.", graph_id);
  361. return GE_GRAPH_GRAPH_ALREADY_EXIST;
  362. }
  363. auto compute_graph = GraphUtils::GetComputeGraph(graph);
  364. if (compute_graph != nullptr) {
  365. compute_graph->SetGraphID(graph_id);
  366. bool graph_has_been_added = false;
  367. if (AttrUtils::GetBool(*compute_graph, ATTR_NAME_GRAPH_HAS_BEEN_ADDED, graph_has_been_added)
  368. && graph_has_been_added) {
  369. GELOGE(GE_GRAPH_GRAPH_ALREADY_EXIST,
  370. "[GraphManager] same graph object can not be added again, graph_id = %u.", graph_id);
  371. return GE_GRAPH_GRAPH_ALREADY_EXIST;
  372. }
  373. } else {
  374. GELOGE(FAILED, "compute graph is null");
  375. return FAILED;
  376. }
  377. std::vector<NodePtr> input_nodes;
  378. std::vector<NodePtr> output_nodes;
  379. auto new_compute_graph = GraphUtils::CloneGraph(compute_graph, "", input_nodes, output_nodes);
  380. std::string session_graph_id;
  381. if (!AttrUtils::GetStr(*new_compute_graph, ATTR_NAME_SESSION_GRAPH_ID, session_graph_id) ||
  382. session_graph_id.empty()) {
  383. session_graph_id = "-1_" + to_string(graph_id);
  384. if (!AttrUtils::SetStr(*new_compute_graph, ATTR_NAME_SESSION_GRAPH_ID, session_graph_id)) {
  385. GELOGW("Set attribute of compute graph failed.");
  386. }
  387. for (auto &subgraph : new_compute_graph->GetAllSubgraphs()) {
  388. (void)AttrUtils::SetStr(*subgraph, ATTR_NAME_SESSION_GRAPH_ID, session_graph_id);
  389. }
  390. GELOGD("Get graph session_graph_id attr failed, set session id to default value: [0]");
  391. }
  392. GraphNodePtr graph_node = MakeShared<ge::GraphNode>(graph_id);
  393. if (graph_node == nullptr) {
  394. GELOGE(FAILED, "GraphNode make shared failed");
  395. return FAILED;
  396. }
  397. std::shared_ptr<Graph> graph_ptr = GraphUtils::CreateGraphPtrFromComputeGraph(new_compute_graph);
  398. if (graph_ptr == nullptr) {
  399. GELOGE(FAILED, "GraphPtr make shared failed");
  400. return FAILED;
  401. }
  402. graph_node->SetGraph(graph_ptr);
  403. graph_node->SetOptions(options);
  404. AddGraphNode(graph_id, graph_node);
  405. AddLocalOmgContext(graph_id, omg_context);
  406. if (!options_.output_datatype.empty()) {
  407. GetLocalOmgContext().output_type = options_.output_datatype;
  408. }
  409. CompilerStages &stages = GetCompilerStages(graph_id);
  410. stages.preparer.SetOptions(options_);
  411. Status status = stages.optimizer.SetOptions(options_);
  412. if (status != SUCCESS) {
  413. GELOGE(status, "Graph optimizer set options failed.");
  414. return status;
  415. }
  416. stages.builder.SetOptions(options_);
  417. var_acc_ctrl_.AddGraph(graph_id, new_compute_graph);
  418. return SUCCESS;
  419. }
  420. Status GraphManager::MergeSubGraph(ComputeGraphPtr &compute_graph, const ge::ComputeGraphPtr &original_compute_graph,
  421. GraphId root_graph_id) {
  422. std::shared_ptr<GELib> instance_ptr = ge::GELib::GetInstance();
  423. GraphPartitioner &partitioner = GetCompilerStages(root_graph_id).partitioner;
  424. if (instance_ptr != nullptr && instance_ptr->InitFlag()) {
  425. Status ret = partitioner.MergeAfterSubGraphOptimization(compute_graph, original_compute_graph);
  426. if (ret != SUCCESS) {
  427. GELOGE(ret, "merge end and placeholder after subGraph optimization failed.");
  428. return FAILED;
  429. }
  430. Status ret_topo = compute_graph->TopologicalSorting();
  431. if (ret_topo != SUCCESS) {
  432. GELOGE(ret_topo, "[GraphManager]: TopologicalSorting the merged graph failed.");
  433. return ret_topo;
  434. }
  435. } else {
  436. auto subgraph_list = partitioner.GetSubGraphMap();
  437. if (subgraph_list.find(original_compute_graph) != subgraph_list.end() &&
  438. !subgraph_list[original_compute_graph].empty() && subgraph_list[original_compute_graph][0] != nullptr) {
  439. compute_graph = subgraph_list[original_compute_graph][0]->GetSubGraph();
  440. }
  441. }
  442. return SUCCESS;
  443. }
  444. Status GraphManager::CopySubGraphAndMarkFusion(const ComputeGraphPtr &compute_graph,
  445. Graph2SubGraphInfoList &sub_graph_map,
  446. std::unordered_map<std::string, ComputeGraphPtr> &copy_graphs) {
  447. GE_CHECK_NOTNULL(compute_graph);
  448. vector<ComputeGraphPtr> old_compute_graphs;
  449. const auto &root_subgraph_list = sub_graph_map[compute_graph];
  450. for (const auto &subgraph : root_subgraph_list) {
  451. old_compute_graphs.emplace_back(subgraph->GetSubGraph());
  452. }
  453. for (const auto &function_graph : compute_graph->GetAllSubgraphs()) {
  454. const auto &subgraph_list = sub_graph_map[function_graph];
  455. for (const auto &subgraph : subgraph_list) {
  456. old_compute_graphs.emplace_back(subgraph->GetSubGraph());
  457. }
  458. }
  459. for (const auto &old_compute_graph : old_compute_graphs) {
  460. std::vector<NodePtr> input_nodes;
  461. std::vector<NodePtr> output_nodes;
  462. ComputeGraphPtr new_compute_graph = GraphUtils::CloneGraph(old_compute_graph, "", input_nodes, output_nodes);
  463. if (new_compute_graph == nullptr) {
  464. GELOGE(INTERNAL_ERROR, "Clone graph failed.");
  465. return INTERNAL_ERROR;
  466. }
  467. copy_graphs.emplace(old_compute_graph->GetName(), new_compute_graph);
  468. if (!AttrUtils::SetBool(old_compute_graph, ATTR_NAME_NEED_LX_FUSION, true)) {
  469. GELOGE(INTERNAL_ERROR, "Set attr lx_fusion to graph failed.");
  470. return INTERNAL_ERROR;
  471. }
  472. }
  473. GELOGI("Copy %zu graphs successfully.", copy_graphs.size());
  474. return SUCCESS;
  475. }
  476. Status GraphManager::OptimizeSubGraphWithMultiThreads(ComputeGraphPtr compute_graph,
  477. Graph2SubGraphInfoList &sub_graph_map, uint64_t session_id) {
  478. GE_CHECK_NOTNULL(compute_graph);
  479. // use default 16 multi thread
  480. const uint32_t thread_num = 16;
  481. ThreadPool executor(thread_num);
  482. std::vector<std::future<Status>> vector_future;
  483. const auto &root_subgraph_list = sub_graph_map[compute_graph];
  484. std::string op_compile_strategy;
  485. (void)AttrUtils::GetStr(compute_graph, ATTR_NAME_OP_COMPILE_STRATEGY, op_compile_strategy);
  486. GELOGD("OptimizeSubGraphWithMultiThreads Process op_compile_strategy:%s", op_compile_strategy.c_str());
  487. for (const auto &subgraph : root_subgraph_list) {
  488. if (!op_compile_strategy.empty()) {
  489. (void) AttrUtils::SetStr(subgraph->GetSubGraph(), ATTR_NAME_OP_COMPILE_STRATEGY, op_compile_strategy);
  490. }
  491. std::future<Status> f = executor.commit(GraphManager::ProcessSubGraphWithMultiThreads, this,
  492. compute_graph->GetGraphID(), subgraph,
  493. compute_graph->GetName(), session_id,
  494. GetThreadLocalContext());
  495. if (!f.valid()) {
  496. GELOGE(FAILED, "Future is invalid");
  497. return FAILED;
  498. }
  499. vector_future.emplace_back(std::move(f));
  500. }
  501. for (auto &function_graph : compute_graph->GetAllSubgraphs()) {
  502. auto subgraph_list = sub_graph_map[function_graph];
  503. for (const auto &subgraph : subgraph_list) {
  504. if (!op_compile_strategy.empty()) {
  505. (void) AttrUtils::SetStr(subgraph->GetSubGraph(), ATTR_NAME_OP_COMPILE_STRATEGY, op_compile_strategy);
  506. }
  507. std::future<Status> f = executor.commit(GraphManager::ProcessSubGraphWithMultiThreads, this,
  508. compute_graph->GetGraphID(), subgraph,
  509. compute_graph->GetName(), session_id,
  510. GetThreadLocalContext());
  511. if (!f.valid()) {
  512. GELOGE(FAILED, "Future is invalid");
  513. return FAILED;
  514. }
  515. vector_future.emplace_back(std::move(f));
  516. }
  517. }
  518. GELOGD("All sub graph num is %zu", vector_future.size());
  519. for (size_t i = 0; i < vector_future.size(); ++i) {
  520. Status ret_status = vector_future[i].get();
  521. if (ret_status != SUCCESS) {
  522. GELOGE(ret_status, "subgraph %zu optimize failed", i);
  523. return ret_status;
  524. }
  525. }
  526. return SUCCESS;
  527. }
  528. bool GraphManager::CheckAllFusionOptimizeSuccess(const ComputeGraphPtr &compute_graph,
  529. Graph2SubGraphInfoList &sub_graph_map) {
  530. if (compute_graph == nullptr) {
  531. GELOGE(PARAM_INVALID, "Input param compute_graph is nullptr.");
  532. return false;
  533. }
  534. /// 1. FE will set attr optimize_group with true(false) while lx fusion is success(fail);
  535. /// 2. FE will not set attr optimize_group while fe.ini set l2fusion enable false;
  536. /// 3. Other engine will not set attr optimize_group.
  537. const auto &root_subgraph_list = sub_graph_map[compute_graph];
  538. for (const auto &subgraph : root_subgraph_list) {
  539. bool optimize_group = true;
  540. (void) AttrUtils::GetBool(subgraph->GetSubGraph(), ATTR_NAME_OPTIMIZE_GROUP, optimize_group);
  541. if (!optimize_group) {
  542. GELOGW("Run lx optimize for subgraph:%s failed.", subgraph->GetSubGraph()->GetName().c_str());
  543. return false;
  544. }
  545. }
  546. for (auto &function_graph : compute_graph->GetAllSubgraphs()) {
  547. const auto &subgraph_list = sub_graph_map[function_graph];
  548. for (const auto &subgraph : subgraph_list) {
  549. bool optimize_group = true;
  550. (void) AttrUtils::GetBool(subgraph->GetSubGraph(), ATTR_NAME_OPTIMIZE_GROUP, optimize_group);
  551. if (!optimize_group) {
  552. GELOGW("Run lx optimize for subgraph:%s failed.", subgraph->GetSubGraph()->GetName().c_str());
  553. return false;
  554. }
  555. }
  556. }
  557. GELOGI("All subgraph are optimized successfully, no need to reuse buffer optimize.");
  558. return true;
  559. }
  560. Status GraphManager::ReplaceSubgraphWithOriGraph(const ComputeGraphPtr &compute_graph,
  561. Graph2SubGraphInfoList &sub_graph_map,
  562. std::unordered_map<std::string, ComputeGraphPtr> &copy_graphs) {
  563. GE_CHECK_NOTNULL(compute_graph);
  564. const auto &root_subgraph_list = sub_graph_map[compute_graph];
  565. for (const auto &subgraph : root_subgraph_list) {
  566. auto iter = copy_graphs.find(subgraph->GetSubGraph()->GetName());
  567. if (iter == copy_graphs.end()) {
  568. GELOGE(FAILED, "Can not find subgraph:%s in copy graphs.", subgraph->GetSubGraph()->GetName().c_str());
  569. return FAILED;
  570. }
  571. subgraph->SetSubGraph(iter->second);
  572. }
  573. for (auto &function_graph : compute_graph->GetAllSubgraphs()) {
  574. const auto &subgraph_list = sub_graph_map[function_graph];
  575. for (const auto &subgraph : subgraph_list) {
  576. auto iter = copy_graphs.find(subgraph->GetSubGraph()->GetName());
  577. if (iter == copy_graphs.end()) {
  578. GELOGE(FAILED, "Can not find subgraph:%s in copy graphs.", subgraph->GetSubGraph()->GetName().c_str());
  579. return FAILED;
  580. }
  581. subgraph->SetSubGraph(iter->second);
  582. }
  583. }
  584. GELOGI("All subgraphs are successfully replaced.");
  585. return SUCCESS;
  586. }
  587. Status GraphManager::SetSubgraph(uint64_t session_id, ComputeGraphPtr compute_graph, GraphPartitioner &partitioner) {
  588. GE_CHECK_NOTNULL(compute_graph);
  589. PassManager pass_for_dynamic_shape_reset_optimize;
  590. GE_CHK_STATUS_RET(pass_for_dynamic_shape_reset_optimize.AddPass(
  591. "SetSubgraph::AfterSetSubgraph::DynamicSingleOpResetShapePass", new (std::nothrow) DynamicSingleOpResetShapePass))
  592. GE_TIMESTAMP_START(pass_for_dynamic_shape_reset_optimize);
  593. Status ret = pass_for_dynamic_shape_reset_optimize.Run(compute_graph);
  594. GE_TIMESTAMP_END(pass_for_dynamic_shape_reset_optimize, "SetSubgraph::AfterSetSubgraph");
  595. if (ret != SUCCESS && ret != NOT_CHANGED) {
  596. GELOGE(ret, "Run passes when optimize subgraph failed");
  597. return ret;
  598. }
  599. auto sub_graph_map = partitioner.GetSubGraphMap();
  600. GELOGD("Directly optimize subgraph with build mode:%s, and step:%s.",
  601. options_.build_mode.c_str(),
  602. options_.build_step.c_str());
  603. ret = OptimizeSubGraphWithMultiThreads(compute_graph, sub_graph_map, session_id);
  604. if (ret != SUCCESS) {
  605. GELOGE(ret, "Multiply optimize subgraph failed");
  606. return ret;
  607. }
  608. return SUCCESS;
  609. }
  610. #define GM_RUN_AND_DUMP_PERF(name, func, ...) \
  611. do { \
  612. GE_RUN_PERF(GraphManager, func, __VA_ARGS__); \
  613. GE_DUMP(compute_graph, "PreRunAfter" name); \
  614. GELOGI("Run %s on graph %s(%u) success.", name, compute_graph->GetName().c_str(), graph_node->GetGraphId()); \
  615. } while (0)
  616. Status GraphManager::PreRunOptimizeOriginalGraph(const GraphNodePtr &graph_node, const std::vector<GeTensor> &inputs,
  617. ge::ComputeGraphPtr &compute_graph, uint64_t session_id) {
  618. GE_CHECK_NOTNULL(graph_node);
  619. GE_CHECK_NOTNULL(compute_graph);
  620. CompilerStages &stages = GetCompilerStages(graph_node->GetGraphId());
  621. GM_RUN_AND_DUMP_PERF("OptimizeGraphPrepare", stages.optimizer.OptimizeOriginalGraphForQuantize, compute_graph);
  622. GM_RUN_AND_DUMP_PERF("HandleSummaryOp", stages.optimizer.HandleSummaryOp, compute_graph);
  623. GM_RUN_AND_DUMP_PERF("Prepare", stages.preparer.PrepareDynShape, graph_node->GetGraph(), inputs, compute_graph,
  624. session_id);
  625. GM_RUN_AND_DUMP_PERF("OptimizeOriginalGraph", stages.optimizer.OptimizeOriginalGraph, compute_graph);
  626. GM_RUN_AND_DUMP_PERF("PrepareRunningFormatRefiner", stages.preparer.PrepareRunningFormatRefiner);
  627. GM_RUN_AND_DUMP_PERF("RefineRunningFormat", stages.optimizer.OptimizeOriginalGraphJudgeInsert, compute_graph);
  628. GM_RUN_AND_DUMP_PERF("SubexpressionMigration", SubexpressionMigration, compute_graph);
  629. GE_RUN(GraphManager, stages.preparer.RecordAIPPInfo, compute_graph);
  630. if (IsTailingOptimization()) {
  631. GM_RUN_AND_DUMP_PERF("OptimizeSwitchOp", stages.preparer.SwitchOpOptimize, compute_graph);
  632. }
  633. GM_RUN_AND_DUMP_PERF("Optimize1", OptimizeStage1, compute_graph);
  634. GM_RUN_AND_DUMP_PERF("InferShape2", compute_graph->InferShapeInNeed);
  635. PassManager graph_pass;
  636. GE_CHK_STATUS_RET(graph_pass.AddPass("PreRun::CtrlEdgeTransferPass", new (std::nothrow) CtrlEdgeTransferPass))
  637. GE_CHK_STATUS_RET(graph_pass.Run(compute_graph));
  638. GE_CHK_STATUS_RET(stages.optimizer.IdentifyReference(compute_graph), "Identify reference failed.");
  639. GELOGD("PreRun:PreRunOptimizeOriginalGraph success.");
  640. return SUCCESS;
  641. }
  642. Status GraphManager::PreRunOptimizeSubGraph(const GraphNodePtr &graph_node,
  643. ge::ComputeGraphPtr &compute_graph,
  644. uint64_t session_id) {
  645. GE_CHECK_NOTNULL(graph_node);
  646. GE_CHECK_NOTNULL(compute_graph);
  647. GM_RUN_AND_DUMP_PERF("OptimizeSubgraph", OptimizeSubgraph, graph_node, compute_graph, session_id);
  648. // Dump graph to tuning path
  649. if (options_.build_mode == BUILD_MODE_TUNING && options_.build_step == BUILD_STEP_AFTER_UB_MATCH) {
  650. std::string tuning_path;
  651. (void) GetContext().GetOption(TUNING_PATH, tuning_path);
  652. GELOGD("Dump path:%s.", tuning_path.c_str());
  653. GraphUtils::DumpGEGraph(compute_graph, "", true, tuning_path);
  654. }
  655. GELOGD("PreRun:PreRunOptimizeSubGraph success.");
  656. return SUCCESS;
  657. }
  658. Status GraphManager::PreRunAfterOptimizeSubGraph(const GraphNodePtr &graph_node, ComputeGraphPtr &compute_graph,
  659. GeRootModelPtr &ge_root_model, uint64_t session_id) {
  660. GE_CHECK_NOTNULL(graph_node);
  661. GE_CHECK_NOTNULL(compute_graph);
  662. GM_RUN_AND_DUMP_PERF("Optimize2", OptimizeStage2, compute_graph);
  663. GM_RUN_AND_DUMP_PERF("OptimizeGraphBeforeBuildForRts",
  664. GetCompilerStages(graph_node->GetGraphId()).optimizer.OptimizeGraphBeforeBuildForRts,
  665. compute_graph);
  666. Status ret = compute_graph->TopologicalSorting();
  667. if (ret != SUCCESS) {
  668. GELOGE(ret, "Graph topological sort failed, ret:%d.", ret);
  669. return ret;
  670. }
  671. GM_RUN_AND_DUMP_PERF("Build", Build, graph_node, compute_graph, ge_root_model, session_id);
  672. GELOGD("PreRun:PreRunAfterOptimizeSubGraph success.");
  673. return SUCCESS;
  674. }
  675. Status GraphManager::SetRtContext(rtContext_t rt_context, rtCtxMode_t mode, uint64_t session_id, uint32_t graph_id) {
  676. GELOGD("set rt_context, session id: %lu, graph id: %u, mode %d, device id:%u.", session_id, graph_id,
  677. static_cast<int>(mode), ge::GetContext().DeviceId());
  678. rtError_t rt_ret = rtCtxCreate(&rt_context, mode, ge::GetContext().DeviceId());
  679. if (rt_ret != RT_ERROR_NONE) {
  680. GELOGE(FAILED, "Call rt api failed, ret: 0x%X", rt_ret);
  681. return FAILED;
  682. }
  683. rt_ret = rtCtxSetCurrent(rt_context);
  684. if (rt_ret != RT_ERROR_NONE) {
  685. GELOGE(FAILED, "Call rt api failed, ret: 0x%X", rt_ret);
  686. return FAILED;
  687. }
  688. RtContextUtil::GetInstance().AddRtContext(session_id, graph_id, rt_context);
  689. return SUCCESS;
  690. }
  691. Status GraphManager::PreRun(const GraphNodePtr &graph_node, const std::vector<GeTensor> &inputs,
  692. GeRootModelPtr &ge_root_model, uint64_t session_id) {
  693. GE_CHECK_NOTNULL(graph_node);
  694. GE_CHECK_NOTNULL(graph_node->GetGraph());
  695. auto compute_graph = GraphUtils::GetComputeGraph(*graph_node->GetGraph());
  696. GE_CHECK_NOTNULL(compute_graph);
  697. compute_graph->SetSessionID(session_id);
  698. auto analyzer_instance = Analyzer::GetInstance();
  699. GE_CHK_STATUS_RET(analyzer_instance->BuildJsonObject(session_id, compute_graph->GetGraphID()),
  700. "BuildJsonObject Failed")
  701. GEEVENT("PreRun start, graph node size %zu, session id %lu, graph id %u, graph name %s",
  702. compute_graph->GetDirectNodesSize(), session_id, compute_graph->GetGraphID(),
  703. compute_graph->GetName().c_str());
  704. GE_DUMP(compute_graph, "PreRunBegin");
  705. // rtContext_t
  706. Status ret = SetRtContext(rtContext_t(), RT_CTX_GEN_MODE, session_id, compute_graph->GetGraphID());
  707. if (ret != SUCCESS) {
  708. GELOGE(ret, "Set rt context failed.");
  709. return ret;
  710. }
  711. /// 1. BUILD_MODE_TUNING with BUILD_STEP_AFTER_UB_MATCH no need PreRunOptimizeOriginalGraph;
  712. /// 2. BUILD_MODE_TUNING with BUILD_STEP_AFTER_MERGE no need PreRunOptimizeOriginalGraph.
  713. /// 3. BUILD_MODE_TUNING with BUILD_STEP_AFTER_BUILDER_SUB no need PreRunOptimizeOriginalGraph.
  714. bool run_optimize_original_graph = !((options_.build_mode == BUILD_MODE_TUNING) &&
  715. (options_.build_step == BUILD_STEP_AFTER_UB_MATCH ||
  716. options_.build_step == BUILD_STEP_AFTER_MERGE ||
  717. options_.build_step == BUILD_STEP_AFTER_BUILDER_SUB));
  718. if (run_optimize_original_graph) {
  719. Status ret = PreRunOptimizeOriginalGraph(graph_node, inputs, compute_graph, session_id);
  720. if (ret != SUCCESS) {
  721. GELOGE(ret, "Run PreRunOptimizeOriginalGraph failed for graph:%s.", compute_graph->GetName().c_str());
  722. return ret;
  723. }
  724. }
  725. ret = PreRunOptimizeSubGraph(graph_node, compute_graph, session_id);
  726. if (ret != SUCCESS) {
  727. GELOGE(ret, "Run PreRunOptimizeSubGraph failed for graph:%s.", compute_graph->GetName().c_str());
  728. return ret;
  729. }
  730. /// 1. BUILD_MODE_TUNING with BUILD_STEP_BEFORE_UB_MATCH no need PreRunAfterOptimizeSubGraph;
  731. /// 2. BUILD_MODE_TUNING with BUILD_STEP_AFTER_BUILDER no need PreRunAfterOptimizeSubGraph.
  732. /// 3. BUILD_MODE_TUNING with BUILD_STEP_AFTER_BUILDER_SUB no need PreRunAfterOptimizeSubGraph.
  733. bool run_after_optimize_subgraph = !((options_.build_mode == BUILD_MODE_TUNING) &&
  734. (options_.build_step == BUILD_STEP_BEFORE_UB_MATCH ||
  735. options_.build_step == BUILD_STEP_AFTER_BUILDER ||
  736. options_.build_step == BUILD_STEP_AFTER_BUILDER_SUB));
  737. if (run_after_optimize_subgraph) {
  738. Status ret = PreRunAfterOptimizeSubGraph(graph_node, compute_graph, ge_root_model, session_id);
  739. if (ret != SUCCESS) {
  740. GELOGE(ret, "Run PreRunAfterOptimizeSubGraph failed for graph:%s.", compute_graph->GetName().c_str());
  741. return ret;
  742. }
  743. }
  744. // when set incre build, save om model and var manager
  745. GeModelPtr ge_model = nullptr;
  746. auto save_ret = SaveCacheAfterBuild(graph_node->GetGraphId(), compute_graph, ge_model);
  747. if (save_ret != SUCCESS) {
  748. GELOGW("Fail to save cache.");
  749. }
  750. GEEVENT("[GEPERFTRACE] GE PreRun End");
  751. return SUCCESS;
  752. }
  753. Status GraphManager::SubexpressionMigration(ComputeGraphPtr &compute_graph) {
  754. PassManager pass_manager;
  755. GE_CHK_STATUS_RET(pass_manager.AddPass("SubexpressionMigrationPass", new (std::nothrow) SubexpressionMigrationPass));
  756. GE_CHK_STATUS_RET(pass_manager.AddPass("UnusedArgsCleanPass", new (std::nothrow) UnusedArgsCleanPass));
  757. GE_TIMESTAMP_START(SubexpressionMigrationPass);
  758. auto ret = pass_manager.Run(compute_graph);
  759. GE_TIMESTAMP_END(SubexpressionMigrationPass, "GraphManager::SubexpressionMigration");
  760. if (ret != SUCCESS && ret != NOT_CHANGED) {
  761. GELOGE(ret, "Run SubexpressionMigrationPass failed, ret:%u.", ret);
  762. return ret;
  763. }
  764. return SUCCESS;
  765. }
  766. Status GraphManager::StartForRunGraph(const GraphNodePtr &graph_node, const std::vector<GeTensor> &inputs,
  767. GeRootModelPtr &ge_root_model, uint64_t session_id) {
  768. // it will not execute graph prreprocess, optimize, parition, build if the graph has built successful.
  769. Status ret = SUCCESS;
  770. if (IsGraphNeedBuild(graph_node)) {
  771. if (graph_node->GetBuildFlag()) {
  772. GELOGE(PARAM_INVALID,
  773. "The graph %u need to re-build, you should remove it from GE "
  774. "first, then AddGraph again and rebuild it.",
  775. graph_node->GetGraphId());
  776. return PARAM_INVALID;
  777. }
  778. GeModelPtr ge_model = nullptr;
  779. // check need incre build.
  780. ret = IncreBuild(graph_node, ge_model);
  781. if (ret != SUCCESS) {
  782. ret = PreRun(graph_node, inputs, ge_root_model, session_id);
  783. // release rts generate context
  784. RtContextUtil::GetInstance().DestroyRtContexts(session_id, graph_node->GetGraphId());
  785. if (ret != SUCCESS) {
  786. GELOGE(ret, "PreRun Failed.");
  787. return ret;
  788. }
  789. }
  790. if (!graph_node->IsAsync()) {
  791. ret = LoadGraph(ge_root_model, graph_node);
  792. } else {
  793. ret = LoadGraphAsync(ge_root_model, graph_node);
  794. }
  795. if (ret != SUCCESS) {
  796. GELOGE(ret, "LoadGraph Failed.");
  797. return ret;
  798. }
  799. graph_node->SetBuildFlag(true);
  800. var_acc_ctrl_.SetGraphBuildEnd(graph_node->GetGraphId());
  801. } else if (!graph_node->GetLoadFlag()) {
  802. GeRootModelPtr ge_root_model_ptr = graph_node->GetGeRootModel();
  803. if (!graph_node->IsAsync()) {
  804. ret = LoadGraph(ge_root_model_ptr, graph_node);
  805. } else {
  806. ret = LoadGraphAsync(ge_root_model_ptr, graph_node);
  807. }
  808. if (ret != SUCCESS) {
  809. GELOGE(ret, "LoadGraph Failed.");
  810. return ret;
  811. }
  812. }
  813. return ret;
  814. }
  815. Status GraphManager::LoadGraph(const GeRootModelPtr &ge_root_model, const GraphNodePtr &graph_node) {
  816. GELOGI("[LoadGraph] run_graph_flag[%d], graph_id[%u]", options_.run_graph_flag, graph_node->GetGraphId());
  817. if (options_.run_graph_flag && ge_root_model != nullptr) {
  818. // synchronization run graph with model
  819. std::shared_ptr<GraphModelListener> model_listener = GetModelListener();
  820. ModelIdInfo model_id_info;
  821. bool is_unknown_shape = false;
  822. GE_CHK_STATUS_RET(ge_root_model->CheckIsUnknownShape(is_unknown_shape));
  823. if (!is_unknown_shape) {
  824. if (getenv(kEnvGeuseStaticMemory) != nullptr) {
  825. GELOGI("[LoadGraph] GE_USE_STATIC_MEMORY is seted.");
  826. } else {
  827. auto root_graph = ge_root_model->GetRootGraph();
  828. GE_CHECK_NOTNULL(root_graph);
  829. auto name_to_model = ge_root_model->GetSubgraphInstanceNameToModel();
  830. GeModelPtr ge_model = name_to_model[root_graph->GetName()];
  831. GE_CHK_STATUS_RET(CheckAndReleaseMemory(ge_model, graph_node));
  832. }
  833. }
  834. GE_TIMESTAMP_START(LoadGraph);
  835. Status ret = GraphLoader::LoadModelOnline(model_id_info.model_id, ge_root_model, model_listener);
  836. GE_TIMESTAMP_EVENT_END(LoadGraph, "GraphManager::LoadGraph");
  837. if (ret != SUCCESS) {
  838. GELOGE(ret, "[StartForRunGraph] LoadGraph Failed");
  839. graph_node->SetRunFlag(false);
  840. return ret;
  841. }
  842. graph_node->SetLoadFlag(true);
  843. ge_root_model->SetModelId(model_id_info.model_id);
  844. graph_node->SetGeRootModel(ge_root_model);
  845. }
  846. return SUCCESS;
  847. }
  848. Status GraphManager::LoadFromCache(const GraphNodePtr &graph_node, const ModelCacheHelperPtr &cache_helper,
  849. GeModelPtr &ge_model) {
  850. auto graph_id = graph_node->GetGraphId();
  851. auto ret = cache_helper->LoadOmModelFromCache(ge_model);
  852. if (ret != SUCCESS) {
  853. GELOGW("Fail to load om model from cache.");
  854. if (cache_helper->ClearCache(graph_id) != SUCCESS) {
  855. GELOGW("Fail to clear cache of graph %u.", graph_id);
  856. }
  857. return FAILED;
  858. }
  859. ret = cache_helper->RecoverVarManagerFromCache();
  860. if (ret != SUCCESS) {
  861. GELOGW("Fail to recover VarManager from cache.");
  862. if (cache_helper->ClearCache(graph_id) != SUCCESS) {
  863. GELOGW("Fail to clear cache of graph %u.", graph_id);
  864. }
  865. return FAILED;
  866. }
  867. ComputeGraphPtr compute_graph_in_model = GraphUtils::GetComputeGraph(ge_model->GetGraph());
  868. if (compute_graph_in_model == nullptr) {
  869. GELOGW("Error occurred when get compute graph from om, abandon.");
  870. return FAILED;
  871. } else {
  872. graph_node->SetComputeGraph(compute_graph_in_model);
  873. graph_node->SetGeModel(ge_model);
  874. GELOGI("Load model and graph form cache om file.");
  875. }
  876. return SUCCESS;
  877. }
  878. Status GraphManager::SaveCacheBeforeBuild(uint32_t graph_id, const ModelCacheHelperPtr &cache_helper) {
  879. auto ret = cache_helper->SaveCacheInfoToCache();
  880. if (ret != SUCCESS) {
  881. GELOGW("Fail to save cache info of graph[%d] to cache.", graph_id);
  882. return FAILED;
  883. }
  884. ret = cache_helper->SaveVarManagerToCache(true);
  885. if (ret != SUCCESS) {
  886. GELOGW("Fail to save var manager to cache.");
  887. cache_helper->ClearCache(graph_id);
  888. return FAILED;
  889. }
  890. GELOGI("Cache files have been saved.");
  891. return SUCCESS;
  892. }
  893. Status GraphManager::SaveCacheAfterBuild(uint32_t graph_id, ge::ComputeGraphPtr graph, GeModelPtr &ge_model) {
  894. std::shared_ptr<GELib> instance_ptr = ge::GELib::GetInstance();
  895. if ((instance_ptr == nullptr) || !instance_ptr->InitFlag()) {
  896. GELOGW("GELib not initialized.");
  897. return FAILED;
  898. }
  899. if (instance_ptr->IsIncreBuild()) {
  900. std::lock_guard<std::mutex> lock(member_mutex_);
  901. auto iter = cache_helper_map_.find(graph_id);
  902. if (iter == cache_helper_map_.end()) {
  903. GELOGW("Can not find ModelCacheHelper of graph[%u]", graph_id);
  904. return FAILED;
  905. } else {
  906. ModelCacheHelperPtr cache_helper = iter->second;
  907. auto ret = cache_helper->RefreshComputeGraph(graph);
  908. if (ret != SUCCESS) {
  909. cache_helper->ClearCache(graph_id);
  910. GELOGW("Fail to refresh cache helper's compute graph");
  911. return FAILED;
  912. }
  913. ret = cache_helper->SaveVarManagerToCache(false);
  914. if (ret != SUCCESS) {
  915. cache_helper->ClearCache(graph_id);
  916. GELOGW("Fail to save VarManager to cache");
  917. return FAILED;
  918. }
  919. ret = cache_helper->SaveOmModelToCache(ge_model);
  920. if (ret != SUCCESS) {
  921. cache_helper->ClearCache(graph_id);
  922. GELOGW("Fail to save om model to cache");
  923. return FAILED;
  924. }
  925. }
  926. }
  927. return SUCCESS;
  928. }
  929. Status GraphManager::InnerRunGraph(GraphNodePtr &graph_node, const GraphId &graph_id,
  930. const std::vector<GeTensor> &inputs, std::vector<GeTensor> &outputs) {
  931. Status ret = graph_executor_.SetCondition(&sync_run_mutex_, &condition_, graph_run_listener_);
  932. if (ret != SUCCESS) {
  933. GELOGE(GE_GRAPH_RUNGRAPH_FAILED, "[RunGraph] set condition failed, graph_id = %u.", graph_id);
  934. graph_node->SetRunFlag(false);
  935. return GE_GRAPH_RUNGRAPH_FAILED;
  936. }
  937. if (GetTrainFlag()) {
  938. GE_CHK_STATUS_RET(graph_executor_.SetGraphContext(GetGraphContext()));
  939. graph_executor_.SetTrainFlag(options_.train_graph_flag);
  940. }
  941. ret = graph_executor_.ExecuteGraph(graph_id, graph_node->GetGeRootModel(), inputs, outputs);
  942. graph_node->SetRunFlag(false);
  943. if (ret != SUCCESS) {
  944. GELOGE(ret, "[RunGraph] execute graph failed, graph_id = %u.", graph_id);
  945. return ret;
  946. }
  947. return SUCCESS;
  948. }
  949. Status GraphManager::RunGraph(const GraphId &graph_id, const std::vector<GeTensor> &inputs,
  950. std::vector<GeTensor> &outputs, uint64_t session_id) {
  951. std::lock_guard<std::mutex> lock(run_mutex_);
  952. GELOGI("[RunGraph] start to run graph, graph_id = %u, is_train_graph: %d", graph_id, GetTrainFlag());
  953. if (inputs.empty()) {
  954. GELOGI("[RunGraph] initialize sub graph has no inputs");
  955. }
  956. // find graph
  957. GraphNodePtr graph_node = nullptr;
  958. Status ret = GetGraphNode(graph_id, graph_node);
  959. if (ret != SUCCESS) {
  960. GELOGE(ret, "[RunGraph] graph not exist, graph_id = %u.", graph_id);
  961. return ret;
  962. }
  963. if (graph_node == nullptr) {
  964. GELOGE(GE_GRAPH_GRAPH_NODE_NULL, "[RunGraph] graph node is NULL, graph_id = %u.", graph_id);
  965. return GE_GRAPH_GRAPH_NODE_NULL;
  966. }
  967. if (graph_node->GetRunFlag()) {
  968. GELOGE(GE_GRAPH_ALREADY_RUNNING, "[RunGraph] graph already running, graph id = %u", graph_id);
  969. return GE_GRAPH_ALREADY_RUNNING;
  970. }
  971. UpdateLocalOmgContext(graph_id);
  972. // set graph's run flag
  973. graph_node->SetRunFlag(true);
  974. ComputeGraphPtr compute_graph_tmp = GraphUtils::GetComputeGraph(*(graph_node->GetGraph()));
  975. GE_IF_BOOL_EXEC(GetTrainFlag(),
  976. GE_IF_BOOL_EXEC(compute_graph_tmp == nullptr,
  977. GELOGE(GE_GRAPH_GRAPH_NODE_NULL,
  978. "[RunGraph] compute_graph_tmp is NULL, graph id = %u.", graph_id);
  979. return GE_GRAPH_GRAPH_NODE_NULL;))
  980. // when set incre build, add cache helper map
  981. AddModelCacheHelperToMap(graph_id, session_id, compute_graph_tmp);
  982. if (options_.local_fmk_op_flag) {
  983. GetCompilerStages(graph_id).optimizer.TranFrameOp(compute_graph_tmp);
  984. }
  985. GeRootModelPtr ge_root_model = nullptr;
  986. ret = StartForRunGraph(graph_node, inputs, ge_root_model, session_id);
  987. if (ret != SUCCESS) {
  988. GELOGE(ret, "[RunGraph] StartForRunGraph failed!");
  989. graph_node->SetRunFlag(false);
  990. return ret;
  991. }
  992. // excute graph
  993. ret = InnerRunGraph(graph_node, graph_id, inputs, outputs);
  994. if (ret != SUCCESS) {
  995. return ret;
  996. }
  997. if (GetTrainFlag()) {
  998. if (compute_graph_tmp->IsSummaryGraph()) {
  999. ret = SummaryHandle(graph_id, outputs);
  1000. if (ret != SUCCESS) {
  1001. GELOGE(ret, "[RunGraph] SummaryHandle failed!");
  1002. }
  1003. }
  1004. GeRootModelPtr root_model = graph_node->GetGeRootModel();
  1005. if (root_model != nullptr) {
  1006. GELOGI("Start CheckpointHandle.");
  1007. auto checkPointGraph = root_model->GetRootGraph();
  1008. if (IsCheckpointGraph(checkPointGraph)) {
  1009. ret = CheckpointHandle(graph_id, checkPointGraph, outputs);
  1010. if (ret != SUCCESS) {
  1011. GELOGE(ret, "[RunGraph] CheckpointHandle failed!");
  1012. }
  1013. }
  1014. }
  1015. }
  1016. GELOGI("[RunGraph] run graph success, graph_id = %u.", graph_id);
  1017. return SUCCESS;
  1018. }
  1019. Status GraphManager::GenerateInfershapeGraph(GraphId &graph_id) {
  1020. GELOGI("[DumpInfershapeJson] start to DumpInfershapeJson graph, graph_id=%u.", graph_id);
  1021. // find graph
  1022. GraphNodePtr graph_node = nullptr;
  1023. Status ret = GetGraphNode(graph_id, graph_node);
  1024. if (ret != SUCCESS) {
  1025. GELOGE(ret, "[BuildGraph] graph not exist, graph_id = %u.", graph_id);
  1026. return ret;
  1027. }
  1028. if (graph_node == nullptr) {
  1029. GELOGE(GE_GRAPH_GRAPH_NODE_NULL, "[BuildGraph] graph node is NULL, graphId = %u.", graph_id);
  1030. return GE_GRAPH_GRAPH_NODE_NULL;
  1031. }
  1032. UpdateLocalOmgContext(graph_id);
  1033. ret = GetCompilerStages(graph_id).preparer.GenerateInfershapeGraph(graph_node->GetGraph());
  1034. if (ret != SUCCESS) {
  1035. GELOGE(ret, "ATC dump infershape json failed");
  1036. return ret;
  1037. }
  1038. GELOGI("[DumpInfershapeJson] Dump infershape json success, graph_id=%u.", graph_id);
  1039. return ret;
  1040. }
  1041. Status GraphManager::BuildGraphForUnregisteredOp(const GraphId &graph_id, const std::vector<GeTensor> &inputs,
  1042. GeRootModelPtr &ge_root_model, uint64_t session_id) {
  1043. // find graph
  1044. GraphNodePtr graph_node = nullptr;
  1045. Status ret = GetGraphNode(graph_id, graph_node);
  1046. if (ret != SUCCESS) {
  1047. GELOGE(ret, "[BuildGraph] graph not exist, graph_id = %u.", graph_id);
  1048. return ret;
  1049. }
  1050. if (graph_node == nullptr) {
  1051. GELOGE(GE_GRAPH_GRAPH_NODE_NULL, "[BuildGraph] graph node is NULL, graphId = %u.", graph_id);
  1052. return GE_GRAPH_GRAPH_NODE_NULL;
  1053. }
  1054. UpdateLocalOmgContext(graph_id);
  1055. auto compute_graph = GraphUtils::GetComputeGraph(*graph_node->GetGraph());
  1056. GE_CHECK_NOTNULL(compute_graph);
  1057. GM_RUN_AND_DUMP_PERF("Prepare", GetCompilerStages(graph_id).preparer.PrepareDynShape, graph_node->GetGraph(), inputs,
  1058. compute_graph, session_id);
  1059. for (auto &node : compute_graph->GetAllNodes()) {
  1060. OpDescPtr op_desc = node->GetOpDesc();
  1061. GE_CHECK_NOTNULL(op_desc);
  1062. if (op_desc->HasAttr(ATTR_NAME_UNREGST_OPPATH)) {
  1063. vector<ge::NodePtr> node_vec = {node};
  1064. auto instance_ptr = ge::GELib::GetInstance();
  1065. if (instance_ptr == nullptr || !instance_ptr->InitFlag()) {
  1066. GELOGE(GE_CLI_GE_NOT_INITIALIZED, "GE is not initialized");
  1067. return GE_CLI_GE_NOT_INITIALIZED;
  1068. }
  1069. OpsKernelInfoStorePtr kernel_info =
  1070. instance_ptr->OpsKernelManagerObj().GetOpsKernelInfoStore(op_desc->GetOpKernelLibName());
  1071. if (kernel_info == nullptr) {
  1072. GELOGE(FAILED, "Get op kernel info store failed");
  1073. return FAILED;
  1074. }
  1075. ret = kernel_info->CompileOp(node_vec);
  1076. if (ret != SUCCESS) {
  1077. GELOGE(ret, "Compile op failed, op = %s, graph_id = %u.", op_desc->GetName().c_str(), graph_id);
  1078. return ret;
  1079. }
  1080. }
  1081. }
  1082. GM_RUN_AND_DUMP_PERF("Build", Build, graph_node, compute_graph, ge_root_model, session_id);
  1083. return SUCCESS;
  1084. }
  1085. Status GraphManager::BuildGraph(const GraphId &graph_id, const std::vector<GeTensor> &inputs,
  1086. GeRootModelPtr &ge_root_model, uint64_t session_id, bool async) {
  1087. GELOGD("[BuildGraph] start to build graph, graph_id=%u.", graph_id);
  1088. if (inputs.empty()) {
  1089. GELOGW("[BuildGraph] BuildGraph warning: empty GeTensor inputs");
  1090. }
  1091. // find graph
  1092. GraphNodePtr graph_node = nullptr;
  1093. Status ret = GetGraphNode(graph_id, graph_node);
  1094. if (ret != SUCCESS) {
  1095. GELOGE(ret, "[BuildGraph] graph not exist, graph_id = %u.", graph_id);
  1096. return ret;
  1097. }
  1098. if (graph_node == nullptr) {
  1099. GELOGE(GE_GRAPH_GRAPH_NODE_NULL, "[BuildGraph] graph node is NULL, graphId = %u.", graph_id);
  1100. return GE_GRAPH_GRAPH_NODE_NULL;
  1101. }
  1102. if (graph_node->GetRunFlag()) {
  1103. GELOGE(GE_GRAPH_ALREADY_RUNNING, "[BuildGraph] graph already running, graph id = %u", graph_node->GetGraphId());
  1104. return GE_GRAPH_ALREADY_RUNNING;
  1105. }
  1106. UpdateLocalOmgContext(graph_id);
  1107. graph_node->SetAsync(async);
  1108. // set graph's run flag
  1109. graph_node->SetRunFlag(true);
  1110. ret = StartForRunGraph(graph_node, inputs, ge_root_model, session_id);
  1111. graph_node->SetRunFlag(false);
  1112. if (ret != SUCCESS) {
  1113. GELOGE(GE_GRAPH_PRERUN_FAILED, "[BuildGraph] StartForRunGraph failed!");
  1114. return GE_GRAPH_PRERUN_FAILED;
  1115. }
  1116. GELOGI("[BuildGraph] build graph success, graph_id=%u.", graph_id);
  1117. return ret;
  1118. }
  1119. ///
  1120. /// @ingroup ge_graph
  1121. /// @brief Save extra attribute to Model
  1122. /// @param [in] model: Model attribues will save to.
  1123. /// @param [in] type: type of OpDesc.
  1124. /// @param [in] attrs: attributes of OpDesc.
  1125. /// @param [in] inputs: inputs tensor.
  1126. /// @param [in] outputs: outputs tensor.
  1127. /// @return: Status
  1128. ///
  1129. Status GraphManager::SaveParams(ge::GeModel &model, const std::string &type, const std::map<string, GeAttrValue> &attrs,
  1130. const std::vector<GeTensor> &inputs, const std::vector<GeTensor> &outputs) {
  1131. GE_CHK_BOOL_EXEC(ge::AttrUtils::SetStr(&model, "ATTR_MODEL_OP_TYPE", type), return FAILED, "Set Op[%s] type fail",
  1132. type.c_str());
  1133. for (const auto &it : attrs) {
  1134. GE_CHK_BOOL_EXEC(model.SetAttr("ATTR_MODEL_" + it.first, it.second) == GRAPH_SUCCESS, return FAILED,
  1135. "Set OpDesc attribute[%s] fail", it.first.c_str());
  1136. }
  1137. GE_CHK_BOOL_EXEC(ge::AttrUtils::SetListTensor(&model, "ATTR_MODEL_TENSOR_INPUTS", inputs), return FAILED,
  1138. "Set Inputs tensor list fail");
  1139. GE_CHK_BOOL_EXEC(ge::AttrUtils::SetListTensor(&model, "ATTR_MODEL_TENSOR_OUTPUTS", outputs), return FAILED,
  1140. "Set Outputs tensor list fail");
  1141. return SUCCESS;
  1142. }
  1143. void GraphManager::RemoveModelCacheHelper(const GraphId &graph_id) {
  1144. std::lock_guard<std::mutex> lock(member_mutex_);
  1145. auto iter = cache_helper_map_.find(graph_id);
  1146. if (iter != cache_helper_map_.end()) {
  1147. cache_helper_map_.erase(iter);
  1148. } else {
  1149. GELOGW("[GraphManager] cache helper does not exist, graph_id = %u", graph_id);
  1150. }
  1151. }
  1152. bool GraphManager::CheckModelLoad(const GeRootModelPtr &ge_root_model, bool load_flag) {
  1153. return ((ge_root_model != nullptr) && (ge_root_model->GetModelId() != INVALID_MODEL_ID) && load_flag);
  1154. }
  1155. Status GraphManager::RemoveGraph(const GraphId &graph_id) {
  1156. GraphNodePtr graph_node = nullptr;
  1157. Status ret = GetGraphNode(graph_id, graph_node);
  1158. if (ret != SUCCESS) {
  1159. GELOGE(GE_GRAPH_GRAPH_NOT_EXIST, "[GraphManager] Id %u does not exists.", graph_id);
  1160. return GE_GRAPH_GRAPH_NOT_EXIST;
  1161. }
  1162. if ((graph_node == nullptr) || (graph_node->GetRunFlag())) {
  1163. GELOGE(GE_GRAPH_GRAPH_IS_RUNNING, "[GraphManager] Id %u is running, can't be deleted.", graph_id);
  1164. return GE_GRAPH_GRAPH_IS_RUNNING;
  1165. }
  1166. std::lock_guard<std::mutex> lock(unload_model_mutex_);
  1167. Status middle_ret;
  1168. rtError_t rt_ret;
  1169. const std::vector<SubGraphInfoPtr> &all_sub_graph = graph_node->GetAllSubGraph();
  1170. for (size_t i = 0; i < all_sub_graph.size(); ++i) {
  1171. // must free buffer firstly
  1172. middle_ret = all_sub_graph[i]->FreeInOutBuffer();
  1173. if (middle_ret != SUCCESS) {
  1174. GELOGE(middle_ret, "[GraphManager] RemoveGraph free mem failed, graph_id=%u.", graph_id);
  1175. ret = middle_ret;
  1176. }
  1177. if (all_sub_graph[i]->GeModelIsValid() && all_sub_graph[i]->GetModelIdInfo().model_id != INVALID_MODEL_ID) {
  1178. // unload model
  1179. GELOGI("UnloadModel via new ome.");
  1180. rt_ret = rtSetDevice(GetContext().DeviceId());
  1181. if (rt_ret != RT_ERROR_NONE) {
  1182. GELOGE(RT_FAILED, "[GraphManager:] rtSetDevice failed, modelId=%u, graphId=%u.",
  1183. all_sub_graph[i]->GetModelIdInfo().model_id, graph_id);
  1184. ret = FAILED;
  1185. continue;
  1186. }
  1187. middle_ret = GraphLoader::UnloadModel(all_sub_graph[i]->GetModelIdInfo().model_id);
  1188. if (middle_ret != SUCCESS) {
  1189. GELOGE(middle_ret, "[GraphManager:] unload model failed, modelId=%u, graph_id=%u.",
  1190. all_sub_graph[i]->GetModelIdInfo().model_id, graph_id);
  1191. ret = middle_ret;
  1192. }
  1193. rt_ret = rtDeviceReset(GetContext().DeviceId());
  1194. if (rt_ret != RT_ERROR_NONE) {
  1195. GELOGE(RT_FAILED, "[GraphManager:] unload model failed, modelId=%u, graphId=%u.",
  1196. all_sub_graph[i]->GetModelIdInfo().model_id, graph_id);
  1197. ret = FAILED;
  1198. }
  1199. }
  1200. }
  1201. var_acc_ctrl_.RemoveGraph(graph_id);
  1202. RemoveGraphNode(graph_id);
  1203. RemoveModelCacheHelper(graph_id);
  1204. auto ge_root_model = graph_node->GetGeRootModel();
  1205. if (CheckModelLoad(ge_root_model, graph_node->GetLoadFlag())) {
  1206. GELOGI("Unload model %u.", ge_root_model->GetModelId());
  1207. rt_ret = rtSetDevice(GetContext().DeviceId());
  1208. if (rt_ret != RT_ERROR_NONE) {
  1209. GELOGE(RT_FAILED, "[GraphManager:] rtSetDevice failed, modelId=%u, graphId=%u.", ge_root_model->GetModelId(),
  1210. graph_id);
  1211. return FAILED;
  1212. }
  1213. middle_ret = GraphLoader::UnloadModel(ge_root_model->GetModelId());
  1214. if (middle_ret != SUCCESS) {
  1215. GELOGE(middle_ret, "[GraphManager:] unload model failed, modelId=%u, graph_id=%u.", ge_root_model->GetModelId(),
  1216. graph_id);
  1217. ret = middle_ret;
  1218. }
  1219. rt_ret = rtDeviceReset(GetContext().DeviceId());
  1220. if (rt_ret != RT_ERROR_NONE) {
  1221. GELOGE(RT_FAILED, "[GraphManager:] rtDeviceReset failed, modelId=%u, graphId=%u.", ge_root_model->GetModelId(),
  1222. graph_id);
  1223. ret = FAILED;
  1224. }
  1225. }
  1226. RemoveCompilerStages(graph_id);
  1227. GE_CHK_STATUS_RET(ret, "[GraphManager:] Remove graph failed, graph_id=%u.", graph_id);
  1228. GELOGI("[GraphManager] remove graph success, graph_id=%u.", graph_id);
  1229. return SUCCESS;
  1230. }
  1231. Status GraphManager::ParseOptions(const std::map<std::string, std::string> &options) {
  1232. Status ret;
  1233. ParseOption(options, "ge.INPUT_NODES_SET_FP16", options_.input_nodes_set_fp16);
  1234. // parse streams max parallel num
  1235. ret = ParseOption(options, STREAM_MAX_PARALLEL_NUM, options_.stream_max_parallel_num);
  1236. if (ret != SUCCESS) {
  1237. GELOGE(GE_GRAPH_OPTIONS_INVALID,
  1238. "parse Key:%s value failed, it must be same format as "
  1239. "DNN_V100:2,DNN_HCCL:3",
  1240. STREAM_MAX_PARALLEL_NUM.c_str());
  1241. return GE_GRAPH_OPTIONS_INVALID;
  1242. }
  1243. // get stream num
  1244. ret = ParseOption(options, STREAM_NUM, options_.stream_num);
  1245. if ((ret != SUCCESS) || (options_.stream_num == 0)) {
  1246. GELOGE(GE_GRAPH_OPTIONS_INVALID, "Key:ge.stream_num, its value %d is invalid, must be not equal zero.",
  1247. options_.stream_num);
  1248. return GE_GRAPH_OPTIONS_INVALID;
  1249. }
  1250. // get perf level, its value please see enum PerfLevel
  1251. ret = ParseOption(options, PERF_LEVEL, options_.perf_level);
  1252. if ((ret != SUCCESS) || IsPerfLevelInvalid(options_.perf_level)) {
  1253. GELOGE(GE_GRAPH_OPTIONS_INVALID, "Key:ge.perfLevel, its value %d is invalid, must be enum PerfLevel type.",
  1254. options_.perf_level);
  1255. return GE_GRAPH_OPTIONS_INVALID;
  1256. }
  1257. // get encrypt mode
  1258. ret = ParseOption(options, ENCRYPT_MODE, options_.encrypt_mode);
  1259. GE_IF_BOOL_EXEC(ret != SUCCESS,
  1260. GELOGE(GE_GRAPH_OPTIONS_INVALID, "Key:ge.encryptMode value invalid.");
  1261. return GE_GRAPH_OPTIONS_INVALID);
  1262. // get ek file
  1263. ParseOption(options, EK_FILE, options_.ek_file);
  1264. // get cert file
  1265. ParseOption(options, CERT_FILE, options_.cert_file);
  1266. // get hw key file
  1267. ParseOption(options, HW_KEY_FILE, options_.hw_key_file);
  1268. // get private file
  1269. ParseOption(options, PRIVATE_KEY_FILE, options_.private_key_file);
  1270. // get framework type, its value please see enum FrameworkType
  1271. ret = ParseOption(options, FRAMEWORK_TYPE, options_.framework_type);
  1272. if (ret != SUCCESS) {
  1273. // print error log in ParseOption
  1274. return GE_GRAPH_OPTIONS_INVALID;
  1275. }
  1276. // get calibration info file
  1277. ParseOption(options, CALIBRATION_CONF_FILE, options_.calibration_conf_file);
  1278. // get insert op info file
  1279. ParseOption(options, INSERT_OP_FILE, options_.insert_op_file);
  1280. // get output node name
  1281. ParseOption(options, OUTPUT_NODE_NAME, options_.output_node_name);
  1282. // get function bin path
  1283. ParseOption(options, "ge.func_bin_path", options_.func_bin_path);
  1284. // get core type
  1285. ParseOption(options, CORE_TYPE, options_.core_type);
  1286. // get weight compress flag
  1287. ret = ParseOption(options, COMPRESS_FLAG, options_.compress_flag);
  1288. GE_IF_BOOL_EXEC(ret != SUCCESS,
  1289. GELOGE(GE_GRAPH_OPTIONS_INVALID, "Key:ge.compressFlag value is invalid, must be 0 or 1.");
  1290. return GE_GRAPH_OPTIONS_INVALID);
  1291. // ge.graphType.
  1292. options_.run_graph_flag = true;
  1293. ret = ParseOption(options, RUN_FLAG, options_.run_graph_flag);
  1294. GE_IF_BOOL_EXEC(ret != SUCCESS,
  1295. GELOGE(GE_GRAPH_OPTIONS_INVALID, "Key:ge.runFlag value is invalid, must be 0 or 1.");
  1296. return GE_GRAPH_OPTIONS_INVALID);
  1297. // ge.graphType
  1298. ret = ParseTrainGraphFlag(options_.run_graph_flag, options_.train_graph_flag);
  1299. GE_IF_BOOL_EXEC(ret != SUCCESS,
  1300. GELOGE(GE_GRAPH_OPTIONS_INVALID, "Key:ge.runFlag value is invalid");
  1301. return GE_GRAPH_OPTIONS_INVALID);
  1302. // parse FmkOp
  1303. options_.local_fmk_op_flag = false;
  1304. ret = ParseOption(options, LOCAL_FMKOP_FLAG, options_.local_fmk_op_flag);
  1305. GE_IF_BOOL_EXEC(ret != SUCCESS,
  1306. GELOGE(GE_GRAPH_OPTIONS_INVALID, "Key:ge.localFmkopFlag value is invalid, must be 0 or 1.");
  1307. return GE_GRAPH_OPTIONS_INVALID);
  1308. options_.enable_print_op_pass = true;
  1309. ret = ParseOption(options, ENABLE_PRINT_OP_PASS, options_.enable_print_op_pass);
  1310. options_.is_single_op = false;
  1311. ret = ParseOption(options, SINGLE_OP_FLAG, options_.is_single_op);
  1312. GE_IF_BOOL_EXEC(ret != SUCCESS,
  1313. GELOGE(GE_GRAPH_OPTIONS_INVALID, "Key:ge.enablePrintOpPass value is invalid, must be 0 or 1.");
  1314. return GE_GRAPH_OPTIONS_INVALID);
  1315. // parse hcom parallel
  1316. options_.hcom_parallel = false;
  1317. ret = ParseOption(options, HCOM_PARALLEL, options_.hcom_parallel);
  1318. GE_IF_BOOL_EXEC(ret != SUCCESS,
  1319. GELOGE(GE_GRAPH_OPTIONS_INVALID, "Key:ge.hcomParallel value is invalid, must be 0 or 1.");
  1320. return GE_GRAPH_OPTIONS_INVALID);
  1321. // net output node dataType
  1322. ParseOption(options, OUTPUT_DATATYPE, options_.output_datatype);
  1323. // Set save_original_model flag (ge.save_original_model)
  1324. ParseOption(options, SAVE_ORIGINAL_MODEL, options_.save_original_model);
  1325. // Original model file name
  1326. ParseOption(options, ORIGINAL_MODEL_FILE, options_.original_model_file);
  1327. ParseOption(options, INPUT_SHAPE, options_.input_shape);
  1328. ParseOption(options, kDynamicDims, options_.dynamic_dims);
  1329. ParseOption(options, DYNAMIC_NODE_TYPE, options_.dynamic_node_type);
  1330. GELOGD("Dynamic dims params: input shape is %s, dynamic dims is %s, dynamic node type is %d.",
  1331. options_.input_shape.c_str(), options_.dynamic_dims.c_str(), options_.dynamic_node_type);
  1332. // Set Build model and step
  1333. ParseOption(options, BUILD_MODE, options_.build_mode);
  1334. ParseOption(options, BUILD_STEP, options_.build_step);
  1335. return SUCCESS;
  1336. }
  1337. Status GraphManager::ParseTrainGraphFlag(bool &options, bool &option) {
  1338. std::shared_ptr<GELib> ge_instance_ptr = ge::GELib::GetInstance();
  1339. if (ge_instance_ptr == nullptr) {
  1340. GELOGW("[Initialize] set train_graph_flag_ to 0 when GE is not initialized or finalized.");
  1341. option = false;
  1342. } else if (!ge_instance_ptr->isTrainMode()) {
  1343. option = false;
  1344. } else { // ge_instance_ptr->isTrainMode() is true
  1345. if (!options) {
  1346. GELOGE(GE_GRAPH_OPTIONS_INVALID,
  1347. "Key:ge.runFlag, its value %d is invalid, it must be 1 when GElib::is_train_mode_ flag is 1", options);
  1348. return GE_GRAPH_OPTIONS_INVALID;
  1349. }
  1350. option = true;
  1351. }
  1352. return SUCCESS;
  1353. }
  1354. bool GraphManager::IsPerfLevelInvalid(int32_t perf_level) {
  1355. return ((perf_level != static_cast<int32_t>(GEN_TASK_WITHOUT_L2FUSION)) &&
  1356. (perf_level != static_cast<int32_t>(GEN_TASK_WITHOUT_FUSION)) && (perf_level != -1));
  1357. }
  1358. void GraphManager::ParseOption(const std::map<std::string, std::string> &options, const std::string &key,
  1359. std::string &option) {
  1360. auto iter = options.find(key);
  1361. if (iter != options.end()) {
  1362. option = iter->second;
  1363. }
  1364. }
  1365. Status GraphManager::ParseOption(const std::map<std::string, std::string> &options, const std::string &key,
  1366. bool &option) {
  1367. auto iter = options.find(key);
  1368. if (iter != options.end()) {
  1369. string flag = iter->second;
  1370. if (flag == "0") {
  1371. option = false;
  1372. } else if (flag == "1") {
  1373. option = true;
  1374. } else {
  1375. GELOGE(GE_GRAPH_OPTIONS_INVALID, "Key:%s, its value %s is invalid, it must be 0 or 1.", key.c_str(),
  1376. flag.c_str());
  1377. return GE_GRAPH_OPTIONS_INVALID;
  1378. }
  1379. }
  1380. return SUCCESS;
  1381. }
  1382. Status GraphManager::ParseOption(const std::map<std::string, std::string> &options, const std::string &key,
  1383. int &option) {
  1384. const int kDecimal = 10;
  1385. char *ptr = nullptr;
  1386. auto iter = options.find(key);
  1387. if (iter != options.end()) {
  1388. option = static_cast<int32_t>(std::strtol(iter->second.c_str(), &ptr, kDecimal));
  1389. if (ptr != nullptr && *ptr != '\0') {
  1390. GELOGE(GE_GRAPH_OPTIONS_INVALID, "Key:%s, its value %s is invalid, must be int32_t type.", key.c_str(),
  1391. iter->second.c_str());
  1392. return GE_GRAPH_OPTIONS_INVALID;
  1393. }
  1394. }
  1395. return SUCCESS;
  1396. }
  1397. void GraphManager::Trim(std::string &str) {
  1398. if (!str.empty()) {
  1399. auto it = str.find_first_not_of(" ");
  1400. if (it != std::string::npos) {
  1401. str.erase(0, it);
  1402. }
  1403. it = str.find_last_not_of(" ");
  1404. if (it != std::string::npos) {
  1405. str.erase(it + 1);
  1406. }
  1407. }
  1408. }
  1409. Status GraphManager::ParseOption(const std::map<std::string, std::string> &options, const std::string &key,
  1410. std::map<std::string, int> &option) {
  1411. auto iter = options.find(key);
  1412. if (iter == options.end()) {
  1413. return SUCCESS;
  1414. }
  1415. GELOGI("Start to parse %s", key.c_str());
  1416. option.clear();
  1417. std::string op_num = iter->second;
  1418. // split string by ','
  1419. std::vector<std::string> split;
  1420. std::istringstream f(op_num);
  1421. std::string str_tmp;
  1422. while (getline(f, str_tmp, ',')) {
  1423. split.push_back(str_tmp);
  1424. }
  1425. for (const std::string &engine_parallel : split) {
  1426. // split engine and num by :
  1427. size_t pos = engine_parallel.find(':');
  1428. if (pos == string::npos) {
  1429. GELOGE(GE_GRAPH_OPTIONS_INVALID,
  1430. "engine and num must be connected by :, "
  1431. "while your input is %s",
  1432. engine_parallel.c_str());
  1433. return GE_GRAPH_OPTIONS_INVALID;
  1434. }
  1435. std::string engine_name = engine_parallel.substr(0, pos);
  1436. std::string parallel_num = engine_parallel.substr(pos + 1);
  1437. Trim(engine_name);
  1438. Trim(parallel_num);
  1439. Status ret = CheckEngineName(engine_name, key, option);
  1440. if (ret != SUCCESS) {
  1441. GELOGE(GE_GRAPH_OPTIONS_INVALID, "check engine name : %s failed, ", engine_name.c_str());
  1442. return GE_GRAPH_OPTIONS_INVALID;
  1443. }
  1444. int num = 0;
  1445. ret = ParseParallelNum(parallel_num, key, num);
  1446. if (ret != SUCCESS) {
  1447. GELOGE(GE_GRAPH_OPTIONS_INVALID, "parse parallel num failed");
  1448. return GE_GRAPH_OPTIONS_INVALID;
  1449. }
  1450. option.insert(std::make_pair(engine_name, num));
  1451. }
  1452. GELOGI("Parse %s successfully", key.c_str());
  1453. return SUCCESS;
  1454. }
  1455. Status GraphManager::CheckEngineName(const std::string &engine_name, const std::string &key,
  1456. const std::map<std::string, int> &option) {
  1457. if (engine_name.empty()) {
  1458. GELOGE(GE_GRAPH_OPTIONS_INVALID, "engine name of %s is empty", key.c_str());
  1459. return GE_GRAPH_OPTIONS_INVALID;
  1460. }
  1461. // judge whether exist in engine list
  1462. if (!GELib::GetInstance()->DNNEngineManagerObj().IsEngineRegistered(engine_name)) {
  1463. GELOGW("engine : %s is not registered in %s", engine_name.c_str(), key.c_str());
  1464. }
  1465. auto it_stream_repeat = option.find(engine_name);
  1466. if (it_stream_repeat != option.end()) {
  1467. GELOGE(GE_GRAPH_OPTIONS_INVALID, "engine : %s of %s is repeated", engine_name.c_str(), key.c_str());
  1468. return GE_GRAPH_OPTIONS_INVALID;
  1469. }
  1470. return SUCCESS;
  1471. }
  1472. Status GraphManager::ParseParallelNum(const std::string &parallel_num, const std::string &key, int &num) {
  1473. if (parallel_num.empty()) {
  1474. GELOGE(GE_GRAPH_OPTIONS_INVALID, "parallel num of %s is empty", key.c_str());
  1475. return GE_GRAPH_OPTIONS_INVALID;
  1476. }
  1477. for (char c : parallel_num) {
  1478. if (!isdigit(c)) {
  1479. GELOGE(GE_GRAPH_OPTIONS_INVALID, "%s input is invalid ", key.c_str());
  1480. return GE_GRAPH_OPTIONS_INVALID;
  1481. }
  1482. }
  1483. try {
  1484. num = std::stoi(parallel_num);
  1485. } catch (std::invalid_argument &) {
  1486. GELOGE(GE_GRAPH_OPTIONS_INVALID, "parallel num : %s of %s is invalid argument", parallel_num.c_str(), key.c_str());
  1487. return GE_GRAPH_OPTIONS_INVALID;
  1488. } catch (std::out_of_range &) {
  1489. GELOGE(GE_GRAPH_OPTIONS_INVALID, "parallel num : %s of %s is out of range", parallel_num.c_str(), key.c_str());
  1490. return GE_GRAPH_OPTIONS_INVALID;
  1491. } catch (...) {
  1492. GELOGE(GE_GRAPH_OPTIONS_INVALID, "parallel num : %s of %s is invalid argument", parallel_num.c_str(), key.c_str());
  1493. return GE_GRAPH_OPTIONS_INVALID;
  1494. }
  1495. if (num < 1) {
  1496. GELOGE(GE_GRAPH_OPTIONS_INVALID, "parallel num : %s of %s must bigger than 0", parallel_num.c_str(), key.c_str());
  1497. return GE_GRAPH_OPTIONS_INVALID;
  1498. }
  1499. return SUCCESS;
  1500. }
  1501. void GraphManager::AddGraphNode(GraphId graph_id, const GraphNodePtr &graph_node) {
  1502. std::lock_guard<std::mutex> lock(member_mutex_);
  1503. graph_map_.emplace(graph_id, graph_node);
  1504. }
  1505. void GraphManager::RemoveGraphNode(GraphId graph_id) {
  1506. std::lock_guard<std::mutex> lock(member_mutex_);
  1507. graph_map_.erase(graph_id);
  1508. }
  1509. bool GraphManager::HasGraphNode(GraphId graph_id) {
  1510. std::lock_guard<std::mutex> lock(member_mutex_);
  1511. return graph_map_.find(graph_id) != graph_map_.end();
  1512. }
  1513. Status GraphManager::GetGraphNode(const GraphId &graph_id, GraphNodePtr &out) {
  1514. std::lock_guard<std::mutex> lock(member_mutex_);
  1515. auto iter = graph_map_.find(graph_id);
  1516. if (iter == graph_map_.end()) {
  1517. out = nullptr;
  1518. GELOGE(GE_GRAPH_GRAPH_NOT_EXIST, "[GraphManager] graph not exist, graph_id= %u.", graph_id);
  1519. return GE_GRAPH_GRAPH_NOT_EXIST;
  1520. }
  1521. out = iter->second;
  1522. return SUCCESS;
  1523. }
  1524. Status GraphManager::GetVariable(const std::string &name, Tensor &val) {
  1525. GeTensorPtr ge_tensor_ptr = TensorAdapter::AsGeTensorPtr(val);
  1526. GE_CHECK_NOTNULL(ge_tensor_ptr);
  1527. return GetGraphContext()->GetVariableTensor(name, *(ge_tensor_ptr.get()));
  1528. }
  1529. Status GraphManager::SummaryHandle(const GraphId &graph_id, std::vector<GeTensor> &outputs) {
  1530. std::vector<GeTensor> without_summary_outputs;
  1531. std::set<int> summary_output_index;
  1532. GELOGI("[GraphManager] SummaryHandle, outputsSize=%zu.", outputs.size());
  1533. const std::map<uint32_t, std::map<string, size_t>> &whole_summary_output_indexes =
  1534. GetCompilerStages(graph_id).optimizer.GetSummaryOutputIndexes();
  1535. if (whole_summary_output_indexes.find(graph_id) == whole_summary_output_indexes.end()) {
  1536. GELOGE(FAILED, "No Summary graph found in map.");
  1537. return FAILED;
  1538. }
  1539. const std::map<string, size_t> &summary_output_indexes = whole_summary_output_indexes.at(graph_id);
  1540. GELOGI("[GraphManager] SummaryHandle, summaryOutputIndexesSize=%zu.", summary_output_indexes.size());
  1541. std::map<string, Tensor> summary_results;
  1542. for (auto iter = summary_output_indexes.begin(); iter != summary_output_indexes.end(); ++iter) {
  1543. GELOGI("[GraphManager] SummaryHandle, summaryName=%s, outputIndex=%zu.", iter->first.c_str(), iter->second);
  1544. summary_results.emplace(iter->first, TensorAdapter::AsTensor(outputs.at(iter->second)));
  1545. summary_output_index.emplace(iter->second);
  1546. }
  1547. // remove summary data from outputs
  1548. if (!summary_output_index.empty()) {
  1549. for (size_t j = 0; j < outputs.size(); ++j) {
  1550. if (summary_output_index.count(j) == 0) {
  1551. without_summary_outputs.emplace_back(outputs.at(j));
  1552. }
  1553. }
  1554. outputs.swap(without_summary_outputs);
  1555. GELOGI("[GraphManager] SummaryHandle, after swap outputsSize=%zu.", outputs.size());
  1556. }
  1557. if (!summary_results.empty()) {
  1558. return PushSummaryData2ME(graph_id, summary_results);
  1559. }
  1560. return SUCCESS;
  1561. }
  1562. Status GraphManager::CheckpointHandle(const GraphId &graph_id, const ComputeGraphPtr &compute_graph,
  1563. const std::vector<GeTensor> &outputs) {
  1564. GELOGI("[GraphManager] CheckpointHandle, outputsSize=%zu.", outputs.size());
  1565. std::vector<InputOutputDescInfo> outputs_desc = graph_executor_.GetOutputsDesc();
  1566. GELOGI("[GraphManager] CheckpointHandle, outputsDescSize=%zu.", outputs_desc.size());
  1567. std::map<string, Tensor> save_results;
  1568. NodePtr netoutput = nullptr;
  1569. for (const auto &node : compute_graph->GetAllNodes()) {
  1570. if (node->GetType() == kNetOutput) {
  1571. netoutput = node;
  1572. break;
  1573. }
  1574. }
  1575. if (netoutput == nullptr) {
  1576. GELOGE(FAILED, "Netoutput is null.");
  1577. return FAILED;
  1578. }
  1579. for (const auto &in : netoutput->GetAllInDataAnchors()) {
  1580. std::string desc_name;
  1581. auto out_anchor = in->GetPeerOutAnchor();
  1582. if (out_anchor == nullptr) {
  1583. GELOGE(FAILED, "out_anchor is null.");
  1584. return FAILED;
  1585. }
  1586. ge::NodePtr peer_node = out_anchor->GetOwnerNode();
  1587. // find the variable node in graph
  1588. while (peer_node != nullptr && peer_node->GetType() != kVariable) {
  1589. if (peer_node->GetAllInDataAnchors().size() != 1) {
  1590. GELOGE(FAILED, "More than one prior nodes of peer_node %s in checkpoint Graph.", peer_node->GetName().c_str());
  1591. return FAILED;
  1592. }
  1593. auto peer_node_in = peer_node->GetAllInDataAnchors().at(0);
  1594. auto peer_node_out_anchor = peer_node_in->GetPeerOutAnchor();
  1595. if (peer_node_out_anchor != nullptr) {
  1596. peer_node = peer_node_out_anchor->GetOwnerNode();
  1597. if (peer_node->GetType() == kVariable) {
  1598. break;
  1599. }
  1600. }
  1601. }
  1602. if (peer_node == nullptr) {
  1603. GELOGE(FAILED, "No variable op found in one branch, checkpoint graph illegal.");
  1604. return FAILED;
  1605. }
  1606. desc_name = peer_node->GetName();
  1607. GELOGI("[GraphManager] CheckpointHandle, descName=%s.", desc_name.c_str());
  1608. if (in->GetIdx() >= static_cast<int>(outputs.size())) {
  1609. GELOGE(FAILED, "variable index out of range.");
  1610. return FAILED;
  1611. }
  1612. save_results.emplace(desc_name, TensorAdapter::AsTensor(outputs.at(in->GetIdx())));
  1613. }
  1614. if (!save_results.empty()) {
  1615. return PushSaveData2ME(graph_id, save_results);
  1616. }
  1617. return SUCCESS;
  1618. }
  1619. Status GraphManager::RegisterCallBackFunc(
  1620. const std::string &key,
  1621. const std::function<Status(uint32_t, const std::map<std::string, ge::Tensor> &)> &callback) {
  1622. std::lock_guard<std::mutex> lock(member_mutex_);
  1623. GELOGI("[GraphManager] RegisterCallBackFunc, key=%s.", key.c_str());
  1624. me_callback_map_[key] = callback;
  1625. return SUCCESS;
  1626. }
  1627. Status GraphManager::RegisterCallBackFunc(
  1628. const std::string &key,
  1629. const std::function<Status(uint32_t, const std::map<AscendString, ge::Tensor> &)> &callback) {
  1630. std::lock_guard<std::mutex> lock(member_mutex_);
  1631. GELOGI("[GraphManager] RegisterCallBackFunc, key=%s.", key.c_str());
  1632. callback_map_[key] = callback;
  1633. return SUCCESS;
  1634. }
  1635. Status GraphManager::PushSummaryData2ME(const GraphId &graph_id,
  1636. const std::map<std::string, ge::Tensor> &summary_data) {
  1637. std::lock_guard<std::mutex> lock(member_mutex_);
  1638. GELOGI("[GraphManager] PushSummaryData2ME, dataSize=%zu.", summary_data.size());
  1639. auto itr = me_callback_map_.find(kSummary);
  1640. if (itr == me_callback_map_.end()) {
  1641. auto iter = callback_map_.find(kSummary);
  1642. if (iter != callback_map_.end()) {
  1643. std::map<AscendString, ge::Tensor> tmp_summary_data;
  1644. for (auto &data : summary_data) {
  1645. AscendString tmp(data.first.c_str());
  1646. tmp_summary_data[tmp] = data.second;
  1647. }
  1648. return iter->second(graph_id, tmp_summary_data);
  1649. }
  1650. GELOGE(FAILED, "[GraphManager] PushSummaryData2ME failed, not found summary callback.");
  1651. return FAILED;
  1652. }
  1653. return itr->second(graph_id, summary_data);
  1654. }
  1655. Status GraphManager::PushSaveData2ME(const GraphId &graph_id, const std::map<std::string, ge::Tensor> &save_data) {
  1656. std::lock_guard<std::mutex> lock(member_mutex_);
  1657. GELOGI("[GraphManager] PushSaveData2ME, dataSize=%zu.", save_data.size());
  1658. auto itr = me_callback_map_.find(kSave);
  1659. if (itr == me_callback_map_.end()) {
  1660. auto iter = callback_map_.find(kSave);
  1661. if (iter != callback_map_.end()) {
  1662. std::map<AscendString, ge::Tensor> tmp_save_data;
  1663. for (auto &data : save_data) {
  1664. AscendString tmp(data.first.c_str());
  1665. tmp_save_data[tmp] = data.second;
  1666. }
  1667. return iter->second(graph_id, tmp_save_data);
  1668. }
  1669. GELOGE(FAILED, "[GraphManager] PushSaveData2ME failed, not found checkpoint callback.");
  1670. return FAILED;
  1671. }
  1672. return itr->second(graph_id, save_data);
  1673. }
  1674. bool GraphManager::CheckNetOutputForCheckpointGraph(NodePtr &node) {
  1675. size_t in_data_anchor_size = node->GetAllInDataAnchors().size();
  1676. for (size_t i = 0; i < in_data_anchor_size; ++i) {
  1677. auto in = node->GetInDataAnchor(i);
  1678. if (in == nullptr) {
  1679. return false;
  1680. }
  1681. auto peerin = in->GetPeerOutAnchor();
  1682. GE_IF_BOOL_EXEC(peerin == nullptr, return false);
  1683. if (peerin->GetOwnerNode()->GetType() != kVariable && (!TransOpUtil::IsTransOp(peerin->GetOwnerNode()))) {
  1684. return false;
  1685. }
  1686. }
  1687. return true;
  1688. }
  1689. bool GraphManager::CheckVariableForCheckpointGraph(NodePtr &node) {
  1690. if (node->GetOpDesc()->HasAttr(kCheckPointForGetVar)) {
  1691. return false;
  1692. }
  1693. auto out = node->GetOutDataAnchor(0);
  1694. if (out == nullptr) {
  1695. GELOGE(GE_GRAPH_PARAM_NULLPTR, "out is nullptr.");
  1696. return false;
  1697. }
  1698. auto peer_out = out->GetPeerInDataAnchors();
  1699. for (size_t i = 0; i < peer_out.size(); ++i) {
  1700. if (peer_out.at(i)->GetOwnerNode()->GetType() != kNetOutput &&
  1701. (!TransOpUtil::IsTransOp(peer_out.at(i)->GetOwnerNode()))) {
  1702. return false;
  1703. }
  1704. }
  1705. return true;
  1706. }
  1707. bool GraphManager::CheckTransOpForCheckpointGraph(NodePtr &node) {
  1708. for (const auto &out_node : node->GetOutAllNodes()) {
  1709. if ((!TransOpUtil::IsTransOp(out_node)) && (out_node->GetType() != kNetOutput) && (out_node->GetType() != kSend)) {
  1710. return false;
  1711. }
  1712. }
  1713. for (const auto &in_node : node->GetInAllNodes()) {
  1714. if ((!TransOpUtil::IsTransOp(in_node)) && (in_node->GetType() != kVariable) && (in_node->GetType() != kRecv)) {
  1715. return false;
  1716. }
  1717. }
  1718. return true;
  1719. }
  1720. static inline bool CheckConstanOpForCheckpointGraph(NodePtr &node) { return node->GetOutDataNodes().empty(); }
  1721. bool GraphManager::IsCheckpointGraph(ComputeGraphPtr &compute_graph) {
  1722. if (compute_graph == nullptr) {
  1723. GELOGE(GE_GRAPH_PARAM_NULLPTR, "[IsCheckpointGraph] computeGraph is nullptr.");
  1724. return false;
  1725. }
  1726. for (auto &node : compute_graph->GetAllNodes()) {
  1727. OpDescPtr op = node->GetOpDesc();
  1728. GE_RT_FALSE_CHECK_NOTNULL(op);
  1729. if (op->GetType() == kNetOutput) {
  1730. if (!CheckNetOutputForCheckpointGraph(node)) {
  1731. return false;
  1732. }
  1733. } else if (op->GetType() == kVariable) {
  1734. if (!CheckVariableForCheckpointGraph(node)) {
  1735. return false;
  1736. }
  1737. } else if ((TransOpUtil::IsTransOp(node))) {
  1738. if (!CheckTransOpForCheckpointGraph(node)) {
  1739. return false;
  1740. }
  1741. } else if (op->GetType() == CONSTANTOP) {
  1742. if (!CheckConstanOpForCheckpointGraph(node)) {
  1743. return false;
  1744. }
  1745. } else if (op->GetType() != kSend && op->GetType() != kRecv) {
  1746. GELOGI("this node is not allow in checkpoint sub graph, node_type: %s, node_name: %s.", op->GetType().c_str(),
  1747. op->GetName().c_str());
  1748. return false;
  1749. }
  1750. }
  1751. GELOGI("current graph %s is checkpoint sub graph.", compute_graph->GetName().c_str());
  1752. return true;
  1753. }
  1754. bool GraphManager::IsBroadCastOpData(const ge::NodePtr &var_node) {
  1755. for (auto &out_anchor : var_node->GetAllOutDataAnchors()) {
  1756. GE_RT_FALSE_CHECK_NOTNULL(out_anchor);
  1757. for (auto &in_anchor : out_anchor->GetPeerInDataAnchors()) {
  1758. GE_RT_FALSE_CHECK_NOTNULL(in_anchor);
  1759. ge::NodePtr dst_node = in_anchor->GetOwnerNode();
  1760. GE_RT_FALSE_CHECK_NOTNULL(dst_node);
  1761. if (dst_node->GetType() == HCOMBROADCAST || dst_node->GetType() == HVDCALLBACKBROADCAST) {
  1762. return true;
  1763. }
  1764. }
  1765. }
  1766. return false;
  1767. }
  1768. void GraphManager::SetAttrForHcomBroadCastOp(ge::ComputeGraphPtr &compute_graph) {
  1769. // add variable attr for hccl broadcast,need to be removed after variable pass online
  1770. for (const ge::NodePtr &node : compute_graph->GetDirectNode()) {
  1771. if (node->GetOpDesc()->GetType() != ge::VARIABLE) {
  1772. continue;
  1773. }
  1774. if (IsBroadCastOpData(node)) {
  1775. AdjustBroadCastOpData(node);
  1776. }
  1777. if (IsAssignOpData(node)) {
  1778. AdjustAssignOpData(node);
  1779. }
  1780. }
  1781. }
  1782. void GraphManager::AdjustBroadCastOpData(const ge::NodePtr &var_node) {
  1783. if (!ge::AttrUtils::SetStr(var_node->GetOpDesc(), VAR_ATTR_VAR_IS_BROADCAST, "var_is_restore")) {
  1784. GELOGW("set var_is_restore failed");
  1785. }
  1786. }
  1787. bool GraphManager::IsAssignOpData(const ge::NodePtr &var_node) {
  1788. GELOGD("IsAssignOpData var_node %s", var_node->GetName().c_str());
  1789. std::map<std::string, std::set<int>> assign_ops = {{ASSIGN, {0}}};
  1790. ge::NodePtr assign_node = nullptr;
  1791. if (ConfirmUseOpAndIndexByNode(var_node, assign_ops, assign_node)) {
  1792. return true;
  1793. }
  1794. return false;
  1795. }
  1796. void GraphManager::AdjustAssignOpData(const ge::NodePtr &var_node) {
  1797. if (!ge::AttrUtils::SetStr(var_node->GetOpDesc(), VAR_ATTR_VAR_IS_RESTORE, "var_is_restore")) {
  1798. GELOGW("SetStr var_is_restore failed");
  1799. }
  1800. }
  1801. bool GraphManager::ConfirmUseOpAndIndexByAnchor(const ge::InDataAnchorPtr &in_anchor,
  1802. const map<string, std::set<int>> &confirm_ops, ge::NodePtr &use_node) {
  1803. GE_RT_FALSE_CHECK_NOTNULL(in_anchor);
  1804. ge::NodePtr dst_node = in_anchor->GetOwnerNode();
  1805. GE_RT_FALSE_CHECK_NOTNULL(dst_node);
  1806. ge::OpDescPtr dst_op_desc = dst_node->GetOpDesc();
  1807. GE_RT_FALSE_CHECK_NOTNULL(dst_op_desc);
  1808. const string &dst_type = dst_op_desc->GetType();
  1809. int input_index = in_anchor->GetIdx();
  1810. GELOGD("ConfirmUseOpAndIndex, var name %s, dst_type = %s, input index %d", dst_node->GetName().c_str(),
  1811. dst_type.c_str(), input_index);
  1812. if (confirm_ops.count(dst_type) > 0) {
  1813. if (confirm_ops.at(dst_type).count(input_index) > 0) {
  1814. use_node = dst_node;
  1815. return true;
  1816. }
  1817. }
  1818. return false;
  1819. }
  1820. bool GraphManager::ConfirmUseOpAndIndexByNode(const ge::NodePtr &var_node,
  1821. const map<string, std::set<int>> &confirm_ops, ge::NodePtr &use_node) {
  1822. GE_RT_FALSE_CHECK_NOTNULL(var_node);
  1823. for (auto &out_anchor : var_node->GetAllOutDataAnchors()) {
  1824. GE_RT_FALSE_CHECK_NOTNULL(out_anchor);
  1825. for (auto &in_anchor : out_anchor->GetPeerInDataAnchors()) {
  1826. GE_RT_FALSE_CHECK_NOTNULL(in_anchor);
  1827. if (ConfirmUseOpAndIndexByAnchor(in_anchor, confirm_ops, use_node)) {
  1828. return true;
  1829. }
  1830. }
  1831. }
  1832. return false;
  1833. }
  1834. Status GraphManager::RemoveIsolatedConstInThisGraph(ge::ComputeGraphPtr &compute_graph) {
  1835. for (ge::NodePtr &n : compute_graph->GetDirectNode()) {
  1836. if (n->GetOpDesc() == nullptr) {
  1837. continue;
  1838. }
  1839. if (n->GetOpDesc()->GetType() == CONSTANT || n->GetOpDesc()->GetType() == CONSTANTOP) {
  1840. // reset const type depend on train_flag
  1841. options_.train_graph_flag ? n->GetOpDesc()->SetType(CONSTANTOP) : n->GetOpDesc()->SetType(CONSTANT);
  1842. if (n->GetOutAllNodes().empty() && n->GetInAllNodes().empty()) {
  1843. // it is an isolated constant, just remove it
  1844. if (GraphUtils::RemoveJustNode(compute_graph, n) != GRAPH_SUCCESS) {
  1845. GELOGE(FAILED, "remove constant %s failed.", n->GetName().c_str());
  1846. return FAILED;
  1847. }
  1848. }
  1849. }
  1850. }
  1851. return SUCCESS;
  1852. }
  1853. Status GraphManager::RemoveIsolatedConst(ge::ComputeGraphPtr &compute_graph) {
  1854. GE_CHK_STATUS_RET(RemoveIsolatedConstInThisGraph(compute_graph));
  1855. for (auto &sub_graph : compute_graph->GetAllSubgraphs()) {
  1856. GE_CHK_STATUS_RET(RemoveIsolatedConstInThisGraph(sub_graph));
  1857. }
  1858. return SUCCESS;
  1859. }
  1860. Status GraphManager::OptimizeStage1(ge::ComputeGraphPtr &compute_graph) {
  1861. string options = "default";
  1862. if (GetContext().GetOption("ge.exec.variable_acc", options) != SUCCESS) {
  1863. GELOGI("get ge.exec.variable_acc failed. set default value.");
  1864. }
  1865. PassManager after_merge_passes;
  1866. GE_CHK_STATUS_RET(
  1867. after_merge_passes.AddPass("OptimizeStage1_1::MergeInputMemcpyPass", new (std::nothrow) MergeInputMemcpyPass));
  1868. GE_CHK_STATUS_RET(
  1869. after_merge_passes.AddPass("OptimizeStage1_1::SwitchDataEdgesBypass", new (std::nothrow) SwitchDataEdgesBypass));
  1870. GE_CHK_STATUS_RET(
  1871. after_merge_passes.AddPass("OptimizeStage1_1::ConstantFuseSamePass", new (std::nothrow) ConstantFuseSamePass));
  1872. GE_CHK_STATUS_RET(after_merge_passes.AddPass("OptimizeStage1_1::CommonSubexpressionEliminationPass",
  1873. new (std::nothrow) CommonSubexpressionEliminationPass));
  1874. GE_CHK_STATUS_RET(after_merge_passes.AddPass("OptimizeStage1_1::PermutePass", new (std::nothrow) PermutePass))
  1875. /*
  1876. * The SameTransdataBreadthFusionPass should be called before VariableOpPass, because of the scene following:
  1877. * node3
  1878. * |
  1879. * transdata1 node2
  1880. * | |
  1881. * cast1 transdata2
  1882. * \ /
  1883. * var
  1884. * the node `transdata1` should be moved to the front of the ndoe `cast1`,
  1885. * to ensure that `transdata1` and `transdata2` can be fusion with `var`.
  1886. * But it is a temp solution, because the `SameTransdataBreadthFusionPass`
  1887. * can only move `TransData` but not `Cast` nodes.
  1888. * So if we exchange Cast and TransData, the fusion mechanism will fail.
  1889. */
  1890. GE_CHK_STATUS_RET(after_merge_passes.AddPass("OptimizeStage1_1::SameTransdataBreadthFusionPass",
  1891. new (std::nothrow) SameTransdataBreadthFusionPass))
  1892. GE_IF_BOOL_EXEC(options == "default" || options == "1", GELOGI("turn on variable accelerator");
  1893. GE_CHK_STATUS_RET(after_merge_passes.AddPass("OptimizeStage1_1::VariableOpPass",
  1894. new (std::nothrow) VariableOpPass(&var_acc_ctrl_))))
  1895. GE_CHK_STATUS_RET(after_merge_passes.AddPass("OptimizeStage1_1::TransOpWithoutReshapeFusionPass",
  1896. new (std::nothrow) TransOpWithoutReshapeFusionPass))
  1897. GE_CHK_STATUS_RET(after_merge_passes.AddPass("OptimizeStage1_1::TransOpBreadthFusionPass",
  1898. new (std::nothrow) TransOpBreadthFusionPass))
  1899. GE_TIMESTAMP_START(after_merge_passes);
  1900. auto ret = after_merge_passes.Run(compute_graph);
  1901. GE_TIMESTAMP_END(after_merge_passes, "GraphManager::OptimizeStage1_1");
  1902. if (ret != SUCCESS && ret != NOT_CHANGED) {
  1903. GELOGE(ret, "Run passes when OptimizeStage1_1 failed, ret:%u.", ret);
  1904. return ret;
  1905. }
  1906. GE_DUMP(compute_graph, "OptimizeStage1_1");
  1907. NamesToPass names_to_passes;
  1908. TransOpNearbyAllreduceFusionPass trans_op_nearby_allreduce_fusion_pass;
  1909. ReshapeRemovePass reshape_remove_pass;
  1910. ConstantFoldingPass constant_folding_pass;
  1911. DimensionAdjustPass dimension_adjust_pass;
  1912. EnterPass enter_pass;
  1913. AddNPass addn_pass;
  1914. SwitchDeadBranchElimination switch_dead_branch_elimination;
  1915. SwitchLogicRemovePass switch_logic_remove_pass;
  1916. MergePass merge_pass;
  1917. CastRemovePass cast_remove_pass;
  1918. TransposeTransDataPass transpose_transdata_pass;
  1919. TransOpSymmetryEliminationPass symmetry_elimination_pass;
  1920. DimensionComputePass dimension_compute_pass;
  1921. UselessControlOutRemovePass useless_control_out_remove_pass;
  1922. names_to_passes.emplace_back("EnterPass", &enter_pass);
  1923. names_to_passes.emplace_back("AddNPass", &addn_pass);
  1924. names_to_passes.emplace_back("SwitchDeadBranchElimination", &switch_dead_branch_elimination);
  1925. names_to_passes.emplace_back("SwitchLogicRemovePass", &switch_logic_remove_pass);
  1926. names_to_passes.emplace_back("MergePass", &merge_pass);
  1927. names_to_passes.emplace_back("CastRemovePass", &cast_remove_pass);
  1928. names_to_passes.emplace_back("TransposeTransDataPass", &transpose_transdata_pass);
  1929. names_to_passes.emplace_back("ReshapeRemovePass", &reshape_remove_pass);
  1930. names_to_passes.emplace_back("TransOpSymmetryEliminationPass", &symmetry_elimination_pass);
  1931. names_to_passes.emplace_back("TransOpNearbyAllreduceFusionPass", &trans_op_nearby_allreduce_fusion_pass);
  1932. names_to_passes.emplace_back("DimensionComputePass", &dimension_compute_pass);
  1933. names_to_passes.emplace_back("ConstantFoldingPass", &constant_folding_pass);
  1934. names_to_passes.emplace_back("DimensionAdjustPass", &dimension_adjust_pass);
  1935. names_to_passes.emplace_back("UselessControlOutRemovePass", &useless_control_out_remove_pass);
  1936. GE_TIMESTAMP_START(names_to_passes);
  1937. ret = GEPass(compute_graph).Run(names_to_passes);
  1938. GE_TIMESTAMP_END(names_to_passes, "GraphManager::OptimizeStage1_2");
  1939. if (ret != SUCCESS) {
  1940. GELOGE(ret, "Run passes when OptimizeStage1_2 failed, ret:%u.", ret);
  1941. return ret;
  1942. }
  1943. // Calculate Op/Fe constantfolding cost
  1944. uint64_t op_constant_folding_cost = 0;
  1945. for (auto &it : constant_folding_pass.GetOpConstantFoldingPerfStatistic()) {
  1946. op_constant_folding_cost += it.second.second;
  1947. GELOGI("The time cost of %s constant folding is [%lu] micro second, calls is %lu.",
  1948. it.first.c_str(), it.second.second, it.second.first);
  1949. }
  1950. GEEVENT("[GEPERFTRACE] The time cost of extern constant folding is [%lu] micro second.", op_constant_folding_cost);
  1951. for (auto &it : constant_folding_pass.GetGeConstantFoldingPerfStatistic()) {
  1952. op_constant_folding_cost += it.second.second;
  1953. GELOGI("The time cost of %s constant folding is [%lu] micro second, calls is %lu.",
  1954. it.first.c_str(), it.second.second, it.second.first);
  1955. }
  1956. GE_DUMP(compute_graph, "OptimizeStage1_2");
  1957. PassManager graph_pass;
  1958. // the prune pass should between SwitchPass and SwitchToStreamSwitchPass
  1959. GE_CHK_STATUS_RET(graph_pass.AddPass("OptimizeStage1_3::Migration", new (std::nothrow) SubgraphConstMigrationPass));
  1960. GE_CHK_STATUS_RET(graph_pass.AddPass("OptimizeStage1_3::ArgsClean", new (std::nothrow) UnusedArgsCleanPass));
  1961. GE_CHK_STATUS_RET(graph_pass.AddPass("OptimizeStage1_3::PrunePass", new (std::nothrow) PrunePass))
  1962. GE_CHK_STATUS_RET(graph_pass.AddPass("OptimizeStage1_3::NextIterationPass", new (std::nothrow) NextIterationPass))
  1963. GE_CHK_STATUS_RET(graph_pass.AddPass("OptimizeStage1_3::ControlTriggerPass", new (std::nothrow) ControlTriggerPass))
  1964. GE_CHK_STATUS_RET(
  1965. graph_pass.AddPass("OptimizeStage1_3::MergeToStreamMergePass", new (std::nothrow) MergeToStreamMergePass))
  1966. GE_CHK_STATUS_RET(
  1967. graph_pass.AddPass("OptimizeStage1_3::SwitchToStreamSwitchPass", new (std::nothrow) SwitchToStreamSwitchPass))
  1968. GE_CHK_STATUS_RET(
  1969. graph_pass.AddPass("OptimizeStage1_3::AttachStreamLabelPass", new (std::nothrow) AttachStreamLabelPass))
  1970. GE_CHK_STATUS_RET(graph_pass.AddPass("OptimizeStage1_3::MultiBatchPass", new (std::nothrow) MultiBatchPass(true)))
  1971. GE_CHK_STATUS_RET(graph_pass.AddPass("OptimizeStage1_3::IteratorOpPass", new (std::nothrow) IteratorOpPass))
  1972. GE_CHK_STATUS_RET(graph_pass.AddPass("OptimizeStage1_3::VariableRefUselessControlOutDeletePass",
  1973. new (std::nothrow) VariableRefUselessControlOutDeletePass))
  1974. GE_CHK_STATUS_RET(graph_pass.AddPass("OptimizeStage1_3::ReshapeRecoveryPass", new (std::nothrow) ReshapeRecoveryPass))
  1975. GE_CHK_STATUS_RET(
  1976. graph_pass.AddPass("OptimizeStage1_3::RemoveSameConstPass", new (std::nothrow) RemoveSameConstPass))
  1977. if (options_.train_graph_flag) {
  1978. // Priority: The GlobalStepInsertPass should work before graph partitioner.
  1979. // Reason: Make sure that the var "global_step" can be partitioned to known sub graph and allocated memory
  1980. GE_CHK_STATUS_RET(
  1981. graph_pass.AddPass("OptimizeStage1_3::GlobalStepInsertPass", new (std::nothrow) GlobalStepInsertPass))
  1982. }
  1983. GE_TIMESTAMP_START(graph_pass);
  1984. ret = graph_pass.Run(compute_graph);
  1985. GE_TIMESTAMP_END(graph_pass, "GraphManager::OptimizeStage1_3");
  1986. if (ret != SUCCESS && ret != NOT_CHANGED) {
  1987. GELOGE(ret, "Run passes when OptimizeStage1_3 failed, ret:%u.", ret);
  1988. return ret;
  1989. }
  1990. NamesToPass identity_remove_pass;
  1991. GE_TIMESTAMP_START(identity_remove_pass);
  1992. IdentityPass identity_force_pass(false); // after SwitchToStreamSwitchPass
  1993. identity_remove_pass.emplace_back("IdentityPass", &identity_force_pass);
  1994. ret = GEPass(compute_graph).Run(identity_remove_pass);
  1995. GE_TIMESTAMP_END(identity_remove_pass, "GraphPrepare::IdentityRemovePass");
  1996. if (ret != SUCCESS) {
  1997. GELOGE(ret, "Run identity remove pass for preprocess failed, ret:%u.", ret);
  1998. return ret;
  1999. }
  2000. return SUCCESS;
  2001. }
  2002. Status GraphManager::OptimizeStage2(ge::ComputeGraphPtr &compute_graph) {
  2003. GELOGD("Start optimize after merge sub graph.");
  2004. PassManager after_merge_passes;
  2005. GE_CHK_STATUS_RET(after_merge_passes.AddPass("OptimizeStage2::AfterMergePasses::LinkGenMaskNodesPass",
  2006. new (std::nothrow)
  2007. LinkGenMaskNodesPass(options_.stream_max_parallel_num)));
  2008. GE_TIMESTAMP_START(after_merge_passes);
  2009. auto ret = after_merge_passes.Run(compute_graph);
  2010. GE_TIMESTAMP_END(after_merge_passes, "OptimizeStage2::AfterMergePasses");
  2011. if (ret != SUCCESS && ret != NOT_CHANGED) {
  2012. GELOGE(ret, "Run passes after merge sub graph failed, ret:%d.", ret);
  2013. return ret;
  2014. }
  2015. SetAttrForHcomBroadCastOp(compute_graph);
  2016. NamesToPass names_to_passes;
  2017. ConstantFoldingPass constant_folding_pass;
  2018. ReshapeRemovePass reshape_remove_pass;
  2019. CondRemovePass condition_remove_pass;
  2020. BitcastPass bitcast_pass;
  2021. names_to_passes.emplace_back("ConstantFoldingPass", &constant_folding_pass);
  2022. names_to_passes.emplace_back("ReshapeRemovePass", &reshape_remove_pass);
  2023. names_to_passes.emplace_back("CondRemovePass", &condition_remove_pass);
  2024. names_to_passes.emplace_back("BitcastPass", &bitcast_pass);
  2025. GE_TIMESTAMP_START(names_to_passes);
  2026. ret = GEPass(compute_graph).Run(names_to_passes);
  2027. GE_TIMESTAMP_END(names_to_passes, "OptimizeStage2::MergedGraphNameToPasses");
  2028. if (ret != SUCCESS) {
  2029. GELOGE(ret, "Run ge_passes optimize for OptimizeAfterMergeSubGraph failed, ret:%d.", ret);
  2030. return ret;
  2031. }
  2032. ret = RemoveIsolatedConst(compute_graph);
  2033. if (ret != SUCCESS) {
  2034. GELOGE(ret, "Remove isolated Constant failed, ret:%d.", ret);
  2035. return ret;
  2036. }
  2037. PassManager pass_for_control_attr_optimize;
  2038. if (options_.train_graph_flag) {
  2039. GE_CHK_STATUS_RET(pass_for_control_attr_optimize.AddPass("OptimizeStage2::ControlAttrOptimize::FlowCtrlPass",
  2040. new (std::nothrow) FlowCtrlPass))
  2041. }
  2042. GE_CHK_STATUS_RET(pass_for_control_attr_optimize.AddPass("OptimizeStage2::ControlAttrOptimize::MultiBatchPass",
  2043. new (std::nothrow) MultiBatchPass))
  2044. GE_CHK_STATUS_RET(pass_for_control_attr_optimize.AddPass("OptimizeStage2::AfterMergePasses::RefIdentityDeleteOpPass",
  2045. new (std::nothrow) RefIdentityDeleteOpPass))
  2046. // the value of the attr is the original variable name the ref-variable ref from.
  2047. // The attr will be used when allocating memory,
  2048. // the node marked attr will be output to a variable instead of new-allocated memory.
  2049. // Therefore, ComputeGraph should not delete nodes after `VariableRefDeleteOpPass`
  2050. // to prevent unexpected deletion of nodes marked with attr
  2051. GE_CHK_STATUS_RET(pass_for_control_attr_optimize.AddPass("OptimizeStage2::AfterMergePasses::VariableRefDeleteOpPass",
  2052. new (std::nothrow) VariableRefDeleteOpPass))
  2053. GE_CHK_STATUS_RET(pass_for_control_attr_optimize.AddPass("OptimizeStage2::ControlAttrOptimize::CompileNodesPass",
  2054. new (std::nothrow) CompileNodesPass))
  2055. GE_CHK_STATUS_RET(pass_for_control_attr_optimize.AddPass(
  2056. "OptimizeStage2::AfterMergePasses::MarkGraphUnknownStatusPass", new(std::nothrow) MarkGraphUnknownStatusPass))
  2057. GE_CHK_STATUS_RET(
  2058. pass_for_control_attr_optimize.AddPass("OptimizeStage2::AfterMergePasses::InputOutputConnectionIdentifyPass",
  2059. new (std::nothrow) InputOutputConnectionIdentifyPass))
  2060. // When the input node to be cleared is after a `Data` node, the atomic-clean-node should not be inserted.
  2061. // So The ComputeGraph should not delete nodes after `AtomicAddrCleanPass`
  2062. // to prevent unexpected deletion of nodes after a `Data` node
  2063. GE_CHK_STATUS_RET(pass_for_control_attr_optimize.AddPass("OptimizeStage2::AfterMergePasses::AtomicAddrCleanPass",
  2064. new (std::nothrow) AtomicAddrCleanPass))
  2065. GE_CHK_STATUS_RET(pass_for_control_attr_optimize.AddPass("OptimizeStage2::AfterMergePasses::"
  2066. "EndOfSequenceAddControlPass",
  2067. new (std::nothrow) EndOfSequenceAddControlPass))
  2068. // 'SubgraphPass' solves memory_assign_conflicts by insert MemcpyAsync node, which depends on multi attrs and
  2069. // graph-structure. Passes after 'SubgraphPass' MUST NOT remove MemcpyAsync/Identity nodes in subgraphs.
  2070. GE_CHK_STATUS_RET(pass_for_control_attr_optimize.AddPass("OptimizeStage2::ControlAttrOptimize::SubgraphPass",
  2071. new (std::nothrow) SubgraphPass))
  2072. // 'AttachStreamLabelPass' modifies attr without changing structure of compute_graph
  2073. // All passes after 'AttachStreamLabelPass' MUST mark stream_label on new nodes by self.
  2074. GE_CHK_STATUS_RET(pass_for_control_attr_optimize.AddPass("OptimizeStage2::ControlAttrOptimize::AttachStreamLabelPass",
  2075. new (std::nothrow) AttachStreamLabelPass))
  2076. GE_TIMESTAMP_START(pass_for_control_attr_optimize);
  2077. ret = pass_for_control_attr_optimize.Run(compute_graph);
  2078. GE_TIMESTAMP_END(pass_for_control_attr_optimize, "OptimizeStage2::ControlAttrOptimize");
  2079. if (ret != SUCCESS && ret != NOT_CHANGED) {
  2080. GELOGE(ret, "Run passes when optimize stage 2 failed");
  2081. return ret;
  2082. }
  2083. // Assign functional op labels.
  2084. GE_TIMESTAMP_START(AssignFunctionalLabels);
  2085. LabelAllocator label_allocator(compute_graph);
  2086. GE_CHK_STATUS_RET(label_allocator.AssignFunctionalLabels(), "Assign label failed.");
  2087. GE_TIMESTAMP_END(AssignFunctionalLabels, "ModelBuilder::AssignFunctionalLabels");
  2088. // Add memcpy addr asynchronous node.
  2089. GE_TIMESTAMP_START(AddMemcpyAddrAsyncNode);
  2090. MemcpyAddrAsyncPass memcpy_addr;
  2091. GE_CHK_STATUS_RET(memcpy_addr.Run(compute_graph), "Add memcpy_addr_async node failed.");
  2092. GE_TIMESTAMP_END(AddMemcpyAddrAsyncNode, "MemcpyAddrAsyncPass::Run.");
  2093. // After while sub graph handle, mark all node rw type
  2094. auto result = GetCompilerStages(compute_graph->GetGraphID()).optimizer.HandleMemoryRWConflict(compute_graph);
  2095. if (result != SUCCESS) {
  2096. GELOGW(
  2097. "Mark node rw type failed. It will take some effect on memory_assign_conflicts handling."
  2098. "Please pay attention to it.");
  2099. }
  2100. ChangeConstTypeWhenTraining(compute_graph);
  2101. GELOGI("End optimize after merge sub graph.");
  2102. return SUCCESS;
  2103. }
  2104. void GraphManager::ChangeConstTypeWhenTraining(const ComputeGraphPtr &compute_graph) {
  2105. // The constant for train is CONSTANTOP, and is CONSTANT for inference. They will be unified in future.
  2106. if (options_.train_graph_flag) {
  2107. for (NodePtr &n : compute_graph->GetAllNodes()) {
  2108. // This can ensure that n is not a null pointer
  2109. if (n->GetOpDesc()->GetType() == CONSTANT) {
  2110. n->GetOpDesc()->SetType(CONSTANTOP);
  2111. }
  2112. }
  2113. }
  2114. }
  2115. Status GraphManager::LoadGraphAsync(const GeRootModelPtr &ge_root_model, const GraphNodePtr &graph_node) {
  2116. GELOGI("[LoadGraphAsync] run_graph_flag[%d], graph_id[%u]", options_.run_graph_flag, graph_node->GetGraphId());
  2117. if (options_.run_graph_flag && ge_root_model != nullptr) {
  2118. // synchronization run graph with model
  2119. ModelIdInfo model_id_info;
  2120. bool is_unknown_shape = false;
  2121. GE_CHK_STATUS_RET(ge_root_model->CheckIsUnknownShape(is_unknown_shape));
  2122. if (!is_unknown_shape) {
  2123. if (getenv(kEnvGeuseStaticMemory) != nullptr) {
  2124. GELOGI("[LoadGraphAsync] GE_USE_STATIC_MEMORY is seted.");
  2125. } else {
  2126. auto root_graph = ge_root_model->GetRootGraph();
  2127. GE_CHECK_NOTNULL(root_graph);
  2128. auto name_to_model = ge_root_model->GetSubgraphInstanceNameToModel();
  2129. GeModelPtr ge_model = name_to_model[root_graph->GetName()];
  2130. GE_CHK_STATUS_RET(CheckAndReleaseMemory(ge_model, graph_node));
  2131. }
  2132. }
  2133. GE_TIMESTAMP_START(LoadGraph);
  2134. GE_CHECK_NOTNULL(graph_node->graph_run_async_listener_);
  2135. Status ret =
  2136. GraphLoader::LoadModelOnline(model_id_info.model_id, ge_root_model, graph_node->graph_run_async_listener_);
  2137. GE_TIMESTAMP_EVENT_END(LoadGraph, "GraphManager::LoadGraphAsync");
  2138. if (ret != SUCCESS) {
  2139. GELOGE(ret, "[LoadGraphAsync] LoadGraphAsync Failed");
  2140. graph_node->SetRunFlag(false);
  2141. return ret;
  2142. }
  2143. graph_node->SetLoadFlag(true);
  2144. ge_root_model->SetModelId(model_id_info.model_id);
  2145. graph_node->SetGeRootModel(ge_root_model);
  2146. }
  2147. return SUCCESS;
  2148. }
  2149. Status GraphManager::CheckAndReleaseMemory(const GeModelPtr &ge_model, const GraphNodePtr &graph_node) {
  2150. GELOGI("CheckAndReleaseMemory graph_id[%u]", graph_node->GetGraphId());
  2151. int64_t value = 0;
  2152. bool ret = ge::AttrUtils::GetInt(ge_model, ATTR_MODEL_MEMORY_SIZE, value);
  2153. int64_t memory_size = ret ? value : 0;
  2154. ret = ge::AttrUtils::GetInt(ge_model, ATTR_MODEL_WEIGHT_SIZE, value);
  2155. int64_t weight_size = ret ? value : 0;
  2156. ret = ge::AttrUtils::GetInt(ge_model, MODEL_ATTR_SESSION_ID, value);
  2157. uint64_t session_id = ret ? value : 0;
  2158. int64_t free_memory = 0;
  2159. Status result = GraphLoader::GetMemoryInfo(free_memory);
  2160. if (result != SUCCESS) {
  2161. return result;
  2162. }
  2163. GELOGI(
  2164. "CheckAndReleaseMemory Graph[%u] need memory_size[%ld], weight_size[%ld],"
  2165. " Device[%u] free_memory_size[%ld]",
  2166. graph_node->GetGraphId(), memory_size, weight_size, GetContext().DeviceId(), free_memory);
  2167. if (ge::CheckInt64AddOverflow(memory_size, weight_size) != SUCCESS) {
  2168. GELOGE(INTERNAL_ERROR, "The sum of Memory size and weight size exceeds INT64_MAX");
  2169. return INTERNAL_ERROR;
  2170. }
  2171. if (free_memory >= (memory_size + weight_size)) {
  2172. return SUCCESS;
  2173. }
  2174. std::lock_guard<std::mutex> lock(unload_model_mutex_);
  2175. std::map<GraphId, GraphNodePtr> graph_map;
  2176. {
  2177. std::lock_guard<std::mutex> lock(member_mutex_);
  2178. graph_map = graph_map_;
  2179. }
  2180. for (auto &it : graph_map) {
  2181. auto graph_id = it.second->GetGraphId();
  2182. auto model = it.second->GetGeRootModel();
  2183. if (model == nullptr) {
  2184. continue;
  2185. }
  2186. auto model_id = model->GetModelId();
  2187. // unload model not release
  2188. bool is_unknown_shape = false;
  2189. GE_CHK_STATUS_RET(model->CheckIsUnknownShape(is_unknown_shape));
  2190. if (is_unknown_shape) {
  2191. GELOGD("model_id[%u] graph_id[%u] is unknown model, not release memory", model_id, graph_id);
  2192. continue;
  2193. }
  2194. // not loaded,no need unload
  2195. if (!it.second->GetLoadFlag()) {
  2196. GELOGI("CheckAndReleaseMemory graph[%u] has not been loaded.", graph_id);
  2197. continue;
  2198. }
  2199. uint64_t max_memory_size = 0;
  2200. result = GraphLoader::GetMaxUsedMemory(model_id, max_memory_size);
  2201. if (result != SUCCESS) {
  2202. continue;
  2203. }
  2204. GELOGI("CheckAndReleaseMemory try to UnloadGraph[%u], model[%u] which MaxUsedMemory[%lu].", graph_id, model_id,
  2205. max_memory_size);
  2206. rtError_t rt_ret = rtSetDevice(GetContext().DeviceId());
  2207. if (rt_ret != RT_ERROR_NONE) {
  2208. GELOGE(RT_FAILED, "[GraphManager:] rtSetDevice failed, modelId=%u, graphId=%u.", model_id, graph_id);
  2209. continue;
  2210. }
  2211. result = GraphLoader::DestroyAicpuKernel(session_id, model_id);
  2212. if (result != SUCCESS) {
  2213. GELOGW("[GraphManager:] destroy aicpu kernel failed when dynamic memory, modelId=%u, graphId=%u.", model_id,
  2214. graph_id);
  2215. }
  2216. result = GraphLoader::UnloadModel(model_id);
  2217. if (result != SUCCESS) {
  2218. GELOGW("[GraphManager:] unload model failed, modelId=%u, graphId=%u.", model_id, graph_id);
  2219. }
  2220. rt_ret = rtDeviceReset(GetContext().DeviceId());
  2221. if (rt_ret != RT_ERROR_NONE) {
  2222. GELOGE(RT_FAILED, "[GraphManager:] rtDeviceReset failed, modelId=%u, graphId=%u.", model_id, graph_id);
  2223. continue;
  2224. }
  2225. it.second->SetLoadFlag(false);
  2226. GELOGI("CheckAndReleaseMemory UnloadGraph[%u], model[%u] success and set LoadFlag to false.", graph_id, model_id);
  2227. }
  2228. return SUCCESS;
  2229. }
  2230. Status GraphManager::ProcessSubGraphWithMultiThreads(GraphManager *graph_manager, GraphId root_graph_id,
  2231. const SubGraphInfoPtr &sub_graph_info_ptr,
  2232. const std::string &root_graph_name,
  2233. uint64_t session_id,
  2234. const GEThreadLocalContext &ge_context) {
  2235. if (sub_graph_info_ptr != nullptr && graph_manager != nullptr) {
  2236. GetContext().SetSessionId(session_id);
  2237. GetThreadLocalContext() = ge_context;
  2238. graph_manager->UpdateLocalOmgContext(root_graph_id);
  2239. ComputeGraphPtr compute_graph_tmp = sub_graph_info_ptr->GetSubGraph();
  2240. const std::string &engine_name = sub_graph_info_ptr->GetEngineName();
  2241. GELOGD("ProcessSubGraphWithMultiThreads start, graph name is %s, engine_name is %s, thread id is %lu",
  2242. compute_graph_tmp != nullptr ? compute_graph_tmp->GetName().c_str() : "", engine_name.c_str(),
  2243. pthread_self());
  2244. GE_DUMP(compute_graph_tmp, "OptimizeSubGraphBefore");
  2245. GE_CHECK_NOTNULL(compute_graph_tmp);
  2246. if (!AttrUtils::SetInt(*compute_graph_tmp, ATTR_NAME_ROOT_GRAPH_ID, root_graph_id)) {
  2247. GELOGE(FAILED, "Failed to set attr ATTR_NAME_ROOT_GRAPH_ID for subgraph, graph_id: %u.", root_graph_id);
  2248. return FAILED;
  2249. }
  2250. if (!AttrUtils::SetStr(*compute_graph_tmp, ATTR_NAME_ROOT_GRAPH_NAME, root_graph_name)) {
  2251. GELOGE(FAILED, "Failed to set attr ATTR_NAME_ROOT_GRAPH_NAME for subgraph, \
  2252. root_graph_name: %s.", root_graph_name.c_str());
  2253. return FAILED;
  2254. }
  2255. compute_graph_tmp->SetSessionID(session_id);
  2256. Status ret = graph_manager->GetCompilerStages(root_graph_id).optimizer.OptimizeSubGraph(compute_graph_tmp,
  2257. engine_name);
  2258. if (ret != SUCCESS) {
  2259. GELOGE(ret, "SubGraph optimize Failed %s", engine_name.c_str());
  2260. return ret;
  2261. } else {
  2262. GELOGD("SubGraph optimize success %s", engine_name.c_str());
  2263. }
  2264. GE_DUMP(compute_graph_tmp, "OptimizeSubGraphAfter");
  2265. sub_graph_info_ptr->SetSubGraph(compute_graph_tmp);
  2266. GELOGD("ProcessSubGraphWithMultiThreads end, graph name is %s, engine_name is %s, thread id is %lu",
  2267. compute_graph_tmp != nullptr ? compute_graph_tmp->GetName().c_str() : "", engine_name.c_str(),
  2268. pthread_self());
  2269. } else {
  2270. GELOGE(FAILED, "graph_manager or sub_graph_info_ptr is nullptr");
  2271. return FAILED;
  2272. }
  2273. return SUCCESS;
  2274. }
  2275. // run graph async on session
  2276. Status GraphManager::RunGraphAsync(const GraphId &graph_id, const std::vector<ge::InputTensorInfo> &inputs,
  2277. uint64_t session_id, RunAsyncCallback callback) {
  2278. GELOGI("[GraphManager] Start to run graph async, graph_id=%u, inputsSize=%zu.", graph_id, inputs.size());
  2279. bool ret = prerun_args_q_.Push(PreRunArgs({graph_id, inputs, session_id, GetThreadLocalContext(), callback}));
  2280. if (!ret) {
  2281. GELOGE(FAILED, "[GraphManager] Run graph async failed, graph_id=%u.", graph_id);
  2282. return FAILED;
  2283. }
  2284. GELOGI("[GraphManager] Run graph async success, graph_id=%u.", graph_id);
  2285. return SUCCESS;
  2286. }
  2287. void GraphManager::AddModelCacheHelperToMap(const GraphId &graph_id, uint64_t session_id,
  2288. ComputeGraphPtr &compute_graph) {
  2289. std::shared_ptr<GELib> instance_ptr = ge::GELib::GetInstance();
  2290. if (instance_ptr != nullptr && instance_ptr->IsIncreBuild()) {
  2291. std::lock_guard<std::mutex> lock(member_mutex_);
  2292. auto iter = cache_helper_map_.find(graph_id);
  2293. if (iter == cache_helper_map_.end()) {
  2294. ModelCacheHelperPtr cache_helper = MakeShared<ge::ModelCacheHelper>(session_id, graph_id, compute_graph);
  2295. if (cache_helper != nullptr) {
  2296. cache_helper_map_.emplace(std::make_pair(graph_id, cache_helper));
  2297. } else {
  2298. GELOGW("Cache helper make shared failed, graph_id = %u.", graph_id);
  2299. }
  2300. }
  2301. }
  2302. }
  2303. ModelCacheHelperPtr GraphManager::FindModelCacheHelper(GraphId graph_id) {
  2304. std::lock_guard<std::mutex> lock(member_mutex_);
  2305. auto iter = cache_helper_map_.find(graph_id);
  2306. if (iter != cache_helper_map_.end()) {
  2307. return iter->second;
  2308. }
  2309. return nullptr;
  2310. }
  2311. Status GraphManager::IncreBuild(const GraphNodePtr &graph_node, GeModelPtr &ge_model) {
  2312. std::shared_ptr<GELib> instance_ptr = ge::GELib::GetInstance();
  2313. if (instance_ptr == nullptr || !instance_ptr->IsIncreBuild()) {
  2314. return FAILED;
  2315. }
  2316. const uint32_t graph_id = graph_node->GetGraphId();
  2317. ModelCacheHelperPtr cache_helper = FindModelCacheHelper(graph_id);
  2318. if (cache_helper == nullptr) {
  2319. GELOGW("Can not find ModelCacheHelper of graph[%u]", graph_id);
  2320. return FAILED;
  2321. }
  2322. if (cache_helper->IsModelCacheHit()) {
  2323. GEEVENT("Model cache hit.");
  2324. Status ret = LoadFromCache(graph_node, cache_helper, ge_model);
  2325. if (ret == SUCCESS) {
  2326. return SUCCESS;
  2327. } else {
  2328. GELOGW("Error occurred when load from cache, abandon.");
  2329. }
  2330. } else {
  2331. GEEVENT("Model cache miss.");
  2332. }
  2333. if (SaveCacheBeforeBuild(graph_node->GetGraphId(), cache_helper) != SUCCESS) {
  2334. GELOGW("Error occurred when save cache.");
  2335. }
  2336. return FAILED;
  2337. }
  2338. void GraphManager::ConstructGeInput(std::vector<ge::GeTensor> &ge_inputs, PreRunArgs &args) {
  2339. for (auto const &input : args.input_tensor) {
  2340. std::vector<int64_t> input_dims;
  2341. std::transform(input.dims.begin(), input.dims.end(), std::back_inserter(input_dims),
  2342. [](int64_t x) -> int64_t { return x; });
  2343. GeShape input_shape(input_dims);
  2344. GeTensorDesc input_tensor_desc;
  2345. input_tensor_desc.SetShape(input_shape);
  2346. input_tensor_desc.SetDataType(static_cast<ge::DataType>(input.data_type));
  2347. ge_inputs.emplace_back(input_tensor_desc);
  2348. }
  2349. }
  2350. void GraphManager::PreRunThread(GraphManager *graph_manager) {
  2351. if (prctl(PR_SET_NAME, ("GE_PreRun")) != 0) {
  2352. GELOGW("Set thread name failed.");
  2353. }
  2354. PreRunArgs args;
  2355. while (graph_manager->thread_run_flag_) {
  2356. bool pop_status = graph_manager->prerun_args_q_.Pop(args);
  2357. if (!pop_status) {
  2358. continue;
  2359. }
  2360. GELOGI("A new loop start.");
  2361. GetContext().SetSessionId(args.session_id);
  2362. GetThreadLocalContext() = args.context;
  2363. graph_manager->UpdateLocalOmgContext(args.graph_id);
  2364. std::vector<ge::GeTensor> ge_inputs;
  2365. ConstructGeInput(ge_inputs, args);
  2366. // find graph
  2367. GraphNodePtr graph_node = nullptr;
  2368. Status ret = graph_manager->GetGraphNode(args.graph_id, graph_node);
  2369. if (ret != SUCCESS) {
  2370. ReturnError(graph_manager, args.callback, GE_GRAPH_ALREADY_RUNNING,
  2371. "[RunGraph] graph not exist, graph_id=" + std::to_string(args.graph_id));
  2372. return;
  2373. }
  2374. graph_node->Lock();
  2375. if (graph_node->GetRunFlag()) {
  2376. ReturnError(graph_manager, args.callback, GE_GRAPH_GRAPH_NODE_NULL,
  2377. "[RunGraph] graph already running, graph id=" + std::to_string(args.graph_id));
  2378. graph_node->Unlock();
  2379. return;
  2380. }
  2381. // set graph's run flag
  2382. graph_node->SetRunFlag(true);
  2383. ComputeGraphPtr compute_graph_tmp = GraphUtils::GetComputeGraph(*(graph_node->GetGraph()));
  2384. if (compute_graph_tmp == nullptr) {
  2385. ReturnError(graph_manager, args.callback, GE_GRAPH_GRAPH_NODE_NULL,
  2386. "[RunGraph] compute_graph_tmp is NULL, graph id = %u.");
  2387. graph_node->Unlock();
  2388. return;
  2389. }
  2390. // when set incre build, save cache helper.
  2391. graph_manager->AddModelCacheHelperToMap(args.graph_id, args.session_id, compute_graph_tmp);
  2392. std::vector<GeModelPtr> ge_models;
  2393. if (graph_manager->options_.local_fmk_op_flag) {
  2394. graph_manager->GetCompilerStages(graph_node->GetGraphId()).optimizer.TranFrameOp(compute_graph_tmp);
  2395. }
  2396. // it will not execute graph preprocess, optimize, parition, build if the graph has built successful.
  2397. GELOGI("Start for run graph async.");
  2398. GeRootModelPtr ge_root_model = nullptr;
  2399. if (graph_manager->IsGraphNeedBuild(graph_node)) {
  2400. if (graph_node->GetBuildFlag()) {
  2401. ReturnError(graph_manager, args.callback, PARAM_INVALID,
  2402. "The graph " + std::to_string(graph_node->GetGraphId()) +
  2403. " need to re-build, you should remove it"
  2404. " from GE first, then AddGraph again and rebuild it.");
  2405. graph_node->Unlock();
  2406. return;
  2407. }
  2408. // check need incre build.
  2409. GeModelPtr ge_model = nullptr;
  2410. if (graph_manager->IncreBuild(graph_node, ge_model) != SUCCESS) {
  2411. ret = graph_manager->PreRun(graph_node, ge_inputs, ge_root_model, args.session_id);
  2412. // release rts generate context
  2413. RtContextUtil::GetInstance().DestroyRtContexts(args.session_id, graph_node->GetGraphId());
  2414. if (ret != SUCCESS) {
  2415. graph_node->SetRunFlag(false);
  2416. if (!ge::Analyzer::GetInstance()->IsEnableNetAnalyzeDebug()) {
  2417. ReturnError(graph_manager, args.callback, ret, "PreRun Failed, thread exit..");
  2418. graph_node->Unlock();
  2419. return;
  2420. } else {
  2421. ReturnError(graph_manager, graph_node, args.callback, ret, "PreRun Failed, keep geop continue!");
  2422. graph_node->Unlock();
  2423. continue;
  2424. }
  2425. }
  2426. }
  2427. graph_node->SetBuildFlag(true);
  2428. graph_manager->var_acc_ctrl_.SetGraphBuildEnd(graph_node->GetGraphId());
  2429. } else {
  2430. ge_root_model = graph_node->GetGeRootModel();
  2431. }
  2432. graph_manager->run_args_q_.Push(RunArgs( { graph_node, args.graph_id, args.session_id, args.input_tensor,
  2433. ge_root_model, GetThreadLocalContext(), args.callback }));
  2434. GELOGI("Loop end.");
  2435. }
  2436. }
  2437. void GraphManager::ParseInputsDimsForData(const std::vector<InputTensorInfo> &input_tensor) {
  2438. GELOGD("Start parse input dims from data.");
  2439. for (size_t i = 0; i < input_tensor.size(); ++i) {
  2440. std::vector<int64_t> dynamic_dim;
  2441. for (size_t j = 0; j < input_tensor[i].dims.size(); ++j) {
  2442. dynamic_dim.emplace_back(input_tensor[i].dims[j]);
  2443. }
  2444. GELOGD("Input tensor dims is %s.", formats::JoinToString(dynamic_dim).c_str());
  2445. GetLocalOmgContext().user_real_input_dims.emplace_back(input_tensor[i].dims);
  2446. }
  2447. }
  2448. Status GraphManager::ParseInputsDimsForGetNexNosinkAndData(const vector<NodePtr> &dynamic_nodes,
  2449. const std::vector<InputTensorInfo> &input_tensor) {
  2450. GELOGD("Start parse inputs dims when coexist data and getnext sink.");
  2451. for (size_t i = 0; i < dynamic_nodes.size(); ++i) {
  2452. auto op_desc = dynamic_nodes.at(i)->GetOpDesc();
  2453. if (op_desc == nullptr) {
  2454. continue;
  2455. }
  2456. GeAttrValue::INT index = 0;
  2457. if (!(AttrUtils::GetInt(op_desc, ATTR_NAME_INDEX, index))) {
  2458. GELOGE(PARAM_INVALID, "Get index from attr failed");
  2459. return PARAM_INVALID;
  2460. }
  2461. if (static_cast<size_t>(index) > input_tensor.size()) {
  2462. GELOGE(PARAM_INVALID, "The count of input tensor should be equal to the count of data.");
  2463. return PARAM_INVALID;
  2464. }
  2465. GetLocalOmgContext().user_real_input_dims.emplace_back(input_tensor.at(index).dims);
  2466. GELOGI("Shape dims of %d data is %s.", index, formats::JoinToString(input_tensor.at(index).dims).c_str());
  2467. }
  2468. return SUCCESS;
  2469. }
  2470. Status GraphManager::ParseInputsDims(const std::vector<InputTensorInfo> &input_tensor) {
  2471. GELOGI("Start parse input dims of %zu input tensor.", input_tensor.size());
  2472. GetLocalOmgContext().user_real_input_dims.clear();
  2473. if (!GetLocalOmgContext().dynamic_node_type.empty()) {
  2474. vector<NodePtr> data_nodes;
  2475. vector<NodePtr> getnext_nosink_nodes;
  2476. data_nodes = compute_graph_->TryGetExtAttr(kExtAttrDataNodes, data_nodes);
  2477. getnext_nosink_nodes = compute_graph_->TryGetExtAttr(kExtAttrGetNextNoSink, getnext_nosink_nodes);
  2478. if (GetLocalOmgContext().dynamic_node_type == DATA) {
  2479. if (getnext_nosink_nodes.empty()) {
  2480. // just data or data+getnext_sink
  2481. ParseInputsDimsForData(input_tensor);
  2482. } else {
  2483. // data+getnext_nosink, but only need to get shape_dims of data
  2484. if (ParseInputsDimsForGetNexNosinkAndData(data_nodes, input_tensor) != SUCCESS) {
  2485. GELOGE(PARAM_INVALID, "Failed to parse dims from data, when data coexist with getnext nosink.");
  2486. return PARAM_INVALID;
  2487. }
  2488. }
  2489. } else {
  2490. if (getnext_nosink_nodes.empty()) {
  2491. // just getnext_sink or getnext_sink+data, need to get shape_dims from aicpu op
  2492. GELOGI("Need to get dims from aicpu op: GETDYNAMICDIMS.");
  2493. return SUCCESS;
  2494. } else {
  2495. if (data_nodes.empty()) {
  2496. // just getnext_nosink
  2497. ParseInputsDimsForData(input_tensor);
  2498. } else {
  2499. // getnext_nosink + data, but only need to get shape_dims of getnext_nosink
  2500. if (ParseInputsDimsForGetNexNosinkAndData(getnext_nosink_nodes, input_tensor) != SUCCESS) {
  2501. GELOGE(PARAM_INVALID, "Failed to parse dims from getnext nosink, when data coexist with getnext nosink");
  2502. return PARAM_INVALID;
  2503. }
  2504. }
  2505. }
  2506. }
  2507. }
  2508. GELOGI("Parse %zu inputs dims success.", GetLocalOmgContext().user_real_input_dims.size());
  2509. return SUCCESS;
  2510. }
  2511. void GraphManager::RunThread(GraphManager *graph_manager) {
  2512. if (prctl(PR_SET_NAME, ("GE_Run")) != 0) {
  2513. GELOGW("Set thread name failed.");
  2514. }
  2515. RunArgs args;
  2516. while (graph_manager->thread_run_flag_) {
  2517. bool pop_status = graph_manager->run_args_q_.Pop(args);
  2518. if (!pop_status) {
  2519. continue;
  2520. }
  2521. GELOGI("A new loop start.");
  2522. GetContext().SetSessionId(args.session_id);
  2523. GetThreadLocalContext() = args.context;
  2524. graph_manager->UpdateLocalOmgContext(args.graph_id);
  2525. if (args.graph_node->graph_run_async_listener_ != nullptr) {
  2526. args.graph_node->graph_run_async_listener_->SetCallback(args.callback);
  2527. }
  2528. Status ret;
  2529. // parse inputs.dims to vector<vector<uint64_t>> dynamic_dims
  2530. ret = graph_manager->ParseInputsDims(args.input_tensor);
  2531. if (ret != SUCCESS) {
  2532. ReturnError(graph_manager, args.callback, ret, "ParseInputsDims failed, thread exit.");
  2533. args.graph_node->Unlock();
  2534. return;
  2535. }
  2536. if (!args.graph_node->GetLoadFlag()) {
  2537. ret = graph_manager->LoadGraphAsync(args.ge_root_model, args.graph_node);
  2538. if (ret != SUCCESS || args.ge_root_model == nullptr) {
  2539. StopQueue(graph_manager);
  2540. ReturnError(graph_manager, args.callback, ret, "LoadGraphAsync failed, thread exit.");
  2541. args.graph_node->Unlock();
  2542. return;
  2543. }
  2544. args.graph_node->SetLoadFlag(true);
  2545. GELOGI("LoadGraph[%u], model[%u] success and set LoadFlag to true.", args.graph_node->GetGraphId(),
  2546. args.ge_root_model->GetModelId());
  2547. }
  2548. if (graph_manager->GetTrainFlag()) {
  2549. ret = graph_manager->graph_executor_.SetGraphContext(graph_manager->GetGraphContext());
  2550. if (ret != SUCCESS) {
  2551. GELOGW("[GraphManager] SetGraphContext failed, graph_id=%u.", args.graph_id);
  2552. }
  2553. graph_manager->graph_executor_.SetTrainFlag(graph_manager->options_.train_graph_flag);
  2554. }
  2555. ret = graph_manager->graph_executor_.ExecuteGraphAsync(args.graph_id, args.graph_node->GetGeRootModel(),
  2556. args.input_tensor);
  2557. args.graph_node->SetRunFlag(false);
  2558. if (ret != SUCCESS) {
  2559. ReturnError(graph_manager, args.callback, ret, "ExecuteGraphAsync failed, thread exit.");
  2560. args.graph_node->Unlock();
  2561. return;
  2562. }
  2563. args.graph_node->Unlock();
  2564. GELOGI("[GraphManager] Run graph async success, graph_id=%u.", args.graph_id);
  2565. }
  2566. }
  2567. void GraphManager::StopQueue(GraphManager *graph_manager) {
  2568. if (graph_manager == nullptr) {
  2569. return;
  2570. }
  2571. graph_manager->thread_run_flag_.store(false);
  2572. graph_manager->prerun_args_q_.Stop();
  2573. graph_manager->run_args_q_.Stop();
  2574. }
  2575. void GraphManager::ReturnError(GraphManager *graph_manager, RunAsyncCallback callback, Status ret, const string &log) {
  2576. if (graph_manager == nullptr) {
  2577. return;
  2578. }
  2579. StopQueue(graph_manager);
  2580. GELOGE(ret, "%s.", log.c_str());
  2581. std::vector<ge::OutputTensorInfo> outputs;
  2582. callback(ret, outputs);
  2583. }
  2584. void GraphManager::ReturnError(GraphManager *graph_manager, GraphNodePtr &graph_node,
  2585. RunAsyncCallback callback, Status ret, const string &log) {
  2586. std::vector<ge::OutputTensorInfo> outputs;
  2587. auto compute_graph = GraphUtils::GetComputeGraph(*graph_node->GetGraph());
  2588. if (graph_manager == nullptr || compute_graph == nullptr) {
  2589. GELOGE(GRAPH_FAILED, "[Analyze Mode] compute graph is null!");
  2590. callback(GRAPH_FAILED, outputs);
  2591. return;
  2592. }
  2593. for (const auto &node : compute_graph->GetAllNodes()) {
  2594. if (node->GetType() != "NetOutput") {
  2595. continue;
  2596. }
  2597. for (size_t i = 0; i < node->GetAllInDataAnchorsSize(); i++) {
  2598. auto input_desc = node->GetOpDesc()->MutableInputDesc(i);
  2599. ge::OutputTensorInfo tensor;
  2600. tensor.dims = input_desc->GetShape().GetDims();
  2601. tensor.data_type = static_cast<uint32_t>(input_desc->GetDataType());
  2602. int64_t len = 1;
  2603. if (input_desc->GetShape().GetDims() != std::vector<int64_t>({})) {
  2604. len = input_desc->GetShape().GetShapeSize();
  2605. }
  2606. if (len < 0) {
  2607. GELOGE(GRAPH_FAILED, "Analyze Mode does not support GEOP output unknown shape!");
  2608. callback(GRAPH_FAILED, outputs);
  2609. return;
  2610. } else if (len == 0) {
  2611. GELOGI("getted shape size is 0.Do process as empty tensor!");
  2612. len = 1;
  2613. }
  2614. auto size = GetSizeByDataType(input_desc->GetDataType());
  2615. if (size <= 0) {
  2616. GELOGE(PARAM_INVALID, "Failed to get cube size, the data type %s is invalid",
  2617. ge::TypeUtils::DataTypeToSerialString(input_desc->GetDataType()).c_str());
  2618. callback(GRAPH_FAILED, outputs);
  2619. return;
  2620. }
  2621. if (CheckInt64MulOverflow(len, static_cast<int64_t>(size)) != true) {
  2622. GELOGE(MEMALLOC_FAILED, "int64 multiply happens overflow! a:%ld b:%d", len, size);
  2623. callback(GRAPH_FAILED, outputs);
  2624. return;
  2625. }
  2626. tensor.length = len * size;
  2627. tensor.data.reset(new(std::nothrow) uint8_t[tensor.length]);
  2628. // To avoid global step too small and can not stop, totally set a bigger value
  2629. for (int64_t i = 0; i < tensor.length; i++) {
  2630. tensor.data[i] = 0x7F; // here stands for a positive max value
  2631. }
  2632. outputs.emplace_back(std::move(tensor));
  2633. }
  2634. }
  2635. callback(SUCCESS, outputs);
  2636. return;
  2637. }
  2638. bool GraphManager::IsGraphNeedRebuild(uint32_t graph_id) {
  2639. // find graph
  2640. GraphNodePtr graph_node = nullptr;
  2641. Status ret = GetGraphNode(graph_id, graph_node);
  2642. if (ret != SUCCESS) {
  2643. GELOGE(ret, "[RunGraph] graph not exist, graph_id=%u.", graph_id);
  2644. return true;
  2645. }
  2646. if (graph_node == nullptr) {
  2647. GELOGE(GE_GRAPH_GRAPH_NODE_NULL, "[RunGraph] graph node is NULL, graphId=%u.", graph_id);
  2648. return true;
  2649. }
  2650. return IsGraphNeedBuild(graph_node);
  2651. }
  2652. bool GraphManager::IsGraphNeedBuild(const GraphNodePtr &graph_node) {
  2653. return !graph_node->GetBuildFlag() || var_acc_ctrl_.IsGraphNeedRebuild(graph_node->GetGraphId());
  2654. }
  2655. const map<std::string, std::string> *GraphManager::GetGraphOptions(uint32_t graph_id) {
  2656. GraphNodePtr graph_node = nullptr;
  2657. Status ret = GetGraphNode(graph_id, graph_node);
  2658. if (ret != SUCCESS) {
  2659. GELOGE(ret, "[RunGraph] graph not exist, graph_id=%u.", graph_id);
  2660. return nullptr;
  2661. }
  2662. if (!graph_node) {
  2663. GELOGE(GE_GRAPH_GRAPH_NODE_NULL, "[RunGraph] graph node is NULL, graph_id=%u.", graph_id);
  2664. return nullptr;
  2665. }
  2666. return &(graph_node->GetOptions());
  2667. }
  2668. void GraphManager::SetOptionsRunGraphFlag(bool run_graph_flag) { options_.run_graph_flag = run_graph_flag; }
  2669. Status GraphManager::OptimizeSubgraph(const GraphNodePtr &graph_node, ComputeGraphPtr &compute_graph,
  2670. uint64_t session_id) {
  2671. // graph partition
  2672. // Stage partition, only for root graph
  2673. GE_TIMESTAMP_START(StagePartition);
  2674. StagePartitioner stage_partitioner(compute_graph);
  2675. auto ret = stage_partitioner.Partition();
  2676. if (ret != SUCCESS) {
  2677. GELOGE(ret, "Graph partition by stage Failed");
  2678. return ret;
  2679. }
  2680. GE_TIMESTAMP_EVENT_END(StagePartition, "OptimizeSubgraph::StagePartition");
  2681. // all sub graph list of root graph and sub graph
  2682. GE_TIMESTAMP_START(GraphPartitionDynamicShape);
  2683. DynamicShapePartitioner dynamic_shape_partitioner(compute_graph);
  2684. ret = dynamic_shape_partitioner.Partition();
  2685. if (ret != SUCCESS) {
  2686. GELOGE(ret, "Graph partition by dynamic shape Failed");
  2687. return ret;
  2688. }
  2689. bool dynamic_shape_partitioned = false;
  2690. if (!AttrUtils::GetBool(*compute_graph, ATTR_NAME_DYNAMIC_SHAPE_PARTITIONED, dynamic_shape_partitioned)) {
  2691. GELOGE(FAILED, "failed get dynamic shape partitioned flag on partitioned graph.");
  2692. return FAILED;
  2693. }
  2694. GE_TIMESTAMP_EVENT_END(GraphPartitionDynamicShape, "OptimizeSubgraph::GraphPartitionDynamicShape");
  2695. GE_TIMESTAMP_START(GraphPartition);
  2696. GraphPartitioner &partitioner = GetCompilerStages(graph_node->GetGraphId()).partitioner;
  2697. ret = partitioner.Partition(compute_graph, GraphPartitioner::kPartitioning);
  2698. if (ret != SUCCESS) {
  2699. GELOGE(ret, "Graph partition Failed");
  2700. return ret;
  2701. }
  2702. GE_TIMESTAMP_EVENT_END(GraphPartition, "OptimizeSubgraph::Partition1");
  2703. GE_TIMESTAMP_START(SetSubgraph);
  2704. ret = SetSubgraph(session_id, compute_graph, partitioner);
  2705. if (ret != SUCCESS) {
  2706. GELOGE(ret, "Graph set subgraph Failed");
  2707. return ret;
  2708. }
  2709. GE_TIMESTAMP_EVENT_END(SetSubgraph, "OptimizeSubgraph::SetSubGraph");
  2710. if ((options_.build_mode == BUILD_MODE_TUNING) &&
  2711. (options_.build_step == BUILD_STEP_BEFORE_UB_MATCH || options_.build_step == BUILD_STEP_AFTER_BUILDER ||
  2712. options_.build_step == BUILD_STEP_AFTER_BUILDER_SUB)) {
  2713. GE_TIMESTAMP_START(ConvertGraphToFile);
  2714. std::string tuning_path;
  2715. (void) GetContext().GetOption(TUNING_PATH, tuning_path);
  2716. Status ret = ConvertGraphToFile(compute_graph, partitioner, tuning_path,
  2717. (options_.build_step == BUILD_STEP_AFTER_BUILDER));
  2718. if (ret != SUCCESS) {
  2719. GELOGE(ret, "Convert graph[%s] to file failed", compute_graph->GetName().c_str());
  2720. return ret;
  2721. }
  2722. GE_TIMESTAMP_EVENT_END(ConvertGraphToFile, "OptimizeSubgraph::ConvertGraphToFile");
  2723. return SUCCESS;
  2724. }
  2725. ComputeGraphPtr merged_compute_graph = nullptr;
  2726. std::vector<ComputeGraphPtr> merged_sub_graph_list;
  2727. GE_TIMESTAMP_START(MergeSubgraph);
  2728. ret = MergeSubGraph(merged_compute_graph, compute_graph, graph_node->GetGraphId());
  2729. if (ret != SUCCESS) {
  2730. GELOGE(ret, "Merge SubGraph Failed");
  2731. return ret;
  2732. }
  2733. GE_CHECK_NOTNULL(merged_compute_graph);
  2734. merged_compute_graph->SetSessionID(session_id);
  2735. merged_compute_graph->SetGraphID(graph_node->GetGraphId());
  2736. merged_compute_graph->SetNeedIteration(compute_graph->GetNeedIteration());
  2737. for (auto &sub_graph : merged_compute_graph->GetAllSubgraphs()) {
  2738. sub_graph->SetSessionID(session_id);
  2739. sub_graph->SetGraphID(graph_node->GetGraphId());
  2740. }
  2741. GE_TIMESTAMP_EVENT_END(MergeSubgraph, "OptimizeSubgraph::MergeSubGraph");
  2742. GE_DUMP(merged_compute_graph, "mergedComputeGraph");
  2743. compute_graph = merged_compute_graph;
  2744. if (!AttrUtils::SetBool(*compute_graph, ATTR_NAME_DYNAMIC_SHAPE_PARTITIONED, dynamic_shape_partitioned)) {
  2745. GELOGE(FAILED, "failed set dynamic shape partitioned flag on partitioned graph.");
  2746. return FAILED;
  2747. }
  2748. return SUCCESS;
  2749. }
  2750. Status GraphManager::ConvertGraphToFile(ComputeGraphPtr &compute_graph, GraphPartitioner &partitioner, std::string path,
  2751. bool exe_flag) {
  2752. GE_CHECK_NOTNULL(compute_graph);
  2753. GELOGI("compute_graph [%s] path [%s] Enter ConvertGraphToFile.", compute_graph->GetName().c_str(), path.c_str());
  2754. std::vector<ComputeGraphPtr> non_tuning_subgraphs;
  2755. auto input_node_sub_graph_map = partitioner.graph_2_input_subgraph_;
  2756. const auto &input_subgraph_info = input_node_sub_graph_map[compute_graph];
  2757. GE_CHECK_NOTNULL(input_subgraph_info);
  2758. ComputeGraphPtr input_graph_tmp = input_subgraph_info->GetSubGraph();
  2759. non_tuning_subgraphs.push_back(input_graph_tmp);
  2760. auto sub_graph_map = partitioner.GetSubGraphMap();
  2761. const auto &subgraph_infos = sub_graph_map[compute_graph];
  2762. std::vector<ComputeGraphPtr> tuning_subgraphs;
  2763. for (const auto &sub_graph_info_ptr: subgraph_infos) {
  2764. GE_CHECK_NOTNULL(sub_graph_info_ptr);
  2765. ComputeGraphPtr sub_graph_tmp = sub_graph_info_ptr->GetSubGraph();
  2766. // need to tuning
  2767. if (sub_graph_info_ptr->GetEngineName() == kVectorEngine || sub_graph_info_ptr->GetEngineName() == kAIcoreEngine) {
  2768. tuning_subgraphs.push_back(sub_graph_tmp);
  2769. } else {
  2770. non_tuning_subgraphs.push_back(sub_graph_tmp);
  2771. }
  2772. }
  2773. return TuningUtils::ConvertGraphToFile(tuning_subgraphs, non_tuning_subgraphs, exe_flag, path);
  2774. }
  2775. Status GraphManager::Build(const GraphNodePtr &graph_node, ComputeGraphPtr &compute_graph,
  2776. GeRootModelPtr &ge_root_model, uint64_t session_id) {
  2777. // build
  2778. if (compute_graph != nullptr) {
  2779. std::string graph_name = compute_graph->GetName();
  2780. graph_name.append("_");
  2781. graph_name.append(std::to_string(graph_node->GetGraphId()));
  2782. compute_graph->SetName(graph_name);
  2783. }
  2784. std::vector<SubGraphInfoPtr> sub_graph_list;
  2785. auto ret = GetCompilerStages(graph_node->GetGraphId()).builder.Build(compute_graph, sub_graph_list, ge_root_model,
  2786. session_id);
  2787. if (ret != SUCCESS) {
  2788. GELOGE(ret, "SubGraph build Failed.");
  2789. return ret;
  2790. }
  2791. bool is_always_dump = false;
  2792. if (!PropertiesManager::Instance().GetDumpProperties(session_id).GetDumpPath().empty()) {
  2793. is_always_dump = true;
  2794. }
  2795. GraphUtils::DumpGEGraph(compute_graph, "Build", is_always_dump);
  2796. GraphUtils::DumpGEGraphToOnnx(*compute_graph, "Build");
  2797. graph_node->SetGeRootModel(ge_root_model);
  2798. return SUCCESS;
  2799. }
  2800. Status GraphManager::GenCheckPointGraph(const std::map<std::string, GeTensorDesc> &all_variables, Graph &graph) {
  2801. ge::ComputeGraphPtr compute_graph = MakeShared<ComputeGraph>(kCheckPointGraph);
  2802. GE_CHECK_NOTNULL(compute_graph);
  2803. OpDescPtr save_desc = MakeShared<ge::OpDesc>(compute_graph->GetName() + "_" + kSave, kSave);
  2804. GE_CHECK_NOTNULL(save_desc);
  2805. uint32_t save_index = 0;
  2806. for (auto iter = all_variables.begin(); iter != all_variables.end(); ++iter) {
  2807. GE_CHK_GRAPH_STATUS_RET(save_desc->AddInputDesc(save_index, iter->second));
  2808. save_index++;
  2809. }
  2810. NodePtr save_node = compute_graph->AddNode(save_desc);
  2811. uint32_t index = 0;
  2812. for (auto iter = all_variables.begin(); iter != all_variables.end(); ++iter) {
  2813. OpDescPtr var_desc = MakeShared<ge::OpDesc>(iter->first, VARIABLE);
  2814. GE_CHECK_NOTNULL(var_desc);
  2815. if (!AttrUtils::SetBool(var_desc, kCheckPointForGetVar, true)) {
  2816. GELOGW("Set check point graph attr failed.");
  2817. }
  2818. GE_CHK_GRAPH_STATUS_RET(var_desc->AddOutputDesc(iter->second));
  2819. NodePtr var_node = compute_graph->AddNode(var_desc);
  2820. GE_CHK_STATUS(GraphUtils::AddEdge(var_node->GetOutDataAnchor(0), save_node->GetInDataAnchor(index)),
  2821. "Add edge[%s->%s] fail.", var_node->GetName().c_str(), save_node->GetName().c_str());
  2822. index++;
  2823. }
  2824. compute_graph->Dump();
  2825. graph = GraphUtils::CreateGraphFromComputeGraph(compute_graph);
  2826. return SUCCESS;
  2827. }
  2828. Status GraphManager::SaveVariables(const Graph &graph, const std::vector<std::string> &var_names,
  2829. const std::vector<Tensor> &outputs, std::vector<Tensor> &var_values) {
  2830. map<string, Tensor> var_results;
  2831. GE_CHK_STATUS_RET(SaveCheckPointResult(graph, outputs, var_results), "Save check point result failed.");
  2832. if (!var_names.empty()) {
  2833. for (const auto &var_name : var_names) {
  2834. if (var_results.count(var_name) == 0) {
  2835. GELOGE(FAILED, "Fetch var[%s] value failed.", var_name.c_str());
  2836. return FAILED;
  2837. } else {
  2838. auto var_tensor = var_results[var_name].GetTensorDesc();
  2839. var_tensor.SetName(var_name);
  2840. var_results[var_name].SetTensorDesc(var_tensor);
  2841. var_values.emplace_back(var_results[var_name]);
  2842. }
  2843. }
  2844. } else {
  2845. for (auto iter = var_results.begin(); iter != var_results.end(); ++iter) {
  2846. string var_name = iter->first;
  2847. auto var_tensor = iter->second.GetTensorDesc();
  2848. var_tensor.SetName(var_name);
  2849. iter->second.SetTensorDesc(var_tensor);
  2850. var_values.emplace_back(iter->second);
  2851. }
  2852. }
  2853. return SUCCESS;
  2854. }
  2855. Status GraphManager::SaveCheckPointResult(const Graph &graph, const std::vector<Tensor> &outputs,
  2856. map<string, Tensor> &var_results) {
  2857. auto compute_graph = GraphUtils::GetComputeGraph(graph);
  2858. NodePtr netoutput_node = nullptr;
  2859. for (const auto &node : compute_graph->GetAllNodes()) {
  2860. if (node->GetType() == NETOUTPUT) {
  2861. netoutput_node = node;
  2862. break;
  2863. }
  2864. }
  2865. GE_CHECK_NOTNULL(netoutput_node);
  2866. for (const auto &in : netoutput_node->GetAllInDataAnchors()) {
  2867. auto out_anchor = in->GetPeerOutAnchor();
  2868. GE_CHECK_NOTNULL(out_anchor);
  2869. auto peer_node = out_anchor->GetOwnerNode();
  2870. while (peer_node->GetType() != VARIABLE) {
  2871. if (peer_node->GetAllInDataAnchors().size() != 1) {
  2872. GELOGE(FAILED, "peer_node [%s] has more than 1 input in checkpoint Graph.", peer_node->GetName().c_str());
  2873. return FAILED;
  2874. }
  2875. auto peer_node_in_anchor = peer_node->GetAllInDataAnchors().at(0);
  2876. auto peer_node_out_anchor = peer_node_in_anchor->GetPeerOutAnchor();
  2877. if (peer_node_out_anchor != nullptr) {
  2878. peer_node = peer_node_out_anchor->GetOwnerNode();
  2879. if (peer_node->GetType() == VARIABLE) {
  2880. break;
  2881. }
  2882. }
  2883. }
  2884. if (peer_node->GetType() != VARIABLE) {
  2885. GELOGE(FAILED, " peer_node %s is not variable in checkpoint Graph.", peer_node->GetName().c_str());
  2886. return FAILED;
  2887. }
  2888. auto var_name = peer_node->GetName();
  2889. GELOGI("[GraphManager] SaveVariables, varName is %s.", var_name.c_str());
  2890. if (in->GetIdx() >= static_cast<int>(outputs.size())) {
  2891. GELOGE(FAILED, "variable index[%d] out of range[%zu].", in->GetIdx(), outputs.size());
  2892. return FAILED;
  2893. }
  2894. var_results.emplace(var_name, outputs.at(in->GetIdx()));
  2895. }
  2896. return SUCCESS;
  2897. }
  2898. void GraphManager::AddLocalOmgContext(GraphId graph_id, const OmgContext &omg_context) {
  2899. std::lock_guard<std::mutex> lock(member_mutex_);
  2900. omg_contexts_.emplace(graph_id, omg_context);
  2901. SetLocalOmgContext(omg_contexts_[graph_id]);
  2902. }
  2903. void GraphManager::UpdateLocalOmgContext(GraphId graph_id) {
  2904. std::lock_guard<std::mutex> lock(member_mutex_);
  2905. auto iter = omg_contexts_.find(graph_id);
  2906. if (iter != omg_contexts_.end()) {
  2907. SetLocalOmgContext(iter->second);
  2908. } else {
  2909. GELOGW("OmgContext of graph %u not found.", graph_id);
  2910. }
  2911. }
  2912. GraphManager::CompilerStages &GraphManager::GetCompilerStages(GraphId graph_id) {
  2913. std::lock_guard<std::mutex> lock(member_mutex_);
  2914. return compiler_stages_[graph_id];
  2915. }
  2916. void GraphManager::RemoveCompilerStages(GraphId graph_id) {
  2917. std::lock_guard<std::mutex> lock(member_mutex_);
  2918. compiler_stages_.erase(graph_id);
  2919. }
  2920. } // namespace ge

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