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

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