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

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