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

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