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

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