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

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