You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

graph_manager.cc 136 kB

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

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