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_preprocess.cc 86 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
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073
  1. /**
  2. * Copyright 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/preprocess/graph_preprocess.h"
  17. #include <map>
  18. #include <set>
  19. #include <string>
  20. #include "common/formats/format_transfers/format_transfer_fractal_nz.h"
  21. #include "common/formats/format_transfers/format_transfer_nchw_nc1hwc0.h"
  22. #include "common/formats/format_transfers/format_transfer_nhwc_nc1hwc0.h"
  23. #include "common/formats/format_transfers/format_transfer_transpose.h"
  24. #include "common/formats/utils/formats_trans_utils.h"
  25. #include "common/helper/model_helper.h"
  26. #include "common/math/math_util.h"
  27. #include "common/op/ge_op_utils.h"
  28. #include "graph/common/ge_call_wrapper.h"
  29. #include "graph/common/local_context.h"
  30. #include "graph/common/transop_util.h"
  31. #include "graph/ge_context.h"
  32. #include "graph/shape_refiner.h"
  33. #include "graph/manager/graph_var_manager.h"
  34. #include "graph/manager/util/rt_context_util.h"
  35. #include "graph/optimize/graph_optimize.h"
  36. #include "graph/passes/addn_pass.h"
  37. #include "graph/passes/aicpu_constant_folding_pass.h"
  38. #include "graph/passes/assert_pass.h"
  39. #include "ge/ge_api_types.h"
  40. #ifdef ONLY_COMPILE_OPEN_SRC
  41. #include "graph/passes/assign_remove_pass.h"
  42. #endif
  43. #include "graph/passes/common_subexpression_elimination_pass.h"
  44. #include "graph/passes/cond_pass.h"
  45. #include "graph/passes/cond_remove_pass.h"
  46. #include "graph/passes/constant_folding_pass.h"
  47. #include "graph/passes/dimension_adjust_pass.h"
  48. #include "graph/passes/dimension_compute_pass.h"
  49. #include "graph/passes/dropout_pass.h"
  50. #include "graph/passes/enter_pass.h"
  51. #include "graph/passes/for_pass.h"
  52. #include "graph/passes/guarantee_const_pass.h"
  53. #include "graph/passes/hccl_group_pass.h"
  54. #include "graph/passes/identity_pass.h"
  55. #include "graph/passes/infershape_pass.h"
  56. #include "graph/passes/net_output_pass.h"
  57. #include "graph/passes/no_use_reshape_remove_pass.h"
  58. #include "graph/passes/parallel_concat_start_op_pass.h"
  59. #include "graph/passes/placeholder_with_default_pass.h"
  60. #include "graph/passes/prevent_gradient_pass.h"
  61. #include "graph/passes/print_op_pass.h"
  62. #include "graph/passes/prune_pass.h"
  63. #include "graph/passes/replace_transshape_pass.h"
  64. #include "graph/passes/replace_with_empty_const_pass.h"
  65. #include "graph/passes/resource_pair_add_control_pass.h"
  66. #include "graph/passes/resource_pair_remove_control_pass.h"
  67. #include "graph/passes/save_pass.h"
  68. #include "graph/passes/shape_operate_op_remove_pass.h"
  69. #include "graph/passes/snapshot_pass.h"
  70. #include "graph/passes/stop_gradient_pass.h"
  71. #include "graph/passes/unused_const_pass.h"
  72. #include "graph/passes/var_is_initialized_op_pass.h"
  73. #include "graph/passes/variable_prepare_op_pass.h"
  74. #include "graph/preprocess/insert_op/util_insert_aipp_op.h"
  75. #include "graph/utils/type_utils.h"
  76. #include "inc/pass_manager.h"
  77. #include "init/gelib.h"
  78. #include "multi_batch_copy_graph.h"
  79. #include "graph/passes/data_pass.h"
  80. #include "graph/passes/mark_agnostic_pass.h"
  81. namespace ge {
  82. namespace {
  83. static std::map<std::string, ge::DataType> output_type_str_to_datatype = {
  84. {"FP32", ge::DT_FLOAT}, {"FP16", ge::DT_FLOAT16}, {"INT8", ge::DT_INT8}, {"INT16", ge::DT_INT16},
  85. {"UINT16", ge::DT_UINT16}, {"UINT8", ge::DT_UINT8}, {"INT32", ge::DT_INT32}, {"INT64", ge::DT_INT64},
  86. {"UINT32", ge::DT_UINT32}, {"UINT64", ge::DT_UINT64}, {"DOUBLE", ge::DT_DOUBLE}};
  87. const char *const kMbatchSwitchnName = "mbatch-switch-name";
  88. // the size of user defined output datatype or format string after split by ":".
  89. const size_t kUserDefinedElementCount = 2;
  90. const int kDataOutIndex = 0;
  91. const int64_t kInvalidDynaimcDimsType = -1;
  92. OpDescPtr CreateTensorShape(const GeTensorDesc &data_tensor) {
  93. GeTensorPtr tensor = MakeShared<GeTensor>();
  94. if (tensor == nullptr) {
  95. GELOGE(INTERNAL_ERROR, "Create shared ptr for GeTensor failed");
  96. return nullptr;
  97. }
  98. tensor->MutableTensorDesc().SetDataType(DT_INT32);
  99. tensor->MutableTensorDesc().SetFormat(FORMAT_ND);
  100. auto dst_ge_shape = data_tensor.GetShape();
  101. auto dim_cnt = static_cast<int64_t>(dst_ge_shape.GetDimNum());
  102. if (dim_cnt == 0) { // if the dim_cnt is 0, the tensor is a scalar
  103. tensor->MutableTensorDesc().SetShape(GeShape());
  104. int32_t dst_shape = 1;
  105. if (tensor->SetData(reinterpret_cast<const uint8_t *>(&dst_shape), sizeof(int32_t)) != GRAPH_SUCCESS) {
  106. GELOGE(INTERNAL_ERROR, "tensor set data failed");
  107. return nullptr;
  108. }
  109. } else {
  110. tensor->MutableTensorDesc().SetShape(GeShape(std::vector<int64_t>({dim_cnt})));
  111. unique_ptr<int32_t[]> dst_shape(new (std::nothrow) int32_t[dim_cnt]());
  112. if (dst_shape == nullptr) {
  113. GELOGE(INTERNAL_ERROR, "Create unique ptr failed");
  114. return nullptr;
  115. }
  116. for (int64_t i = 0; i < dim_cnt; ++i) {
  117. dst_shape[i] = dst_ge_shape.GetDim(static_cast<size_t>(i));
  118. }
  119. GE_IF_BOOL_EXEC(
  120. tensor->SetData(reinterpret_cast<const uint8_t *>(dst_shape.get()), dim_cnt * sizeof(int32_t)) != GRAPH_SUCCESS,
  121. GELOGE(INTERNAL_ERROR, "tensor set data failed");
  122. return nullptr;)
  123. }
  124. GELOGD("Create shape input dim [%s]", dst_ge_shape.ToString().c_str());
  125. return OpDescUtils::CreateConstOp(tensor);
  126. }
  127. void AddTransNodeAttr(const std::string &node_type, const GeTensorDesc &input, const GeTensorDesc &output,
  128. OpDescPtr &op_desc) {
  129. // For format transfer node, the IR definition has src/dst format attrs
  130. if (node_type == TRANSDATA) {
  131. GE_IF_BOOL_EXEC(
  132. !AttrUtils::SetStr(op_desc, FORMAT_TRANSFER_SRC_FORMAT, TypeUtils::FormatToSerialString(input.GetFormat())),
  133. GELOGW("SetStr FORMAT_TRANSFER_SRC_FORMAT failed");)
  134. GE_IF_BOOL_EXEC(
  135. !AttrUtils::SetStr(op_desc, FORMAT_TRANSFER_DST_FORMAT, TypeUtils::FormatToSerialString(output.GetFormat())),
  136. GELOGW("SetStr FORMAT_TRANSFER_DST_FORMAT failed");)
  137. }
  138. // For TransposeD node, the IR definition has perm attrs
  139. if (node_type == TRANSPOSED) {
  140. Format src_format = input.GetFormat();
  141. Format dst_format = output.GetFormat();
  142. std::vector<int64_t> perm_arg;
  143. GE_CHK_BOOL_EXEC_WARN(formats::GetPermByForamt(src_format, dst_format, perm_arg) == SUCCESS, return,
  144. "Get perm by foramt failed.");
  145. GE_CHK_BOOL_EXEC_WARN(AttrUtils::SetListInt(op_desc, PERMUTE_ATTR_PERM, perm_arg), return,
  146. "SetStr PERMUTE_ATTR_PERM failed")
  147. }
  148. // For cast node, the IR definition has src/dst attrs
  149. if (node_type == CAST) {
  150. GE_IF_BOOL_EXEC(!AttrUtils::SetInt(op_desc, CAST_ATTR_SRCT, static_cast<int64_t>(input.GetDataType())),
  151. GELOGW("SetInt CAST_ATTR_SRCT failed");)
  152. GE_IF_BOOL_EXEC(!AttrUtils::SetInt(op_desc, CAST_ATTR_DSTT, static_cast<int64_t>(output.GetDataType())),
  153. GELOGW("SetInt CAST_ATTR_DSTT failed");)
  154. GE_IF_BOOL_EXEC(!AttrUtils::SetInt(op_desc, CAST_ATTR_DST_TYPE, static_cast<int64_t>(output.GetDataType())),
  155. GELOGW("SetInt CAST_ATTR_DST_TYPE failed");)
  156. GE_IF_BOOL_EXEC(!AttrUtils::SetBool(op_desc, CAST_ATTR_TRUNCATE, false),
  157. GELOGW("SetBool CAST_ATTR_TRUNCATE failed");)
  158. }
  159. }
  160. NodePtr CreateTransNode(const std::string &name, const std::string &node_type, const GeTensorDesc &input,
  161. const GeTensorDesc &output, NodePtr &node) {
  162. if (node == nullptr) {
  163. GELOGE(PARAM_INVALID, "node is null.");
  164. return nullptr;
  165. }
  166. auto graph = node->GetOwnerComputeGraph();
  167. if (graph == nullptr) {
  168. GELOGE(PARAM_INVALID, "Owner graph is null, node name:%s.", node->GetName().c_str());
  169. return nullptr;
  170. }
  171. auto index = TransOpUtil::GetTransOpDataIndex(node_type);
  172. if (index < 0) {
  173. ErrorManager::GetInstance().ATCReportErrMessage(
  174. "E19025", {"situation", "reason"},
  175. {"The trans node type[" + node_type + "]", "it must be " + TransOpUtil::TransopMapToString()});
  176. GELOGE(INTERNAL_ERROR, "The trans node type %s does not exists", node_type.c_str());
  177. return nullptr;
  178. }
  179. OpDescPtr op_desc = MakeShared<OpDesc>(name, node_type);
  180. if (op_desc == nullptr) {
  181. GELOGE(INTERNAL_ERROR, "Create shared ptr for OpDesc failed");
  182. return nullptr;
  183. }
  184. // for data dump
  185. GE_IF_BOOL_EXEC(
  186. !AttrUtils::SetListStr(op_desc, ATTR_NAME_DATA_DUMP_ORIGIN_OP_NAMES, std::move(std::vector<std::string>())),
  187. GELOGW("CreateTransNode: SetListStr failed");)
  188. // Default single input and single output
  189. auto ret = op_desc->AddInputDesc(input);
  190. if (ret != GRAPH_SUCCESS) {
  191. GELOGE(INTERNAL_ERROR, "Failed to add input desc when create node %s type %s", name.c_str(), node_type.c_str());
  192. return nullptr;
  193. }
  194. ret = op_desc->AddOutputDesc(output);
  195. if (ret != GRAPH_SUCCESS) {
  196. GELOGE(INTERNAL_ERROR, "Failed to add output desc when create node %s type %s", name.c_str(), node_type.c_str());
  197. return nullptr;
  198. }
  199. AddTransNodeAttr(node_type, input, output, op_desc);
  200. NodePtr shape_node = nullptr;
  201. if (node_type == RESHAPE) {
  202. auto shape_desc = CreateTensorShape(output);
  203. if (shape_desc == nullptr) {
  204. GELOGE(INTERNAL_ERROR, "Failed to add shape for reshape %s, can not create the shape input",
  205. node->GetName().c_str());
  206. return nullptr;
  207. }
  208. ret = op_desc->AddInputDesc(shape_desc->GetOutputDesc(0));
  209. if (ret != GRAPH_SUCCESS) {
  210. GELOGE(INTERNAL_ERROR, "Failed to add the first input for reshape %s", name.c_str());
  211. return nullptr;
  212. }
  213. shape_node = graph->AddNode(shape_desc);
  214. if (shape_node == nullptr) {
  215. GELOGE(INTERNAL_ERROR, "Failed to add shape node for reshape %s, can not add the shape to graph", name.c_str());
  216. return nullptr;
  217. }
  218. }
  219. auto trans_node = graph->AddNode(op_desc);
  220. if (trans_node == nullptr) {
  221. GELOGE(INTERNAL_ERROR, "Failed to add trans node %s to graph", name.c_str());
  222. return nullptr;
  223. }
  224. if (node_type == RESHAPE) {
  225. if (GraphUtils::AddEdge(shape_node->GetOutDataAnchor(0), trans_node->GetInDataAnchor(1)) != GRAPH_SUCCESS) {
  226. GELOGE(INTERNAL_ERROR, "Failed to add shape node for reshape %s, can not add the edge", name.c_str());
  227. return nullptr;
  228. }
  229. }
  230. return trans_node;
  231. }
  232. Status RecoverOneTransNodeForVar(const std::string &name, const TransNodeInfo &trans_node_info, NodePtr node,
  233. NodePtr &trans_node) {
  234. GE_CHECK_NOTNULL(node);
  235. trans_node = CreateTransNode(name, trans_node_info.node_type, trans_node_info.output, trans_node_info.input, node);
  236. if (trans_node == nullptr) {
  237. return INTERNAL_ERROR;
  238. }
  239. auto ret = GraphUtils::ReplaceNodeDataAnchors(trans_node, node, {}, {0});
  240. if (ret != GRAPH_SUCCESS) {
  241. GELOGE(INTERNAL_ERROR, "Failed to replace out anchors when recover trans node for %s type %s",
  242. node->GetName().c_str(), node->GetType().c_str());
  243. return INTERNAL_ERROR;
  244. }
  245. ret = GraphUtils::AddEdge(node->GetOutDataAnchor(0), trans_node->GetInDataAnchor(0));
  246. if (ret != GRAPH_SUCCESS) {
  247. GELOGE(INTERNAL_ERROR, "Failed to connect node %s to trans node %s", node->GetName().c_str(),
  248. trans_node->GetName().c_str());
  249. return INTERNAL_ERROR;
  250. }
  251. ret = GraphUtils::MoveOutCtrlEdges(node, trans_node);
  252. if (ret != GRAPH_SUCCESS) {
  253. GELOGE(INTERNAL_ERROR, "Failed to move out control edges from %s to %s when recover trans node.",
  254. node->GetName().c_str(), trans_node->GetName().c_str());
  255. return INTERNAL_ERROR;
  256. }
  257. return SUCCESS;
  258. }
  259. Status RecoverOneTransNodeForVarRef(const std::string &name, const TransNodeInfo &trans_node_info, NodePtr node,
  260. NodePtr &trans_node) {
  261. GE_CHECK_NOTNULL(node);
  262. trans_node = CreateTransNode(name, trans_node_info.node_type, trans_node_info.input, trans_node_info.output, node);
  263. if (trans_node == nullptr) {
  264. return INTERNAL_ERROR;
  265. }
  266. auto ret = GraphUtils::ReplaceNodeDataAnchors(trans_node, node, {0}, {});
  267. if (ret != GRAPH_SUCCESS) {
  268. GELOGE(INTERNAL_ERROR, "Failed to replace int anchors when recover trans node for %s type %s",
  269. node->GetName().c_str(), node->GetType().c_str());
  270. return INTERNAL_ERROR;
  271. }
  272. ret = GraphUtils::AddEdge(trans_node->GetOutDataAnchor(0), node->GetInDataAnchor(0));
  273. if (ret != GRAPH_SUCCESS) {
  274. GELOGE(INTERNAL_ERROR, "Failed to connect trans node %s to node %s", trans_node->GetName().c_str(),
  275. node->GetName().c_str());
  276. return INTERNAL_ERROR;
  277. }
  278. ret = GraphUtils::MoveInCtrlEdges(node, trans_node);
  279. if (ret != GRAPH_SUCCESS) {
  280. GELOGE(INTERNAL_ERROR, "Failed to move int control edges from %s to %s when recover trans node.",
  281. node->GetName().c_str(), trans_node->GetName().c_str());
  282. return INTERNAL_ERROR;
  283. }
  284. return SUCCESS;
  285. }
  286. Status UpdateVarFormats(const NodePtr &var, const GeTensorDesc &tensor_desc) {
  287. GE_IF_BOOL_EXEC(var == nullptr, GELOGW("node : var is nullptr"); return INTERNAL_ERROR);
  288. GE_CHECK_NOTNULL(var->GetOpDesc());
  289. if (var->GetOpDesc()->GetOutputsSize() > 0) {
  290. auto output_desc = var->GetOpDesc()->GetOutputDesc(0);
  291. output_desc.SetFormat(tensor_desc.GetFormat());
  292. output_desc.SetDataType(tensor_desc.GetDataType());
  293. output_desc.SetShape(tensor_desc.GetShape());
  294. output_desc.SetOriginFormat(tensor_desc.GetOriginFormat());
  295. output_desc.SetOriginDataType(tensor_desc.GetOriginDataType());
  296. output_desc.SetOriginShape(tensor_desc.GetOriginShape());
  297. GE_IF_BOOL_EXEC(var->GetOpDesc()->UpdateOutputDesc(0, output_desc) != GRAPH_SUCCESS,
  298. GELOGE(INTERNAL_ERROR, "UpdateOutputDesc failed");
  299. return INTERNAL_ERROR;);
  300. }
  301. if (var->GetOpDesc()->GetInputsSize() > 0) {
  302. auto desc = var->GetOpDesc()->GetInputDesc(0);
  303. desc.SetFormat(tensor_desc.GetFormat());
  304. desc.SetDataType(tensor_desc.GetDataType());
  305. desc.SetShape(tensor_desc.GetShape());
  306. desc.SetOriginFormat(tensor_desc.GetOriginFormat());
  307. desc.SetOriginDataType(tensor_desc.GetOriginDataType());
  308. desc.SetOriginShape(tensor_desc.GetOriginShape());
  309. GE_IF_BOOL_EXEC(var->GetOpDesc()->UpdateInputDesc(0, desc) != GRAPH_SUCCESS,
  310. GELOGE(INTERNAL_ERROR, "UpdateInputDesc failed");
  311. return INTERNAL_ERROR;)
  312. }
  313. return SUCCESS;
  314. }
  315. Status RecoverTransRoadForVar(const NodePtr &var, const VarTransRoad &road) {
  316. GE_CHECK_NOTNULL(var);
  317. int index = 0;
  318. NodePtr last_node = var;
  319. for (auto iter = road.rbegin(); iter != road.rend(); ++iter) {
  320. auto trans_name = var->GetName() + "_trans_" + std::to_string(index++);
  321. auto ret = RecoverOneTransNodeForVar(trans_name, *iter, last_node, last_node);
  322. if (ret != SUCCESS) {
  323. ErrorManager::GetInstance().ATCReportErrMessage(
  324. "E15001", {"variable", "index", "type"}, {var->GetName(), std::to_string(index), iter->node_type});
  325. GELOGE(INTERNAL_ERROR, "Failed to recover trans node for variable %s, index %d, type %s", var->GetName().c_str(),
  326. index, iter->node_type.c_str());
  327. return INTERNAL_ERROR;
  328. }
  329. // set stream_label
  330. OpDescPtr var_desc = var->GetOpDesc();
  331. GE_CHECK_NOTNULL(var_desc);
  332. std::string stream_label;
  333. (void)AttrUtils::GetStr(var_desc, ATTR_NAME_STREAM_LABEL, stream_label);
  334. if (!stream_label.empty()) {
  335. GE_CHK_STATUS_RET(SetStreamLabel(last_node, stream_label), "set stream label failed");
  336. }
  337. GE_CHK_BOOL_EXEC((ge::AttrUtils::SetBool(last_node->GetOpDesc(), ge::ATTR_INSERTED_BY_GE, true)),
  338. return INTERNAL_ERROR, "Set attr ATTR_INSERTED_BY_GE failed.");
  339. GELOGD("Recover trans node %s type %s success", trans_name.c_str(), iter->node_type.c_str());
  340. }
  341. if (road.empty()) {
  342. return SUCCESS;
  343. }
  344. return UpdateVarFormats(var, road.rbegin()->output);
  345. }
  346. Status RecoverTransRoadForVarRef(const std::set<NodePtr> &nodes, const VarTransRoad &road) {
  347. for (auto &var : nodes) {
  348. GE_CHECK_NOTNULL(var);
  349. int index = 0;
  350. NodePtr last_node = var;
  351. GELOGI("Recover trans nodes for variable ref %s", var->GetName().c_str());
  352. for (auto iter = road.rbegin(); iter != road.rend(); ++iter) {
  353. auto trans_name = var->GetName() + "_trans_" + std::to_string(index++);
  354. auto ret = RecoverOneTransNodeForVarRef(trans_name, *iter, last_node, last_node);
  355. if (ret != SUCCESS) {
  356. ErrorManager::GetInstance().ATCReportErrMessage(
  357. "E15001", {"variable", "index", "type"}, {var->GetName(), std::to_string(index), iter->node_type});
  358. GELOGE(INTERNAL_ERROR, "Failed to recover trans node for variable %s, index %d, type %s",
  359. var->GetName().c_str(), index, iter->node_type.c_str());
  360. return INTERNAL_ERROR;
  361. }
  362. // set stream_label
  363. OpDescPtr var_desc = var->GetOpDesc();
  364. GE_CHECK_NOTNULL(var_desc);
  365. std::string stream_label;
  366. (void)AttrUtils::GetStr(var_desc, ATTR_NAME_STREAM_LABEL, stream_label);
  367. if (!stream_label.empty()) {
  368. GE_CHK_STATUS_RET(SetStreamLabel(last_node, stream_label), "set stream label failed");
  369. }
  370. GE_CHK_BOOL_EXEC((ge::AttrUtils::SetBool(last_node->GetOpDesc(), ge::ATTR_INSERTED_BY_GE, true)),
  371. return INTERNAL_ERROR, "Set attr ATTR_INSERTED_BY_GE failed.");
  372. }
  373. if (!(road.empty()) && (UpdateVarFormats(var, road.rbegin()->output) != SUCCESS)) {
  374. return INTERNAL_ERROR;
  375. }
  376. }
  377. return SUCCESS;
  378. }
  379. using VarNamesToRefs = std::map<std::string, std::set<NodePtr>>;
  380. VarNamesToRefs CollectVarNamesToRefs(const ComputeGraphPtr &graph) {
  381. VarNamesToRefs names_to_refs;
  382. std::string var_name;
  383. if (graph == nullptr) {
  384. GELOGE(PARAM_INVALID, "graph is null.");
  385. return names_to_refs;
  386. }
  387. for (auto &node : graph->GetAllNodes()) {
  388. if (node->GetType() != VARIABLE) {
  389. continue;
  390. }
  391. if (AttrUtils::GetStr(node->GetOpDesc(), REF_VAR_SRC_VAR_NAME, var_name)) {
  392. (void)names_to_refs[var_name].insert(node);
  393. }
  394. }
  395. return names_to_refs;
  396. }
  397. Status TransferShape2NC1HWC0(Format src_format, const std::vector<int64_t> &src_shape, DataType dt, Format dst_format,
  398. std::vector<int64_t> &dst_shape) {
  399. if (src_format == FORMAT_NCHW) {
  400. formats::FormatTransferNchwNc1hwc0 transfer;
  401. if (transfer.TransShape(src_format, src_shape, dt, dst_format, dst_shape) != SUCCESS) {
  402. GELOGE(INTERNAL_ERROR, "TransShape failed");
  403. return FAILED;
  404. }
  405. } else if (src_format == FORMAT_NHWC) {
  406. formats::FormatTransferNhwcNc1hwc0 transfer;
  407. if (transfer.TransShape(src_format, src_shape, dt, dst_format, dst_shape) != SUCCESS) {
  408. GELOGE(INTERNAL_ERROR, "TransShape failed");
  409. return FAILED;
  410. }
  411. }
  412. return SUCCESS;
  413. }
  414. Status ModifyInputFormatAndShape(NodePtr &node_ptr) {
  415. GE_CHECK_NOTNULL(node_ptr);
  416. auto op_desc = node_ptr->GetOpDesc();
  417. GE_CHECK_NOTNULL(op_desc);
  418. const GeTensorDescPtr &input = op_desc->MutableInputDesc(0);
  419. GE_CHECK_NOTNULL(input);
  420. ge::Format old_format = input->GetFormat();
  421. std::vector<int64_t> old_shape = input->GetShape().GetDims();
  422. ge::DataType dt = input->GetDataType();
  423. std::vector<int64_t> dst_shape_dims;
  424. if (TransferShape2NC1HWC0(old_format, old_shape, dt, FORMAT_NC1HWC0, dst_shape_dims) != SUCCESS) {
  425. GELOGE(INTERNAL_ERROR, "Trans shape failed");
  426. return FAILED;
  427. }
  428. input->SetFormat(FORMAT_NC1HWC0);
  429. input->SetShape(ge::GeShape(dst_shape_dims));
  430. auto output = op_desc->MutableOutputDesc(0);
  431. GE_CHECK_NOTNULL(output);
  432. output->SetFormat(FORMAT_NC1HWC0);
  433. output->SetShape(ge::GeShape(dst_shape_dims));
  434. int64_t size = 0;
  435. graphStatus graph_status = TensorUtils::GetTensorMemorySizeInBytes(*output, size);
  436. if (graph_status != ge::GRAPH_SUCCESS) {
  437. GELOGE(graph_status, "GetTensorSizeInBytes failed!");
  438. return FAILED;
  439. }
  440. ge::TensorUtils::SetSize(*output, size);
  441. ge::TensorUtils::SetSize(*input, size);
  442. return SUCCESS;
  443. }
  444. Status ModifyFormatAndShapeForSingleTensor(const GeTensorDescPtr &input_output) {
  445. GE_CHECK_NOTNULL(input_output);
  446. ge::Format old_format = input_output->GetFormat();
  447. std::vector<int64_t> old_shape = input_output->GetShape().GetDims();
  448. ge::DataType dt = input_output->GetDataType();
  449. std::vector<int64_t> dst_shape_dims;
  450. if (TransferShape2NC1HWC0(old_format, old_shape, dt, FORMAT_NC1HWC0, dst_shape_dims) != SUCCESS) {
  451. GELOGE(INTERNAL_ERROR, "Trans shape failed");
  452. return FAILED;
  453. }
  454. input_output->SetFormat(FORMAT_NC1HWC0);
  455. input_output->SetShape(ge::GeShape(dst_shape_dims));
  456. return SUCCESS;
  457. }
  458. Status ModifyDataNetOutputFormatAndShape(OpDescPtr &op_desc, uint32_t index, Format storage_format,
  459. vector<int64_t> &dst_shape_dims) {
  460. GE_CHECK_NOTNULL(op_desc);
  461. const GeTensorDescPtr &input = op_desc->MutableInputDesc(index);
  462. GE_CHECK_NOTNULL(input);
  463. ge::Format old_format = input->GetFormat();
  464. std::vector<int64_t> old_shape = input->GetShape().GetDims();
  465. input->SetShape(ge::GeShape(dst_shape_dims));
  466. input->SetFormat(storage_format);
  467. auto output = op_desc->MutableOutputDesc(index);
  468. GE_CHECK_NOTNULL(output);
  469. output->SetShape(ge::GeShape(dst_shape_dims));
  470. output->SetFormat(storage_format);
  471. if (!output->MutableShape().IsUnknownShape()) {
  472. int64_t size = 0;
  473. graphStatus graph_status = TensorUtils::GetTensorMemorySizeInBytes(*output, size);
  474. if (graph_status != ge::GRAPH_SUCCESS) {
  475. GELOGE(graph_status, "GetTensorSizeInBytes failed!");
  476. return FAILED;
  477. }
  478. ge::TensorUtils::SetSize(*input, size);
  479. ge::TensorUtils::SetSize(*output, size);
  480. GELOGI("Modify Data NetOutput format and shape success, node:%s, index:%d, old_shape:%s, old_Format:%s, "
  481. "new_shape:%s, new_format:%s, new_size:%lu",
  482. op_desc->GetName().c_str(), index, formats::JoinToString(old_shape).c_str(),
  483. ge::TypeUtils::FormatToSerialString(old_format).c_str(), formats::JoinToString(dst_shape_dims).c_str(),
  484. ge::TypeUtils::FormatToSerialString(storage_format).c_str(), size);
  485. }
  486. return SUCCESS;
  487. }
  488. Status CheckIfDynamicBatchScene(NodePtr &data_node, bool &is_dynamic_batch, NodePtr &switchn_node) {
  489. is_dynamic_batch = false;
  490. std::string related_node_name;
  491. if (AttrUtils::GetStr(data_node->GetOpDesc(), kMbatchSwitchnName, related_node_name)) {
  492. if (related_node_name.empty()) {
  493. ErrorManager::GetInstance().ATCReportErrMessage(
  494. "E15002", {"opname", "value", "reason"}, {data_node->GetName(), "flag", "but the value is empty"});
  495. GELOGE(INTERNAL_ERROR, "The data node %s has switchn node flag, but the value is empty",
  496. data_node->GetName().c_str());
  497. return INTERNAL_ERROR;
  498. }
  499. for (const NodePtr &next_node : data_node->GetOutNodes()) {
  500. if (next_node->GetName() == related_node_name) {
  501. switchn_node = next_node;
  502. break;
  503. }
  504. }
  505. if (switchn_node == nullptr) {
  506. ErrorManager::GetInstance().ATCReportErrMessage(
  507. "E15002", {"opname", "value", "reason"},
  508. {data_node->GetName(), related_node_name, "but can not find it on the graph"});
  509. GELOGE(INTERNAL_ERROR, "The data node %s has switchn node %s, but can not find it on the graph",
  510. data_node->GetName().c_str(), related_node_name.c_str());
  511. return INTERNAL_ERROR;
  512. }
  513. is_dynamic_batch = true;
  514. }
  515. return SUCCESS;
  516. }
  517. bool CheckOpType(const NodePtr &node, const std::string type) {
  518. if (node->GetType() == type) {
  519. return true;
  520. }
  521. return false;
  522. }
  523. Status CheckIfNeedSetNdFormat(const NodePtr &node_ptr) {
  524. auto op = node_ptr->GetOpDesc();
  525. GE_CHECK_NOTNULL(op);
  526. auto inputDescsPtr = op->GetAllInputsDescPtr();
  527. auto outputDescsPtr = op->GetAllOutputsDescPtr();
  528. ge::Format format = ge::FORMAT_ND;
  529. // if user set shape larger than 4, inferformat may set NCHW or NHWC, GE should set ND before FE
  530. // process, otherwise fe will insert transdata.
  531. for (auto &inputDescPtr : inputDescsPtr) {
  532. GE_CHECK_NOTNULL(inputDescPtr);
  533. if ((inputDescPtr->GetShape().GetDims().size() > ge::DIM_DEFAULT_SIZE) &&
  534. ((inputDescPtr->GetFormat() == ge::FORMAT_NCHW) || (inputDescPtr->GetFormat() == ge::FORMAT_NHWC))) {
  535. GELOGI("The node inputdesc [%s] format need to be set ND", op->GetName().c_str());
  536. inputDescPtr->SetFormat(format);
  537. inputDescPtr->SetOriginFormat(format);
  538. }
  539. }
  540. for (auto &outputDescPtr : outputDescsPtr) {
  541. GE_CHECK_NOTNULL(outputDescPtr);
  542. if ((outputDescPtr->GetShape().GetDims().size() > ge::DIM_DEFAULT_SIZE) &&
  543. ((outputDescPtr->GetFormat() == ge::FORMAT_NCHW) || (outputDescPtr->GetFormat() == ge::FORMAT_NHWC))) {
  544. GELOGI("The node outputdesc [%s] format need to be set ND", op->GetName().c_str());
  545. outputDescPtr->SetFormat(format);
  546. outputDescPtr->SetOriginFormat(format);
  547. }
  548. }
  549. return SUCCESS;
  550. }
  551. // A new function ending in 'DynShape' has been added for the dynamic shape processing.
  552. // In the dynamic shape process, transnode insertion by FE is advanced to the stage of whole
  553. // graph optimization, GE only sets the final data_type/format/shape information for variable,
  554. // data and netoutput, and no longer inserts the transnode.
  555. Status ProcessInputDtDynShape(NodePtr &node_ptr, bool &is_dynamic_batch, NodePtr &switchn_node, DataType &dt_set) {
  556. GE_CHECK_NOTNULL(node_ptr);
  557. auto op_desc = node_ptr->GetOpDesc();
  558. GE_CHECK_NOTNULL(op_desc);
  559. const GeTensorDescPtr &input = op_desc->MutableInputDesc(0);
  560. GE_CHECK_NOTNULL(input);
  561. ge::DataType src_dtype = input->GetDataType();
  562. if (src_dtype == dt_set) {
  563. GELOGI("The node name, %s dtype is fp16", node_ptr->GetName().c_str());
  564. return SUCCESS;
  565. }
  566. input->SetDataType(dt_set);
  567. int64_t input_shape_size = 0;
  568. int64_t output_shape_size = 0;
  569. ge::graphStatus input_graph_status = ge::TensorUtils::GetTensorSizeInBytes(*input, input_shape_size);
  570. ge::graphStatus output_graph_status = ge::TensorUtils::GetTensorMemorySizeInBytes(*input, output_shape_size);
  571. if (input_graph_status != ge::GRAPH_SUCCESS && output_graph_status != ge::GRAPH_SUCCESS) {
  572. GELOGE(GRAPH_FAILED, "GetTensorSize failed!");
  573. return FAILED;
  574. }
  575. ge::TensorUtils::SetSize(*input, input_shape_size);
  576. const GeTensorDescPtr &output = op_desc->MutableOutputDesc(0);
  577. GE_CHECK_NOTNULL(output);
  578. output->SetDataType(dt_set);
  579. ge::TensorUtils::SetSize(*output, output_shape_size);
  580. if (is_dynamic_batch) {
  581. GELOGI("The node [%s] dtype set fp16", switchn_node->GetName().c_str());
  582. auto switchn_op_desc = switchn_node->GetOpDesc();
  583. GE_CHECK_NOTNULL(switchn_op_desc);
  584. auto switchn_input = switchn_op_desc->MutableInputDesc(0);
  585. GE_CHECK_NOTNULL(switchn_input);
  586. switchn_input->SetDataType(dt_set);
  587. for (uint32_t i = 0; i < switchn_node->GetAllOutDataAnchorsSize(); ++i) {
  588. const GeTensorDescPtr &switchn_output = switchn_op_desc->MutableOutputDesc(i);
  589. GE_CHECK_NOTNULL(switchn_output);
  590. switchn_output->SetDataType(dt_set);
  591. }
  592. }
  593. return SUCCESS;
  594. }
  595. Status ProcessInputNC1HWC0DynShape(NodePtr &node_ptr, bool &is_dynamic_batch, NodePtr &switchn_node) {
  596. GE_CHECK_NOTNULL(node_ptr);
  597. auto op_desc = node_ptr->GetOpDesc();
  598. GE_CHECK_NOTNULL(op_desc);
  599. const GeTensorDescPtr &input = op_desc->MutableInputDesc(0);
  600. GE_CHECK_NOTNULL(input);
  601. ge::Format old_format = input->GetFormat();
  602. ge::GeShape old_shape = input->GetShape();
  603. bool support = ((old_format == FORMAT_NC1HWC0) || (old_format == FORMAT_NCHW) || (old_format == FORMAT_NHWC));
  604. if (!support) {
  605. ErrorManager::GetInstance().ATCReportErrMessage(
  606. "E19014", {"opname", "value", "reason"},
  607. {op_desc->GetName(), "format[" + TypeUtils::FormatToSerialString(old_format) + "]",
  608. "only support FORMAT_NC1HWC0,FORMAT_NCHW,FORMAT_NHWC"});
  609. GELOGE(INTERNAL_ERROR, "The format [%s] is unsupported", TypeUtils::FormatToSerialString(old_format).c_str());
  610. return FAILED;
  611. }
  612. if (ModifyInputFormatAndShape(node_ptr) != SUCCESS) {
  613. GELOGE(INTERNAL_ERROR, "modify format and shape failed");
  614. return FAILED;
  615. }
  616. if (is_dynamic_batch) {
  617. auto switchn_op_desc = switchn_node->GetOpDesc();
  618. GE_CHECK_NOTNULL(switchn_op_desc);
  619. const GeTensorDescPtr &switchn_input = switchn_op_desc->MutableInputDesc(0);
  620. if (ModifyFormatAndShapeForSingleTensor(switchn_input) != SUCCESS) {
  621. GELOGE(INTERNAL_ERROR, "modify format and shape failed");
  622. return FAILED;
  623. }
  624. for (uint32_t i = 0; i < switchn_node->GetAllOutDataAnchorsSize(); ++i) {
  625. auto switchn_output = switchn_op_desc->MutableOutputDesc(i);
  626. GE_CHECK_NOTNULL(switchn_output);
  627. old_format = switchn_output->GetFormat();
  628. old_shape = switchn_output->GetShape();
  629. if (ModifyFormatAndShapeForSingleTensor(switchn_output) != SUCCESS) {
  630. GELOGE(INTERNAL_ERROR, "modify format and shape failed");
  631. return FAILED;
  632. }
  633. }
  634. }
  635. return SUCCESS;
  636. }
  637. Status ProcessDataNodeDynShape(NodePtr &node_ptr) {
  638. auto op_desc = node_ptr->GetOpDesc();
  639. GE_CHECK_NOTNULL(op_desc);
  640. string set_dt_str;
  641. if (!ge::AttrUtils::GetStr(node_ptr->GetOpDesc(), ATTR_ATC_USER_DEFINE_DATATYPE, set_dt_str)) {
  642. return SUCCESS;
  643. }
  644. DataType dt_set = TypeUtils::SerialStringToDataType(set_dt_str);
  645. GELOGI("input_fp16 is found, the node name is %s.", node_ptr->GetName().c_str());
  646. bool is_dynamic_batch = false;
  647. NodePtr switchn_node = nullptr;
  648. if (CheckIfDynamicBatchScene(node_ptr, is_dynamic_batch, switchn_node)) {
  649. GELOGE(INTERNAL_ERROR, "CheckIfDynamicBatchScene failed");
  650. return FAILED;
  651. }
  652. if (ProcessInputDtDynShape(node_ptr, is_dynamic_batch, switchn_node, dt_set) != SUCCESS) {
  653. GELOGE(INTERNAL_ERROR, "ProcessInputFP16 failed");
  654. return FAILED;
  655. }
  656. // check if need to set format
  657. string set_format;
  658. bool ret = ge::AttrUtils::GetStr(node_ptr->GetOpDesc(), ATTR_ATC_USER_DEFINE_FORMAT, set_format);
  659. if (ret && (!set_format.empty()) && TypeUtils::SerialStringToFormat(set_format) == FORMAT_NC1HWC0) {
  660. GELOGI("The format of node [%s] should be set NC1HWC0.", node_ptr->GetName().c_str());
  661. if (ProcessInputNC1HWC0DynShape(node_ptr, is_dynamic_batch, switchn_node) != SUCCESS) {
  662. GELOGE(INTERNAL_ERROR, "ProcessInputNC1HWC0 failed");
  663. return FAILED;
  664. }
  665. }
  666. return SUCCESS;
  667. }
  668. Status GetStorageFormatAndShape(OpDescPtr &op_desc, const GeTensorDescPtr &tensor_desc_ptr,
  669. Format &storage_format, vector<int64_t> &dst_shape_dims) {
  670. GE_CHECK_NOTNULL(op_desc);
  671. GE_CHECK_NOTNULL(tensor_desc_ptr);
  672. storage_format = FORMAT_RESERVED;
  673. int64_t format = FORMAT_RESERVED;
  674. dst_shape_dims.clear();
  675. if (ge::AttrUtils::GetInt(*tensor_desc_ptr, ATTR_NAME_STORAGE_FORMAT, format)) {
  676. storage_format = static_cast<Format>(format);
  677. vector<int32_t> storage_shape;
  678. if (ge::AttrUtils::GetListInt(*tensor_desc_ptr, ATTR_NAME_STORAGE_SHAPE, storage_shape)) {
  679. for (auto dim : storage_shape) {
  680. dst_shape_dims.push_back(static_cast<int64_t>(dim));
  681. }
  682. GELOGI("Update node by storage format, node: [%s], storage_format: [%s], storage_shape:[%s]",
  683. op_desc->GetName().c_str(), TypeUtils::FormatToSerialString(storage_format).c_str(),
  684. formats::JoinToString(storage_shape).c_str());
  685. } else {
  686. ErrorManager::GetInstance().ATCReportErrMessage(
  687. "15003", {"opname", "format"},
  688. {op_desc->GetName(), TypeUtils::FormatToSerialString(storage_format)});
  689. GELOGE(PARAM_INVALID, "Update node by storage format failed, storage_shape not set. "
  690. "node: [%s], storage_format [%s]",
  691. op_desc->GetName().c_str(), TypeUtils::FormatToSerialString(storage_format).c_str());
  692. return FAILED;
  693. }
  694. ge::Format old_format = tensor_desc_ptr->GetFormat();
  695. auto old_shape = tensor_desc_ptr->GetShape().GetDims();
  696. if (old_format == storage_format && old_shape == dst_shape_dims) {
  697. GELOGI("Update node by storage format, not changed.");
  698. storage_format = FORMAT_RESERVED;
  699. return SUCCESS;
  700. }
  701. }
  702. return SUCCESS;
  703. }
  704. Status ProcessNetoutputNodeFp16Nc1hwc0DynShape(GeTensorDesc &src_desc, GeTensorDescPtr &net_output_input_desc,
  705. NodePtr &node) {
  706. bool is_dynamic = CheckOpType(node, MERGE);
  707. auto src_op_desc = node->GetOpDesc();
  708. GE_CHECK_NOTNULL(src_op_desc);
  709. ge::GeShape src_shape = src_desc.GetShape();
  710. ge::Format src_format = src_desc.GetFormat();
  711. net_output_input_desc->SetDataType(DT_FLOAT16);
  712. if (is_dynamic) {
  713. auto merge_output = src_op_desc->MutableOutputDesc(0);
  714. GE_CHECK_NOTNULL(merge_output);
  715. merge_output->SetDataType(DT_FLOAT16);
  716. for (uint32_t i = 0; i < node->GetAllInDataAnchorsSize(); ++i) {
  717. auto merge_input = src_op_desc->MutableInputDesc(i);
  718. GE_CHECK_NOTNULL(merge_input);
  719. merge_input->SetDataType(DT_FLOAT16);
  720. }
  721. }
  722. std::vector<int64_t> dst_shape_dims;
  723. std::vector<int64_t> src_shape_dims = src_shape.GetDims();
  724. if (TransferShape2NC1HWC0(src_format, src_shape_dims, DT_FLOAT16, FORMAT_NC1HWC0, dst_shape_dims) != SUCCESS) {
  725. GELOGE(INTERNAL_ERROR, "Trans shape failed");
  726. return FAILED;
  727. }
  728. ge::GeShape dst_shape(dst_shape_dims);
  729. net_output_input_desc->SetFormat(FORMAT_NC1HWC0);
  730. net_output_input_desc->SetShape(dst_shape);
  731. if (is_dynamic) {
  732. auto merge_out = src_op_desc->MutableOutputDesc(0);
  733. GE_CHECK_NOTNULL(merge_out);
  734. if (ModifyFormatAndShapeForSingleTensor(merge_out) != SUCCESS) {
  735. GELOGE(INTERNAL_ERROR, "modify format and shape failed");
  736. return FAILED;
  737. }
  738. for (uint32_t i = 0; i < node->GetAllInDataAnchorsSize(); ++i) {
  739. auto merge_in = src_op_desc->MutableInputDesc(i);
  740. GE_CHECK_NOTNULL(merge_in);
  741. if (ModifyFormatAndShapeForSingleTensor(merge_in) != SUCCESS) {
  742. GELOGE(INTERNAL_ERROR, "modify format and shape failed");
  743. return FAILED;
  744. }
  745. }
  746. }
  747. return SUCCESS;
  748. }
  749. bool NeedUpdateDtByOutputTypeParm(OpDescPtr &netout_desc, uint32_t &index, ge::DataType &dt) {
  750. GE_CHECK_NOTNULL(netout_desc);
  751. vector<string> output_dt_str;
  752. if (ge::AttrUtils::GetListStr(netout_desc, ATTR_ATC_USER_DEFINE_DATATYPE, output_dt_str)) {
  753. for (auto dt_str : output_dt_str) {
  754. vector<string> dt_str_split = StringUtils::Split(dt_str, ':');
  755. if (dt_str_split.size() == kUserDefinedElementCount) {
  756. if (dt_str_split[0] == to_string(index)) {
  757. dt = TypeUtils::SerialStringToDataType(dt_str_split[1]);
  758. GELOGI("Find netoutput node output %u datatype should be set %s .", index,
  759. TypeUtils::DataTypeToSerialString(dt).c_str());
  760. return true;
  761. }
  762. }
  763. }
  764. }
  765. return false;
  766. }
  767. bool NeedUpdateFormatByOutputTypeParm(OpDescPtr &netout_desc, uint32_t &index) {
  768. GE_CHECK_NOTNULL(netout_desc);
  769. vector<string> output_format_str;
  770. if (ge::AttrUtils::GetListStr(netout_desc, ATTR_ATC_USER_DEFINE_FORMAT, output_format_str)) {
  771. for (auto format_str : output_format_str) {
  772. vector<string> format_str_split = StringUtils::Split(format_str, ':');
  773. if (format_str_split.size() == kUserDefinedElementCount) {
  774. if (format_str_split[0] == to_string(index)) {
  775. GELOGI("Find netoutput node output %u format should be set NC1HWC0.", index);
  776. return true;
  777. }
  778. }
  779. }
  780. }
  781. return false;
  782. }
  783. Status ProcessNetoutputNodeDynShape(NodePtr &node) {
  784. auto op_desc = node->GetOpDesc();
  785. GE_CHECK_NOTNULL(op_desc);
  786. ge::DataType output_data_type = ge::DT_FLOAT;
  787. for (const auto &in_anchor : node->GetAllInDataAnchors()) {
  788. auto index = static_cast<uint32_t>(in_anchor->GetIdx());
  789. auto peer_out = in_anchor->GetPeerOutAnchor();
  790. GE_CHECK_NOTNULL(peer_out);
  791. auto src_node = peer_out->GetOwnerNode();
  792. GE_CHECK_NOTNULL(src_node);
  793. bool is_dynamic = CheckOpType(src_node, MERGE);
  794. OpDescPtr src_op_desc = src_node->GetOpDesc();
  795. GE_CHECK_NOTNULL(src_op_desc);
  796. auto net_output_input_desc = op_desc->MutableInputDesc(index);
  797. GE_CHECK_NOTNULL(net_output_input_desc);
  798. ge::GeShape old_shape = net_output_input_desc->GetShape();
  799. ge::Format old_format = net_output_input_desc->GetFormat();
  800. ge::DataType old_dtype = net_output_input_desc->GetDataType();
  801. // Update datatype
  802. if (NeedUpdateDtByOutputTypeParm(op_desc, index, output_data_type)) {
  803. GELOGI("Enter into process output_type schedule");
  804. net_output_input_desc->SetDataType(output_data_type);
  805. if (is_dynamic) {
  806. auto merge_output = src_op_desc->MutableOutputDesc(0);
  807. GE_CHECK_NOTNULL(merge_output);
  808. merge_output->SetDataType(output_data_type);
  809. for (uint32_t i = 0; i < src_node->GetAllInDataAnchorsSize(); ++i) {
  810. auto merge_input = src_op_desc->MutableInputDesc(i);
  811. GE_CHECK_NOTNULL(merge_input);
  812. merge_input->SetDataType(output_data_type);
  813. }
  814. }
  815. }
  816. // check if is_output_adjust_hw_layout is set
  817. if (NeedUpdateFormatByOutputTypeParm(op_desc, index)) {
  818. if ((old_format != FORMAT_NCHW) && (old_format != FORMAT_NHWC) && (old_format != FORMAT_NC1HWC0)) {
  819. ErrorManager::GetInstance().ATCReportErrMessage(
  820. "E19014", {"opname", "value", "reason"},
  821. {op_desc->GetName(), "format[" + TypeUtils::FormatToSerialString(old_format) + "]",
  822. "only support FORMAT_NC1HWC0,FORMAT_NCHW,FORMAT_NHWC"});
  823. GELOGE(INTERNAL_ERROR, "Format is not one of NCHW, NHWC, NC1HWC0.");
  824. return FAILED;
  825. }
  826. GeTensorDesc old_desc(old_shape, old_format, old_dtype);
  827. if (ProcessNetoutputNodeFp16Nc1hwc0DynShape(old_desc, net_output_input_desc, src_node) != SUCCESS) {
  828. GELOGE(INTERNAL_ERROR, "Process netoutput fp16 nc1hwc0.");
  829. return FAILED;
  830. }
  831. }
  832. }
  833. return SUCCESS;
  834. }
  835. /**
  836. * Parser shape_range from string to vector
  837. * shape_range from option normally is "[1~20,3,3~6,-1],[1~20,3,3~6,-1]"
  838. * @param shape_range
  839. */
  840. Status ParseDynamicInputShapeRange(const std::string &shape_range,
  841. std::vector<std::vector<std::pair<int64_t, int64_t>>> &range) {
  842. if (shape_range.size() < 2) {
  843. GELOGW("Shape range %s is invalid.", shape_range.c_str());
  844. return;
  845. }
  846. // different shape_ragne of single input are split by ']'
  847. vector<string> shape_range_set = ge::StringUtils::Split(shape_range, ']');
  848. if (shape_range_set.empty()) {
  849. GELOGE("Shape range %s is not valid. Correct example: \"[1~20,3,3~6,-1],[1~20,3,3~6,-1]\"", shape_range.c_str());
  850. return PARAM_INVALID;
  851. }
  852. for (const auto &shape_range_str : shape_range_set) {
  853. if (shape_range_str.empty()) {
  854. GELOGE("Shape range of input is empty. Given %s, while correct example: \"[1~20,3,3~6,-1],[1~20,3,3~6,-1]\"",
  855. shape_range.c_str());
  856. return PARAM_INVALID;
  857. }
  858. // trim start bytes, after that, single input should be "1~20,3,3~6,-1"
  859. if (ge::StringUtils::StartWith(shape_range_str, "[")) {
  860. shape_range_str = shape_range_str.substr(1, shape_range_str.size());
  861. } else if (ge::StringUtils::StartWith(shape_range_str, ",")) {
  862. shape_range_str = shape_range_str.substr(2, shape_range_str.size());
  863. } else {
  864. GELOGE("Shape range of input is invalid. Given %s, while correct example: \"[1~20,3,3~6,-1],[1~20,3,3~6,-1]\"",
  865. shape_range.c_str());
  866. return PARAM_INVALID;
  867. }
  868. // parse shape_range of single input. eg. "1~20,3,3~6,-1"
  869. std::vector<std::pair<int64_t, int64_t>> range_of_single_input;
  870. vector<string> dim_range_set = ge::StringUtils::Split(shape_range_str, ',');
  871. for (const auto &range_pair_str : dim_range_set) {
  872. vector<string> range_pair_set = ge::StringUtils::Split(range_pair_str, '~');
  873. pair<int64_t, int64_t> range_pair;
  874. if (range_pair_set.size() == 1) {
  875. // fix dim
  876. auto range_value = stol(range_pair_set.at(0).c_str());
  877. if (range_value < 0) {
  878. range_pair = std::make_pair(1, range_value);
  879. } else {
  880. range_pair = std::make_pair(range_value, range_value);
  881. }
  882. } else if (range_pair_set.size() == 2) {
  883. // unknown dim, should get range.
  884. try {
  885. auto range_left = stol(range_pair_set.at(0).c_str());
  886. auto range_right = stol(range_pair_set.at(1).c_str());
  887. range_pair = std::make_pair(range_left, range_right);
  888. } catch (const std::invalid_argument) {
  889. GELOGE(
  890. "Parse shape range of input failed when transfer from string to int64. Given %s, while correct example: "
  891. "\"[1~20,3,3~6,-1],[1~20,3,3~6,-1]\"",
  892. shape_range.c_str());
  893. return PARAM_INVALID;
  894. }
  895. } else {
  896. GELOGE("Shape range of input is invalid. Given %s, while correct example: \"[1~20,3,3~6,-1],[1~20,3,3~6,-1]\"",
  897. shape_range.c_str());
  898. return PARAM_INVALID;
  899. }
  900. range_of_single_input.emplace_back(range_pair);
  901. }
  902. range.emplace_back(range_of_single_input);
  903. }
  904. return SUCCESS;
  905. }
  906. Status GetDynamicInputShapeRange(const std::vector<GeTensor> &user_input, const std::map<string, string> &graph_option,
  907. vector<vector<std::pair<int64_t, int64_t>>> &range_vec) {
  908. auto mode_iter = graph_option.find(OPTION_EXEC_DYNAMIC_EXECUTE_MODE);
  909. if (mode_iter == graph_option.end()) {
  910. GELOGD("Graph Option: Can not find %s option in graph options.", OPTION_EXEC_DYNAMIC_EXECUTE_MODE);
  911. return SUCCESS;
  912. }
  913. GELOGD("Graph Option: dynamic_input_mode value is %s.", mode_iter->second.c_str());
  914. if (mode_iter->second != "dynamic_execute") {
  915. return SUCCESS;
  916. }
  917. auto iter = graph_option.find(OPTION_EXEC_DATA_INPUTS_SHAPE_RANGE);
  918. if (iter == graph_option.end()) {
  919. GELOGE(PARAM_INVALID, "Graph option %s is required when %s is dynamic_execute", OPTION_EXEC_DATA_INPUTS_SHAPE_RANGE,
  920. OPTION_EXEC_DYNAMIC_EXECUTE_MODE);
  921. return PARAM_INVALID;
  922. }
  923. GELOGD("GraphOption: dynamic_inputs_shape_range value is %s.", iter->second.c_str());
  924. auto ret = ParseDynamicInputShapeRange(iter->second, range_vec);
  925. GE_CHK_STATUS_RET(ret, "Parse dynamic input shape range failed.");
  926. if (range_vec.size() != user_input.size()) {
  927. GELOGE(PARAM_INVALID, "Dynamic input shape range size is %zu, inputs size is %zu. Not match.", range_vec.size(),
  928. user_input.size());
  929. return PARAM_INVALID;
  930. }
  931. return SUCCESS;
  932. }
  933. Status UpdateDynamicInputShapeRange(const ge::GeAttrValue::INT index,
  934. const vector<vector<std::pair<int64_t, int64_t>>> &range_vec, OpDescPtr &op,
  935. GeTensorDesc &desc) {
  936. auto origin_shape = desc.GetShape();
  937. auto current_shape_range_vec = range_vec.at(index);
  938. if (current_shape_range_vec.size() != origin_shape.GetDimNum()) {
  939. GELOGE(PARAM_INVALID, "Given shape_range dim num is %zu, current dim num is %zu, not match.Pleace Check.",
  940. current_shape_range_vec.size(), origin_shape.GetDimNum());
  941. return PARAM_INVALID;
  942. }
  943. for (size_t i = 0; i < origin_shape.GetDimNum(); ++i) {
  944. if (current_shape_range_vec.at(i).first == current_shape_range_vec.at(i).second) {
  945. // given shape_range is known dim, check is same as origin or not
  946. if (origin_shape.GetDim(i) != current_shape_range_vec.at(i).first) {
  947. GELOGE(PARAM_INVALID, "Given shape range is %ld, current dim shape is %ld, not match.Pleace Check.",
  948. current_shape_range_vec.at(i).first, origin_shape.GetDim(i));
  949. return PARAM_INVALID;
  950. }
  951. origin_shape.SetDim(i, current_shape_range_vec.at(i).first);
  952. } else {
  953. origin_shape.SetDim(i, -1);
  954. }
  955. }
  956. desc.SetShape(origin_shape);
  957. desc.SetShapeRange(current_shape_range_vec);
  958. /*int64_t dynamic_shape_size = 1;
  959. for (const auto range_pair : range_vec.at(index)) {
  960. FMK_INT64_MULCHECK(dynamic_shape_size, range_pair.second);
  961. dynamic_shape_size *= range_pair.second;
  962. }
  963. auto data_type_size = GetSizeByDataType(desc.GetDataType());
  964. if (data_type_size < 0) {
  965. GELOGE(PARAM_INVALID, "Input data type is %s, is not supported.",
  966. TypeUtils::DataTypeToSerialString(desc.GetDataType()).c_str());
  967. return PARAM_INVALID;
  968. }
  969. FMK_INT64_MULCHECK(dynamic_shape_size, data_type_size);
  970. dynamic_shape_size *= data_type_size;
  971. GELOGI("In dynamic_execute mode ,set input %s shape range size %ld", op->GetName().c_str(), dynamic_shape_size);
  972. ge::TensorUtils::SetSize(desc, dynamic_shape_size);*/
  973. graphStatus graph_ret = op->UpdateInputDesc(0, desc);
  974. GE_CHK_STATUS_RET(graph_ret, "UpdateInputDesc fail, graph ret: %u", graph_ret);
  975. graph_ret = op->UpdateOutputDesc(0, desc);
  976. GE_CHK_STATUS_RET(graph_ret, "UpdateInputDesc fail, graph ret: %u", graph_ret);
  977. return SUCCESS;
  978. }
  979. } // namespace
  980. GraphPrepare::GraphPrepare() : compute_graph_(nullptr) {}
  981. GraphPrepare::~GraphPrepare() {}
  982. /**
  983. * @param graph
  984. * @return
  985. */
  986. Status GraphPrepare::UpdateVariableFormats(ComputeGraphPtr &graph) {
  987. GE_CHECK_NOTNULL(graph);
  988. auto var_names_to_refs = CollectVarNamesToRefs(graph);
  989. for (auto &node : graph->GetAllNodes()) {
  990. if (node == nullptr) {
  991. continue;
  992. }
  993. if (node->GetType() != VARIABLE) {
  994. continue;
  995. }
  996. auto trans_road = VarManager::Instance(graph->GetSessionID())->GetTransRoad(node->GetName());
  997. if (trans_road == nullptr) {
  998. GELOGD("The variable %s does not have any trans road", node->GetName().c_str());
  999. continue;
  1000. }
  1001. GELOGI("Recover the trans road for var %s reversely", node->GetName().c_str());
  1002. auto ret = RecoverTransRoadForVar(node, *trans_road);
  1003. if (ret != SUCCESS) {
  1004. GELOGE(INTERNAL_ERROR, "Failed to recovery trans road for var %s", node->GetName().c_str());
  1005. return INTERNAL_ERROR;
  1006. }
  1007. auto iter = var_names_to_refs.find(node->GetName());
  1008. if (iter != var_names_to_refs.end()) {
  1009. ret = RecoverTransRoadForVarRef(iter->second, *trans_road);
  1010. if (ret != SUCCESS) {
  1011. GELOGE(INTERNAL_ERROR, "Failed to recovery trans road for var ref %s", node->GetName().c_str());
  1012. return INTERNAL_ERROR;
  1013. }
  1014. }
  1015. }
  1016. return SUCCESS;
  1017. }
  1018. void GraphPrepare::SetOptions(const ge::GraphManagerOptions &options) { options_ = options; }
  1019. Status GraphPrepare::Init(const ge::Graph &graph, uint64_t session_id) {
  1020. compute_graph_ = GraphUtils::GetComputeGraph(graph);
  1021. if (compute_graph_ != nullptr) {
  1022. compute_graph_->SetSessionID(session_id);
  1023. }
  1024. session_id_ = session_id;
  1025. Status ret = CheckGraph();
  1026. if (ret != SUCCESS) {
  1027. GELOGE(ret, "RunGraph graph check fail, ret:%u", ret);
  1028. return ret;
  1029. }
  1030. (void)compute_graph_->TopologicalSorting();
  1031. ret = CheckRefOp();
  1032. if (ret != SUCCESS) {
  1033. GELOGE(ret, "RunGraph check ref op fail, ret:%u", ret);
  1034. return ret;
  1035. }
  1036. return SUCCESS;
  1037. }
  1038. Status GraphPrepare::CheckGraph() {
  1039. if (compute_graph_ == nullptr) {
  1040. GELOGE(GE_GRAPH_INIT_FAILED, "Graph prepare init compute graph is NULLPTR");
  1041. return GE_GRAPH_INIT_FAILED;
  1042. }
  1043. auto nodes = compute_graph_->GetAllNodes();
  1044. if (nodes.empty()) {
  1045. GELOGE(GE_GRAPH_INIT_FAILED, "Invalid graph, no nodes in this graph.");
  1046. return GE_GRAPH_INIT_FAILED;
  1047. }
  1048. for (const NodePtr &node : compute_graph_->GetAllNodes()) {
  1049. GE_CHECK_NOTNULL(node);
  1050. if (node->GetOpDesc() == nullptr) {
  1051. GELOGE(GE_GRAPH_INIT_FAILED, "Check Graph node opdesc is NULL");
  1052. return GE_GRAPH_INIT_FAILED;
  1053. }
  1054. }
  1055. return SUCCESS;
  1056. }
  1057. Status GraphPrepare::CheckRefInputNode(const NodePtr &node, const std::string &input_name,
  1058. const std::set<NodePtr> &ref_nodes) {
  1059. // Acceptable input types should be ref node, variable or Switch operator, which is issued by ME for dynamic
  1060. // lossscale and would be optimized in SwitchToStreamSwitchPass.
  1061. // Since ME dont differentiate between RefSwitch and Switch, and only issue Switch.
  1062. static std::set<std::string> acceptable_types = {ge::VARIABLE, ge::VARIABLEV2, ge::VARHANDLEOP,
  1063. ge::REFSWITCH, ge::REFMERGE, ge::REFENTER,
  1064. ge::REFNEXTITERATION, ge::REFEXIT, ge::SWITCH};
  1065. GE_CHECK_NOTNULL(node);
  1066. const auto &op_desc = node->GetOpDesc();
  1067. GE_CHECK_NOTNULL(op_desc);
  1068. const auto input_index = op_desc->GetInputIndexByName(input_name);
  1069. const auto &in_anchor = node->GetInDataAnchor(input_index);
  1070. GE_CHECK_NOTNULL(in_anchor);
  1071. const auto &peer_out_anchor = in_anchor->GetPeerOutAnchor();
  1072. GE_CHECK_NOTNULL(peer_out_anchor);
  1073. const auto &input_node = peer_out_anchor->GetOwnerNode();
  1074. GE_CHECK_NOTNULL(input_node);
  1075. const auto &input_op_desc = input_node->GetOpDesc();
  1076. GE_CHECK_NOTNULL(input_op_desc);
  1077. bool is_ref = (ref_nodes.find(input_node) != ref_nodes.end());
  1078. if (is_ref) {
  1079. return SUCCESS;
  1080. }
  1081. auto input_type = input_op_desc->GetType();
  1082. if (input_type == ge::FRAMEWORKOP) {
  1083. if (!ge::AttrUtils::GetStr(input_op_desc, ATTR_NAME_FRAMEWORK_ORIGINAL_TYPE, input_type)) {
  1084. GELOGE(PARAM_INVALID, "Get original type failed.");
  1085. return PARAM_INVALID;
  1086. }
  1087. }
  1088. bool is_acceptable = (acceptable_types.find(input_type) != acceptable_types.end());
  1089. if (!is_acceptable) {
  1090. ErrorManager::GetInstance().ATCReportErrMessage(
  1091. "E15005", {"opname", "optype", "opname1", "optype1"},
  1092. {op_desc->GetName(), node->GetType(), input_op_desc->GetName(), input_op_desc->GetType()});
  1093. GELOGE(PARAM_INVALID, "The ref input of ref node %s[%s] must be ref node or variable, but %s[%s]isn't.",
  1094. node->GetName().c_str(), node->GetType().c_str(), input_op_desc->GetName().c_str(),
  1095. input_op_desc->GetType().c_str());
  1096. return PARAM_INVALID;
  1097. }
  1098. return SUCCESS;
  1099. }
  1100. Status GraphPrepare::CheckRefOp() {
  1101. GE_CHECK_NOTNULL(compute_graph_);
  1102. std::set<NodePtr> ref_nodes;
  1103. for (const NodePtr &node : compute_graph_->GetDirectNode()) {
  1104. if (node == nullptr) {
  1105. GELOGE(PARAM_INVALID, "param [node] must not be null.");
  1106. return PARAM_INVALID;
  1107. }
  1108. auto op_desc = node->GetOpDesc();
  1109. if (op_desc == nullptr) {
  1110. GELOGE(PARAM_INVALID, "OpDesc of param [node] must not be null.");
  1111. return PARAM_INVALID;
  1112. }
  1113. auto input_name_index = op_desc->GetAllInputName();
  1114. auto outputs = op_desc->GetAllOutputName();
  1115. for (const auto &name_index : input_name_index) {
  1116. if (op_desc->GetOutputIndexByName(name_index.first) != -1) {
  1117. if (CheckRefInputNode(node, name_index.first, ref_nodes) != SUCCESS) {
  1118. GELOGE(PARAM_INVALID, "CheckRefInputNode failed.");
  1119. return PARAM_INVALID;
  1120. }
  1121. (void)ref_nodes.insert(node); // no need to check value
  1122. }
  1123. }
  1124. }
  1125. return SUCCESS;
  1126. };
  1127. Status GraphPrepare::SetRtContext(rtContext_t rt_context, rtCtxMode_t mode) {
  1128. GE_CHECK_NOTNULL(compute_graph_);
  1129. GELOGI("set rt_context, session id: %lu, graph id: %u, mode %d, device id:%u.", session_id_,
  1130. compute_graph_->GetGraphID(), static_cast<int>(mode), ge::GetContext().DeviceId());
  1131. GE_CHK_RT_RET(rtCtxCreate(&rt_context, mode, ge::GetContext().DeviceId()));
  1132. GE_CHK_RT_RET(rtCtxSetCurrent(rt_context));
  1133. RtContextUtil::GetInstance().AddRtContext(session_id_, compute_graph_->GetGraphID(), rt_context);
  1134. return SUCCESS;
  1135. }
  1136. Status GraphPrepare::AdjustDataOpOutput(const NodePtr &node) {
  1137. if (node == nullptr) {
  1138. GELOGE(GE_GRAPH_GRAPH_NODE_NULL, "Input node is NULL");
  1139. return GE_GRAPH_GRAPH_NODE_NULL;
  1140. }
  1141. OpDescPtr op_desc_ptr = node->GetOpDesc();
  1142. if (op_desc_ptr == nullptr) {
  1143. GELOGE(GE_GRAPH_GRAPH_NODE_NULL, "Input node opdesc is NULL");
  1144. return GE_GRAPH_GRAPH_NODE_NULL;
  1145. }
  1146. GeTensorDesc output = op_desc_ptr->GetOutputDesc(0);
  1147. int64_t tensor_size = 0;
  1148. graphStatus graph_status = TensorUtils::GetTensorMemorySizeInBytes(output, tensor_size);
  1149. if (graph_status != GRAPH_SUCCESS) {
  1150. ErrorManager::GetInstance().ATCReportErrMessage(
  1151. "E19012", {"function", "reason"}, {"GetTensorMemorySizeInBytes", "opname is " + node->GetName()});
  1152. GELOGE(graph_status, "GetTensorMemorySizeInBytes failed!");
  1153. return FAILED;
  1154. }
  1155. TensorUtils::SetSize(output, tensor_size);
  1156. graphStatus graph_ret = op_desc_ptr->UpdateOutputDesc(0, output);
  1157. if (graph_ret != GRAPH_SUCCESS) {
  1158. GELOGE(graph_ret, "UpdateOutputDesc fail, graph_ret:%u", graph_ret);
  1159. return graph_ret;
  1160. }
  1161. return SUCCESS;
  1162. }
  1163. Status GraphPrepare::UpdateInput(const std::vector<GeTensor> &user_input, const std::map<string,string> &graph_option) {
  1164. // Get shape range of input in dynamic_execute mode
  1165. vector<vector<std::pair<int64_t,int64_t>>> dynamic_shape_range_vec;
  1166. auto ret = GetDynamicInputShapeRange(user_input, graph_option, dynamic_shape_range_vec);
  1167. GE_CHK_STATUS_RET(ret, "Graph option is not right on Dynamic execute mode.");
  1168. compute_graph_->SaveDataFormat(ge::TypeUtils::DomiFormatToFormat(GetLocalOmgContext().format));
  1169. for (NodePtr &input_node : compute_graph_->GetDirectNode()) {
  1170. GE_CHECK_NOTNULL(input_node);
  1171. OpDescPtr op = input_node->GetOpDesc();
  1172. GE_CHECK_NOTNULL(op);
  1173. if (op->GetType() == DATA) {
  1174. GeAttrValue::INT index = 0;
  1175. if ((!(AttrUtils::GetInt(op, ATTR_NAME_INDEX, index))) || (GetLocalOmgContext().is_dynamic_input)) {
  1176. GELOGW("Get index from data attr failed");
  1177. continue;
  1178. }
  1179. if ((index < 0) || (static_cast<size_t>(index) >= user_input.size())) {
  1180. std::string situation = "data op index[" + std::to_string(index) + "]";
  1181. std::string reason = "it must less than user_input size[" + std::to_string(user_input.size()) + "]";
  1182. ErrorManager::GetInstance().ATCReportErrMessage("E19025", {"situation", "reason"}, {situation, reason});
  1183. GELOGE(PARAM_INVALID, "user_input size = %zu, graph data op index = %ld.", user_input.size(), index);
  1184. return FAILED;
  1185. }
  1186. if (IsDynamicDims(input_node)) {
  1187. continue;
  1188. }
  1189. GeTensorDesc desc(user_input[index].GetTensorDesc());
  1190. auto format = desc.GetFormat();
  1191. auto origin_format = desc.GetOriginFormat();
  1192. // data maybe internal format [FRACTAL_NZ] at singleop process such as GEMM.
  1193. bool need_check_internal_format = (!IsTansDataOpData(input_node)) && (!options_.is_single_op);
  1194. if (need_check_internal_format) {
  1195. bool is_internal = TypeUtils::IsInternalFormat(format) || TypeUtils::IsInternalFormat(origin_format);
  1196. if (is_internal) {
  1197. ErrorManager::GetInstance().ATCReportErrMessage("E19025", {"situation", "reason"},
  1198. {"Input format[" + TypeUtils::FormatToSerialString(format) + "] or origin_format[" +
  1199. TypeUtils::FormatToSerialString(origin_format) + "]", "it is not support"});
  1200. GELOGE(PARAM_INVALID, "Input format %s or origin_format %s is not support.",
  1201. TypeUtils::FormatToSerialString(format).c_str(),
  1202. TypeUtils::FormatToSerialString(origin_format).c_str());
  1203. return FAILED;
  1204. }
  1205. }
  1206. auto data_type = desc.GetDataType();
  1207. uint32_t length = 1;
  1208. bool type_ret = TypeUtils::GetDataTypeLength(data_type, length);
  1209. if (!type_ret) {
  1210. ErrorManager::GetInstance().ATCReportErrMessage("E19025", {"situation", "reason"},
  1211. {"Input datatype[" + TypeUtils::DataTypeToSerialString(data_type) + "]", "it is not support"});
  1212. GELOGE(PARAM_INVALID, "Input datatype %s is not support.",
  1213. TypeUtils::DataTypeToSerialString(data_type).c_str());
  1214. return FAILED;
  1215. }
  1216. int64_t desc_shape = desc.GetShape().GetShapeSize();
  1217. FMK_INT64_UINT32_MULCHECK(desc_shape, length);
  1218. int64_t shape_size = desc_shape * length;
  1219. GE_IF_BOOL_EXEC(shape_size == 0 && desc.GetShape().GetDimNum() == 0, shape_size = static_cast<int64_t>(length));
  1220. int64_t size = 0;
  1221. GE_IF_BOOL_EXEC(ge::TensorUtils::GetSize(desc, size) != GRAPH_SUCCESS,
  1222. GELOGE(INTERNAL_ERROR, "TensorUtils GetSize failed");
  1223. return FAILED);
  1224. bool size_check = (size != 0 && shape_size != size);
  1225. if (size_check) {
  1226. std::string situation = "input data size[" + std::to_string(size) +
  1227. "] and shape_size[" + std::to_string(size) + "]";
  1228. std::string reason = "because size != 0 and shape_size != size";
  1229. ErrorManager::GetInstance().ATCReportErrMessage("E19025", {"situation", "reason"}, {situation, reason});
  1230. GELOGE(PARAM_INVALID, "input data size =%ld, shape_size =%ld.", size, shape_size);
  1231. return FAILED;
  1232. }
  1233. ge::TensorUtils::SetSize(desc, shape_size);
  1234. graphStatus graph_ret = op->UpdateInputDesc(0, desc);
  1235. if (graph_ret != GRAPH_SUCCESS) {
  1236. GELOGE(graph_ret, "UpdateInputDesc fail, graph_ret:%u", graph_ret);
  1237. return graph_ret;
  1238. }
  1239. // Size will be recalculated in the build stage
  1240. ge::TensorUtils::SetSize(desc, 0);
  1241. graph_ret = op->UpdateOutputDesc(0, desc);
  1242. if (graph_ret != GRAPH_SUCCESS) {
  1243. GELOGE(graph_ret, "UpdateOutputDesc fail, graph_ret:%u", graph_ret);
  1244. return graph_ret;
  1245. }
  1246. if (!dynamic_shape_range_vec.empty()) {
  1247. ret = UpdateDynamicInputShapeRange(index, dynamic_shape_range_vec, op, desc);
  1248. GE_CHK_STATUS_RET(ret, "Fail to update dynamic input shape range on %s.", op->GetName().c_str());
  1249. continue;
  1250. }
  1251. if (!options_.train_graph_flag) {
  1252. Status ret = AdjustDataOpOutput(input_node);
  1253. GE_IF_BOOL_EXEC(ret != SUCCESS, GELOGE(ret, "AdjustDataOpOutput fail, ret:%u", ret); return ret);
  1254. }
  1255. }
  1256. }
  1257. return SUCCESS;
  1258. }
  1259. Status GraphPrepare::TryDoAipp() {
  1260. // infer and with aipp configure file, then call aipp insert
  1261. if ((!options_.train_graph_flag) && (!options_.insert_op_file.empty())) {
  1262. GE_DUMP(compute_graph_, "Before_insert_aipp");
  1263. Status ret = ge::InsertNewOpUtil::Instance().Init();
  1264. if (ret != SUCCESS) {
  1265. GELOGE(INTERNAL_ERROR, "TryDoAipp: InsertNewOpUtil instance failed.");
  1266. return INTERNAL_ERROR;
  1267. }
  1268. ret = ge::InsertNewOpUtil::Instance().Parse(options_.insert_op_file.c_str());
  1269. if (ret != SUCCESS) {
  1270. GELOGE(GE_GRAPH_OPTIMIZE_INSERT_OP_PARSE_FAILED, "TryDoAipp: parse config file %s failed",
  1271. options_.insert_op_file.c_str());
  1272. return GE_GRAPH_OPTIMIZE_INSERT_OP_PARSE_FAILED;
  1273. }
  1274. ret = ge::InsertNewOpUtil::Instance().InsertAippOps(compute_graph_, options_.insert_op_file);
  1275. if (ret != SUCCESS) {
  1276. GELOGE(GE_GRAPH_OPTIMIZE_INSERT_DYN_OP_FAILED, "TryDoAipp: insert aipp op ret failed, ret:%u", ret);
  1277. return GE_GRAPH_OPTIMIZE_INSERT_DYN_OP_FAILED;
  1278. }
  1279. }
  1280. return SUCCESS;
  1281. }
  1282. Status GraphPrepare::FormatAndShapeProcess() {
  1283. Status ret = ResourcePairProcess("add");
  1284. if (ret != SUCCESS) {
  1285. GELOGE(ret, "ResourcePairProcess failed");
  1286. return ret;
  1287. }
  1288. GE_TIMESTAMP_START(InferOriginFormat1);
  1289. ret = compute_graph_->InferOriginFormat();
  1290. GE_TIMESTAMP_END(InferOriginFormat1, "GraphPrepare::InferOriginFormat1");
  1291. GE_DUMP(compute_graph_, "after_first_inferformat");
  1292. if (ret != SUCCESS) {
  1293. GELOGE(ret, "Prepare Graph first inferformat failed");
  1294. return ret;
  1295. }
  1296. GE_TIMESTAMP_START(InferShapeForPreprocess);
  1297. ret = InferShapeForPreprocess();
  1298. GE_TIMESTAMP_END(InferShapeForPreprocess, "GraphPrepare::InferShapeForPreprocess");
  1299. GE_DUMP(compute_graph_, "after_infershape");
  1300. if (ret != SUCCESS) {
  1301. GELOGE(GE_GRAPH_INFERSHAPE_FAILED, "Prepare Graph infershape failed");
  1302. return GE_GRAPH_INFERSHAPE_FAILED;
  1303. }
  1304. GE_TIMESTAMP_START(InferOriginFormat2);
  1305. ret = compute_graph_->InferOriginFormat();
  1306. GE_TIMESTAMP_END(InferOriginFormat2, "GraphPrepare::InferOriginFormat2");
  1307. if (ret != SUCCESS) {
  1308. GELOGE(ret, "Prepare Graph inferformat failed");
  1309. return ret;
  1310. }
  1311. ret = ResourcePairProcess("remove");
  1312. if (ret != SUCCESS) {
  1313. return ret;
  1314. }
  1315. return ret;
  1316. }
  1317. Status GraphPrepare::ResourcePairProcess(const std::string &action) {
  1318. PassManager control_pass;
  1319. // Graph pass tmp logic for resource infershape
  1320. if (options_.train_graph_flag) {
  1321. try {
  1322. if (action == "add") {
  1323. (void)control_pass.AddPass("ResourcePairProcess::ResourcePairAddControlPass", new ResourcePairAddControlPass);
  1324. } else {
  1325. (void)control_pass.AddPass("ResourcePairProcess::ResourcePairRemoveControlPass",
  1326. new ResourcePairRemoveControlPass);
  1327. }
  1328. } catch (std::bad_alloc &e) {
  1329. GELOGE(INTERNAL_ERROR, "Add pass failed, bad memory allocation occur, action:%s.", action.c_str());
  1330. return INTERNAL_ERROR;
  1331. }
  1332. }
  1333. Status ret = control_pass.Run(compute_graph_);
  1334. if (ret != SUCCESS && ret != NOT_CHANGED) {
  1335. GELOGE(ret, "Run ResourcePairControlPass failed, action:%s, ret:%u.", action.c_str(), ret);
  1336. return ret;
  1337. }
  1338. return SUCCESS;
  1339. }
  1340. Status GraphPrepare::UpdateDataNetOutputByStorageFormat() {
  1341. for (auto &node_ptr : compute_graph_->GetAllNodes()) {
  1342. GE_CHECK_NOTNULL(node_ptr);
  1343. if (node_ptr->GetType() == DATA) {
  1344. uint32_t index = 0;
  1345. auto op_desc = node_ptr->GetOpDesc();
  1346. GE_CHECK_NOTNULL(op_desc);
  1347. const GeTensorDescPtr input = op_desc->MutableInputDesc(index);
  1348. Format storage_format = FORMAT_RESERVED;
  1349. vector<int64_t> dst_shape_dims;
  1350. if (GetStorageFormatAndShape(op_desc, input, storage_format, dst_shape_dims) != SUCCESS) {
  1351. GELOGE(INTERNAL_ERROR, "Get storage format for input failed");
  1352. return FAILED;
  1353. }
  1354. if (storage_format == FORMAT_RESERVED) {
  1355. continue;
  1356. }
  1357. if (ModifyDataNetOutputFormatAndShape(op_desc, index, storage_format, dst_shape_dims) != SUCCESS) {
  1358. GELOGE(INTERNAL_ERROR, "Modify format and shape for inputfailed");
  1359. return FAILED;
  1360. }
  1361. }
  1362. if (node_ptr->GetType() == ge::NETOUTPUT) {
  1363. auto op_desc = node_ptr->GetOpDesc();
  1364. GE_CHECK_NOTNULL(op_desc);
  1365. for (uint32_t index = 0; index < op_desc->GetOutputsSize(); index++) {
  1366. const GeTensorDescPtr output = op_desc->MutableOutputDesc(index);
  1367. Format storage_format = FORMAT_RESERVED;
  1368. vector<int64_t> dst_shape_dims;
  1369. if (GetStorageFormatAndShape(op_desc, output, storage_format, dst_shape_dims) != SUCCESS) {
  1370. GELOGE(INTERNAL_ERROR, "Get storage format from output failed");
  1371. return FAILED;
  1372. }
  1373. if (storage_format == FORMAT_RESERVED) {
  1374. continue;
  1375. }
  1376. if (ModifyDataNetOutputFormatAndShape(op_desc, index, storage_format, dst_shape_dims) != SUCCESS) {
  1377. GELOGE(INTERNAL_ERROR, "Modify format and shape for output failed");
  1378. return FAILED;
  1379. }
  1380. }
  1381. }
  1382. }
  1383. return SUCCESS;
  1384. }
  1385. Status GraphPrepare::SaveOriginalGraphToOmModel() {
  1386. if (options_.save_original_model == "true") {
  1387. ModelHelper model_helper;
  1388. Status ret = model_helper.SaveOriginalGraphToOmModel(ge::GraphUtils::CreateGraphFromComputeGraph(compute_graph_),
  1389. options_.original_model_file);
  1390. if (ret != SUCCESS) {
  1391. // If save original model fail, process continue
  1392. GELOGW("SaveOriginalGraphToOmModel fail");
  1393. }
  1394. }
  1395. return SUCCESS;
  1396. }
  1397. #define PP_RUN_AND_DUMP(name, func, ...) \
  1398. do { \
  1399. GE_RUN(Prepare, func, __VA_ARGS__); \
  1400. GE_DUMP(compute_graph, "PrepareAfter" name); \
  1401. GELOGI("Prepare %s on graph %s success.", name, compute_graph->GetName().c_str()); \
  1402. } while (0)
  1403. #define PP_RUN(name, func, ...) \
  1404. do { \
  1405. GE_RUN(Prepare, func, __VA_ARGS__); \
  1406. GELOGI("Prepare %s on graph %s success.", name, compute_graph->GetName().c_str()); \
  1407. } while (0)
  1408. Status GraphPrepare::PrepareDynShape(const GraphNodePtr &graph_node, const std::vector<GeTensor> &user_input,
  1409. ge::ComputeGraphPtr &compute_graph, uint64_t session_id) {
  1410. GE_CHECK_NOTNULL(graph_node->GetGraph());
  1411. GE_CHECK_NOTNULL(compute_graph);
  1412. GetLocalOmgContext().type = static_cast<domi::FrameworkType>(options_.framework_type);
  1413. const Graph &const_graph = *graph_node->GetGraph();
  1414. PP_RUN("Init", Init, const_graph, session_id);
  1415. PP_RUN("SetRtContext", SetRtContext, rtContext_t(), RT_CTX_GEN_MODE);
  1416. PP_RUN_AND_DUMP("CheckAndUpdateInput", CheckAndUpdateInput, user_input, graph_node->GetOptions());
  1417. PP_RUN_AND_DUMP("GraphEquivalentTransformation", GraphEquivalentTransformation);
  1418. PP_RUN_AND_DUMP("ProcessOutput", ProcessNetOutput);
  1419. PP_RUN_AND_DUMP("ProcessMultiBatch", multibatch::ProcessMultiBatch, compute_graph_);
  1420. PP_RUN_AND_DUMP("InsertAipp", TryDoAipp);
  1421. PP_RUN_AND_DUMP("ProcessBeforeInfershape", ProcessBeforeInfershape);
  1422. PP_RUN_AND_DUMP("InferFormatAndShape", FormatAndShapeProcess);
  1423. PP_RUN_AND_DUMP("GetDynamicOutputShape", multibatch::GetDynamicOutputShape, compute_graph_);
  1424. PP_RUN_AND_DUMP("ProcessAippStage2", InsertNewOpUtil::Instance().UpdateDataNodeByAipp, compute_graph_);
  1425. PP_RUN("SaveOriginalGraphToOmModel", SaveOriginalGraphToOmModel);
  1426. PP_RUN_AND_DUMP("PrepareOptimize", PrepareOptimize);
  1427. return SUCCESS;
  1428. }
  1429. Status GraphPrepare::RecordAIPPInfo(ge::ComputeGraphPtr &compute_graph) {
  1430. PP_RUN("RecordAIPPInfo", InsertNewOpUtil::Instance().RecordAIPPInfoToData, compute_graph_);
  1431. return SUCCESS;
  1432. }
  1433. Status GraphPrepare::PrepareRunningFormatRefiner() {
  1434. auto compute_graph = compute_graph_;
  1435. PassManager pass_manager;
  1436. GE_CHK_STATUS_RET(pass_manager.AddPass("PrepareRunningFormatRefiner::VariablePrepareOpPass",
  1437. new (std::nothrow) VariablePrepareOpPass))
  1438. GE_TIMESTAMP_START(pass_manager);
  1439. auto ret = pass_manager.Run(compute_graph);
  1440. GE_TIMESTAMP_END(pass_manager, "GraphPrepare::PrepareRunningFormatRefiner");
  1441. if (ret != SUCCESS && ret != NOT_CHANGED) {
  1442. GELOGE(ret, "Run passes for running format refiner failed, ret:%u.", ret);
  1443. return ret;
  1444. }
  1445. PP_RUN_AND_DUMP("UpdateInputOutputByUserOptions", UpdateInputOutputByOptions);
  1446. PP_RUN_AND_DUMP("UpdateVariableFormats", UpdateVariableFormats, compute_graph_);
  1447. return SUCCESS;
  1448. }
  1449. Status GraphPrepare::SwitchOpOptimize(ComputeGraphPtr &compute_graph) {
  1450. if (compute_graph == nullptr) {
  1451. GELOGE(GE_GRAPH_NULL_INPUT, "Input Graph is NULL");
  1452. return GE_GRAPH_NULL_INPUT;
  1453. }
  1454. GEPass ge_passes(compute_graph);
  1455. NamesToPass hccl_group;
  1456. HcclGroupPass hccl_group_pass;
  1457. GELOGD("Add hccl group pass success");
  1458. hccl_group.emplace_back("HcclGroupPass", &hccl_group_pass);
  1459. auto ret = ge_passes.Run(hccl_group);
  1460. if (ret != SUCCESS) {
  1461. GELOGE(ret, "Run HcclGroupPass pass for preprocess failed, ret:%u.", ret);
  1462. return ret;
  1463. }
  1464. ret = compute_graph->TopologicalSorting();
  1465. if (ret != SUCCESS) {
  1466. GELOGE(ret, "Graph topological sort failed, ret:%u.", ret);
  1467. return ret;
  1468. }
  1469. return SUCCESS;
  1470. }
  1471. #undef PP_RUN_AND_DUMP
  1472. #undef PP_RUN
  1473. Status GraphPrepare::GenerateInfershapeGraph(ConstGraphPtr graph) {
  1474. if (graph == nullptr) {
  1475. GELOGE(GE_GRAPH_NULL_INPUT, "Input Graph is NULL");
  1476. return GE_GRAPH_NULL_INPUT;
  1477. }
  1478. const Graph &const_graph = *graph;
  1479. Status ret = Init(const_graph, 0);
  1480. if (ret != SUCCESS) {
  1481. GELOGE(ret, "Init graph_prepare fail, ret:%u", ret);
  1482. return ret;
  1483. }
  1484. GE_DUMP(compute_graph_, "after_parser");
  1485. GELOGI("Start infershape for dump json process.");
  1486. ret = compute_graph_->InferOriginFormat();
  1487. GE_DUMP(compute_graph_, "after_inferformat");
  1488. if (ret != SUCCESS) {
  1489. GELOGE(ret, "Prepare Graph inferformat failed");
  1490. return ret;
  1491. }
  1492. InferShapePass infer_shape_pass;
  1493. NamesToPass names_to_passes;
  1494. names_to_passes.emplace_back("InferShapePass", &infer_shape_pass);
  1495. GEPass ge_passes(compute_graph_);
  1496. ret = ge_passes.Run(names_to_passes);
  1497. GE_DUMP(compute_graph_, "after_infershape");
  1498. if (ret != SUCCESS) {
  1499. GELOGE(ret, "Run ge_passes infershape for preprocess failed, ret:%u.", ret);
  1500. return ret;
  1501. }
  1502. ShapeRefiner::ClearContextMap();
  1503. return SUCCESS;
  1504. }
  1505. Status GraphPrepare::CheckConstOp() {
  1506. for (auto &node_ptr : compute_graph_->GetAllNodes()) {
  1507. GE_CHECK_NOTNULL(node_ptr);
  1508. if (node_ptr->GetType() == CONSTANT) {
  1509. Status ret = VerifyConstOp(node_ptr);
  1510. GE_CHK_BOOL_RET_STATUS(ret == SUCCESS, ret, "Const Op Check failed");
  1511. } else if (node_ptr->GetType() == FRAMEWORKOP) {
  1512. auto op_desc = node_ptr->GetOpDesc();
  1513. if (op_desc == nullptr) {
  1514. GELOGE(PARAM_INVALID, "Get op desc failed");
  1515. return PARAM_INVALID;
  1516. }
  1517. std::string original_type;
  1518. GE_IF_BOOL_EXEC(ge::AttrUtils::GetStr(op_desc, ATTR_NAME_FRAMEWORK_ORIGINAL_TYPE, original_type),
  1519. GELOGI("Get FrameWorkOp original type [%s]", original_type.c_str()));
  1520. GELOGI("original type is %s", original_type.c_str());
  1521. if (original_type == CONSTANT) {
  1522. Status ret = VerifyConstOp(node_ptr);
  1523. GE_CHK_BOOL_RET_STATUS(ret == SUCCESS, ret, "Const Op Check failed");
  1524. }
  1525. }
  1526. }
  1527. return SUCCESS;
  1528. }
  1529. Status GraphPrepare::VerifyConstOp(const NodePtr &node) {
  1530. GE_CHECK_NOTNULL(node);
  1531. auto op_desc = node->GetOpDesc();
  1532. GE_CHECK_NOTNULL(op_desc);
  1533. ConstGeTensorPtr ge_tensor_ptr;
  1534. if (!(AttrUtils::GetTensor(op_desc, ATTR_NAME_WEIGHTS, ge_tensor_ptr))) {
  1535. GELOGE(PARAM_INVALID, "Get value from const attr failed");
  1536. return PARAM_INVALID;
  1537. }
  1538. GE_CHECK_NOTNULL(ge_tensor_ptr);
  1539. auto data_size = ge_tensor_ptr->GetData().GetSize();
  1540. auto ge_tensor_desc = ge_tensor_ptr->GetTensorDesc();
  1541. int64_t shape_size = ge_tensor_desc.GetShape().GetShapeSize();
  1542. auto data_type = ge_tensor_desc.GetDataType();
  1543. uint32_t length = 1;
  1544. bool type_ret = TypeUtils::GetDataTypeLength(data_type, length);
  1545. if (!type_ret) {
  1546. ErrorManager::GetInstance().ATCReportErrMessage("E19025", {"situation", "reason"},
  1547. {"Input datatype[" + TypeUtils::DataTypeToSerialString(data_type) + "]", "it is not support"});
  1548. GELOGE(PARAM_INVALID, "Input datatype %s is not support.", TypeUtils::DataTypeToSerialString(data_type).c_str());
  1549. return FAILED;
  1550. }
  1551. FMK_INT64_UINT32_MULCHECK(shape_size, length);
  1552. GELOGI("Const real value Size:%zu, op_desc Shape Size:%ld, data_type:%s.", data_size, shape_size * length,
  1553. TypeUtils::DataTypeToSerialString(data_type).c_str());
  1554. if (shape_size == 0) {
  1555. if (ge_tensor_desc.GetShape().GetDims().size() == 0) {
  1556. // shape = [], means it's a sclar tensor.
  1557. GE_CHK_BOOL_EXEC(data_size / length == 1,
  1558. ErrorManager::GetInstance().ATCReportErrMessage("E10043", {"reason"}, {"Const is invalid scalar tensor."});
  1559. return PARAM_INVALID, "Const is invalid scalar tensor.");
  1560. } else {
  1561. // shape = [x, y, 0,...], means it's a vector tensor that value is [].
  1562. GE_CHK_BOOL_EXEC(data_size == 0,
  1563. ErrorManager::GetInstance().ATCReportErrMessage("E10043", {"reason"}, {"Const is invalid vector scalar."});
  1564. return PARAM_INVALID, "Const is invalid vector scalar.");
  1565. }
  1566. } else {
  1567. GE_CHK_BOOL_EXEC(data_size == static_cast<size_t>(shape_size * length) && data_size != 0,
  1568. ErrorManager::GetInstance().ATCReportErrMessage(
  1569. "E10043", {"reason"}, {"Const input data size is not equal with tensor desc shape"});
  1570. return PARAM_INVALID, "Const input data size is not equal with tensor desc shape");
  1571. }
  1572. return SUCCESS;
  1573. }
  1574. bool GraphPrepare::IsDynamicDims(const NodePtr &input_node) {
  1575. auto data_shape = NodeUtils::GetOutputDesc(*input_node, kDataOutIndex).GetShape();
  1576. const auto &dims = data_shape.GetDims();
  1577. bool all_is_positive = false;
  1578. if (std::all_of(dims.begin(), dims.end(), [](int64_t val) { return val >= 0; })) {
  1579. all_is_positive = true;
  1580. }
  1581. if (!all_is_positive && !options_.input_shape.empty() && !options_.dynamic_dims.empty() &&
  1582. options_.dynamic_node_type != kInvalidDynaimcDimsType) {
  1583. GELOGI("No need to check and update desc info, the dims of %s is %s.", input_node->GetName().c_str(),
  1584. formats::JoinToString(dims).c_str());
  1585. return true;
  1586. }
  1587. return false;
  1588. }
  1589. Status GraphPrepare::CheckUserInput(const std::vector<GeTensor> &user_input) {
  1590. if (GetLocalOmgContext().is_dynamic_input) {
  1591. return SUCCESS;
  1592. }
  1593. unsigned int node_num = 0;
  1594. unsigned int data_num = 0;
  1595. for (NodePtr &input_node : compute_graph_->GetDirectNode()) {
  1596. GE_CHECK_NOTNULL(input_node);
  1597. OpDescPtr op = input_node->GetOpDesc();
  1598. GE_CHECK_NOTNULL(op);
  1599. node_num++;
  1600. if (op->GetType() == DATA || op->GetType() == AIPPDATA) {
  1601. data_num++;
  1602. GeAttrValue::INT index = 0;
  1603. if (!(AttrUtils::GetInt(op, ATTR_NAME_INDEX, index))) {
  1604. GELOGE(GE_GRAPH_INIT_FAILED, "Get index from attr failed");
  1605. return GE_GRAPH_INIT_FAILED;
  1606. }
  1607. if ((index < 0) || (static_cast<size_t>(index) >= user_input.size())) {
  1608. std::string situation = "data op index[" + std::to_string(index) + "]";
  1609. std::string reason = "it must less than user_input size[" + std::to_string(user_input.size()) + "]";
  1610. ErrorManager::GetInstance().ATCReportErrMessage("E19025", {"situation", "reason"}, {situation, reason});
  1611. GELOGE(GE_GRAPH_INIT_FAILED, "user_input size:%zu, data op index:%ld.", user_input.size(), index);
  1612. return GE_GRAPH_INIT_FAILED;
  1613. }
  1614. if (IsDynamicDims(input_node)) {
  1615. continue;
  1616. }
  1617. GeTensorDesc desc(user_input[index].GetTensorDesc());
  1618. for (size_t i = 0; i < desc.GetShape().GetDimNum(); ++i) {
  1619. if (desc.GetShape().GetDim(i) < 0) {
  1620. std::string situation = "data dim[" + std::to_string(i) + "][" +
  1621. std::to_string(desc.GetShape().GetDim(i)) + "]" ;
  1622. std::string reason = "it need >= 0";
  1623. ErrorManager::GetInstance().ATCReportErrMessage("E19025", {"situation", "reason"}, {situation, reason});
  1624. GELOGE(GE_GRAPH_INIT_FAILED, "data dim %zu is not supported, need >= 0, real:%ld.", i,
  1625. desc.GetShape().GetDim(i));
  1626. return GE_GRAPH_INIT_FAILED;
  1627. }
  1628. }
  1629. }
  1630. }
  1631. if (node_num <= data_num) {
  1632. GELOGW("Prepare check user input, data_num = %u, node_num = %u", data_num, node_num);
  1633. }
  1634. return SUCCESS;
  1635. }
  1636. Status GraphPrepare::InferShapeForPreprocess() {
  1637. GELOGI("Start infershape for preprocess.");
  1638. GEPass ge_passes(compute_graph_);
  1639. NamesToPass names_to_passes;
  1640. AssertPass assert_pass;
  1641. if (!options_.train_graph_flag) {
  1642. names_to_passes.emplace_back("AssertPass", &assert_pass);
  1643. }
  1644. InferShapePass infer_shape_pass;
  1645. names_to_passes.emplace_back("InferShapePass", &infer_shape_pass);
  1646. ReplaceWithEmptyConstPass replace_with_empty_const_pass;
  1647. names_to_passes.emplace_back("ReplaceWithEmptyConstPass", &replace_with_empty_const_pass);
  1648. DimensionComputePass dimension_compute_pass;
  1649. names_to_passes.emplace_back("DimensionComputePass", &dimension_compute_pass);
  1650. ConstantFoldingPass constant_folding_pass;
  1651. names_to_passes.emplace_back("ConstantFoldingPass", &constant_folding_pass);
  1652. int32_t dev_count = 0;
  1653. AicpuConstantFoldingPass aicpu_constant_folding_pass;
  1654. const char *aicpu_constant_folding_on = std::getenv("AICPU_CONSTANT_FOLDING_ON");
  1655. rtError_t rt_err = RT_ERROR_NONE;
  1656. if (aicpu_constant_folding_on != nullptr) {
  1657. rt_err = rtGetDeviceCount(&dev_count);
  1658. if (rt_err == RT_ERROR_NONE) {
  1659. Status result = SetRtContext(rtContext_t(), RT_CTX_NORMAL_MODE);
  1660. if (result != SUCCESS) {
  1661. GELOGE(result, "Set rt context failed.");
  1662. return result;
  1663. }
  1664. names_to_passes.emplace_back("AicpuConstantFoldingPass", &aicpu_constant_folding_pass);
  1665. }
  1666. }
  1667. Status ret = ge_passes.Run(names_to_passes);
  1668. if (aicpu_constant_folding_on != nullptr) {
  1669. if (rt_err == RT_ERROR_NONE) {
  1670. Status result = SetRtContext(rtContext_t(), RT_CTX_GEN_MODE);
  1671. if (result != SUCCESS) {
  1672. GELOGE(result, "Set rt context failed.");
  1673. return result;
  1674. }
  1675. }
  1676. }
  1677. ShapeRefiner::ClearContextMap();
  1678. if (ret != SUCCESS) {
  1679. GELOGE(ret, "Run ge_passes infershape for preprocess failed, ret:%u.", ret);
  1680. return ret;
  1681. }
  1682. return SUCCESS;
  1683. }
  1684. Status GraphPrepare::PrepareOptimize() {
  1685. GELOGI("Start optimize for preprocess.");
  1686. // check rw type
  1687. GraphOptimize graph_optimize;
  1688. bool has_conflict = false;
  1689. graph_optimize.CheckRWConflict(compute_graph_, has_conflict);
  1690. if (has_conflict) {
  1691. GELOGE(GRAPH_PARAM_INVALID, "There has rw conflict.Stop optimize.");
  1692. return FAILED;
  1693. }
  1694. PassManager original_graph_passes;
  1695. // Graph pass
  1696. try {
  1697. (void)original_graph_passes.AddPass("PrepareOptimize::ShapeOperateOpRemovePass", new ShapeOperateOpRemovePass);
  1698. (void)original_graph_passes.AddPass("PrepareOptimize::ReplaceTransShapePass", new ReplaceTransShapePass);
  1699. (void)original_graph_passes.AddPass("PrepareOptimize::MarkAgnosticPass", new MarkAgnosticPass);
  1700. } catch (std::bad_alloc &e) {
  1701. GELOGE(INTERNAL_ERROR, "Add pass failed, bad memory allocation occurs.");
  1702. return INTERNAL_ERROR;
  1703. }
  1704. GE_TIMESTAMP_START(original_graph_passes);
  1705. Status ret = original_graph_passes.Run(compute_graph_);
  1706. GE_TIMESTAMP_END(original_graph_passes, "GraphPrepare::OriginalGraphPasses");
  1707. if (ret != SUCCESS && ret != NOT_CHANGED) {
  1708. GELOGE(ret, "Run graph passes optimize for preprocess failed, ret:%u.", ret);
  1709. return ret;
  1710. }
  1711. // New pass
  1712. GEPass ge_passes(compute_graph_);
  1713. NamesToPass names_to_passes;
  1714. EnterPass enter_pass;
  1715. names_to_passes.emplace_back("EnterPass", &enter_pass);
  1716. CondPass cond_pass;
  1717. names_to_passes.emplace_back("CondPass", &cond_pass);
  1718. PrintOpPass print_pass;
  1719. if (options_.enable_print_op_pass) {
  1720. names_to_passes.emplace_back("PrintOpPass", &print_pass);
  1721. }
  1722. NoUseReshapeRemovePass no_use_reshape_remove_pass;
  1723. names_to_passes.emplace_back("NoUseReshapeRemovePass", &no_use_reshape_remove_pass);
  1724. DropOutPass dropout_pass;
  1725. AssertPass assert_pass;
  1726. UnusedConstPass unused_const_pass;
  1727. StopGradientPass stop_gradient_pass;
  1728. PreventGradientPass prevent_gradient_pass;
  1729. PlaceholderWithDefaultPass placeholder_with_default_pass;
  1730. GuaranteeConstPass guarantee_const_pass;
  1731. VarIsInitializedOpPass var_is_initialized_pass;
  1732. ParallelConcatStartOpPass parallel_concat_start_op_pass;
  1733. IdentityPass identity_pass(false);
  1734. #ifdef ONLY_COMPILE_OPEN_SRC
  1735. AssignRemovePass assign_remove_pass;
  1736. #endif
  1737. SnapshotPass snapshot_pass;
  1738. if (!options_.train_graph_flag) {
  1739. names_to_passes.emplace_back("DropOutPass", &dropout_pass);
  1740. names_to_passes.emplace_back("AssertPass", &assert_pass);
  1741. }
  1742. names_to_passes.emplace_back("UnusedConstPass", &unused_const_pass);
  1743. names_to_passes.emplace_back("StopGradientPass", &stop_gradient_pass);
  1744. names_to_passes.emplace_back("PreventGradientPass", &prevent_gradient_pass);
  1745. names_to_passes.emplace_back("PlaceholderWithDefaultPass", &placeholder_with_default_pass);
  1746. names_to_passes.emplace_back("SnapshotPass", &snapshot_pass);
  1747. names_to_passes.emplace_back("GuaranteeConstPass", &guarantee_const_pass);
  1748. names_to_passes.emplace_back("VarIsInitializedOpPass", &var_is_initialized_pass);
  1749. names_to_passes.emplace_back("ParallelConcatStartOpPass", &parallel_concat_start_op_pass);
  1750. names_to_passes.emplace_back("IdentityPass", &identity_pass);
  1751. #ifdef ONLY_COMPILE_OPEN_SRC
  1752. if (GetContext().GetHostExecFlag()) {
  1753. names_to_passes.emplace_back("AssignRemovePass", &assign_remove_pass);
  1754. }
  1755. #endif
  1756. GE_TIMESTAMP_START(names_to_passes);
  1757. ret = ge_passes.Run(names_to_passes);
  1758. GE_TIMESTAMP_END(names_to_passes, "GraphPrepare::NamesToPasses");
  1759. if (ret != SUCCESS) {
  1760. GELOGE(ret, "Run ge_passes optimize for preprocess failed, ret:%u.", ret);
  1761. return ret;
  1762. }
  1763. PassManager graph_pass;
  1764. try {
  1765. (void)graph_pass.AddPass("PrepareOptimize::PrunePass", new PrunePass);
  1766. } catch (std::bad_alloc &e) {
  1767. GELOGE(INTERNAL_ERROR, "Add pass failed, bad memory allocation occurs.");
  1768. return INTERNAL_ERROR;
  1769. }
  1770. GE_TIMESTAMP_START(graph_passes);
  1771. ret = graph_pass.Run(compute_graph_);
  1772. GE_TIMESTAMP_END(graph_passes, "GraphPrepare::GraphPasses");
  1773. if (ret != SUCCESS && ret != NOT_CHANGED) {
  1774. GELOGE(ret, "Run graph passes optimize for preprocess failed, ret:%u.", ret);
  1775. return ret;
  1776. }
  1777. // The constant for train is CONSTANTOP, and is CONSTANT for inference. They will be unified in future.
  1778. TypeConversionOfConstant();
  1779. ret = compute_graph_->TopologicalSorting();
  1780. if (ret != SUCCESS) {
  1781. GELOGE(ret, "Graph topological sort failed, ret:%u.", ret);
  1782. return ret;
  1783. }
  1784. GELOGI("End optimize for preprocess.");
  1785. return SUCCESS;
  1786. }
  1787. void GraphPrepare::TypeConversionOfConstant() {
  1788. bool is_acl_compile = false;
  1789. for (ge::NodePtr &n : compute_graph_->GetAllNodes()) {
  1790. // This can ensure that n is not a null pointer
  1791. // No Conversion when called by aclOpCompile
  1792. (void)AttrUtils::GetBool(n->GetOpDesc(), ATTR_DYNAMIC_SHAPE_SINGLE_AICPU, is_acl_compile);
  1793. if (is_acl_compile) {
  1794. return;
  1795. }
  1796. }
  1797. if (options_.train_graph_flag) {
  1798. GELOGD("trans CONSTANT to CONSTANTOP in train.");
  1799. for (ge::NodePtr &n : compute_graph_->GetAllNodes()) {
  1800. // This can ensure that n is not a null pointer
  1801. if (n->GetOpDesc()->GetType() == CONSTANT) {
  1802. n->GetOpDesc()->SetType(CONSTANTOP);
  1803. }
  1804. }
  1805. } else {
  1806. GELOGD("trans CONSTANTOP to CONSTANT in inferrence.");
  1807. for (ge::NodePtr &n : compute_graph_->GetAllNodes()) {
  1808. // This can ensure that n is not a null pointer
  1809. if (n->GetOpDesc()->GetType() == CONSTANTOP) {
  1810. n->GetOpDesc()->SetType(CONSTANT);
  1811. }
  1812. }
  1813. }
  1814. }
  1815. Status GraphPrepare::GraphEquivalentTransformation() {
  1816. NamesToPass names_to_pass;
  1817. ForPass for_pass;
  1818. names_to_pass.emplace_back("ForToWhilePass", &for_pass);
  1819. return GEPass(compute_graph_).Run(names_to_pass);
  1820. }
  1821. Status GraphPrepare::ProcessBeforeInfershape() {
  1822. NamesToPass names_to_passes;
  1823. CondRemovePass condition_remove_pass;
  1824. names_to_passes.emplace_back("CondRemovePass", &condition_remove_pass);
  1825. GE_TIMESTAMP_START(ProcessCondRemove);
  1826. auto ret = GEPass(compute_graph_).Run(names_to_passes);
  1827. GE_TIMESTAMP_END(ProcessCondRemove, "GraphManager::ProcessCondRemove");
  1828. if (ret != SUCCESS) {
  1829. GELOGE(ret, "Run ge_passes optimize for OptimizeAfterMergeSubGraph failed, ret:%d.", ret);
  1830. return ret;
  1831. }
  1832. return SUCCESS;
  1833. }
  1834. Status GraphPrepare::ProcessNetOutput() {
  1835. PassManager graph_passes_before_infershape;
  1836. try {
  1837. if (options_.train_graph_flag) {
  1838. graph_passes_before_infershape.AddPass("ProcessNetOutput::SavePass", new (std::nothrow) SavePass);
  1839. }
  1840. graph_passes_before_infershape.AddPass("ProcessNetOutput::NetOutputPass", new (std::nothrow) NetOutputPass);
  1841. graph_passes_before_infershape.AddPass("ProcessNetOutput::DataPass",
  1842. new (std::nothrow) DataPass); // Add NetOutput first.
  1843. } catch (std::bad_alloc) {
  1844. GELOGE(INTERNAL_ERROR, "Add pass failed, bad memory allocation occurs.");
  1845. return INTERNAL_ERROR;
  1846. }
  1847. auto ret = graph_passes_before_infershape.Run(compute_graph_);
  1848. if ((ret != SUCCESS) && (ret != NOT_CHANGED)) {
  1849. GELOGE(ret, "Run graph_passes_before_infershape failed, ret:%d.", ret);
  1850. return ret;
  1851. }
  1852. return SUCCESS;
  1853. }
  1854. Status GraphPrepare::CheckAndUpdateInput(const std::vector<GeTensor> &user_input,const std::map<string,string> &graph_option) {
  1855. compute_graph_->SetInputSize(user_input.size());
  1856. if (user_input.empty()) {
  1857. return SUCCESS;
  1858. }
  1859. auto ret = CheckUserInput(user_input);
  1860. if (ret != SUCCESS) {
  1861. GELOGE(ret, "Check user input failed.");
  1862. return ret;
  1863. }
  1864. ret = UpdateInput(user_input, graph_option);
  1865. if (ret != SUCCESS) {
  1866. GELOGE(ret, "UpdateInput fail, ret:%u", ret);
  1867. return ret;
  1868. }
  1869. if (user_input.size() != 0) {
  1870. ret = CheckConstOp();
  1871. if (ret != SUCCESS) {
  1872. GELOGE(ret, "CheckConstOp fail, ret:%u", ret);
  1873. return ret;
  1874. }
  1875. } else {
  1876. ret = compute_graph_->TopologicalSorting();
  1877. if (ret != SUCCESS) {
  1878. GELOGE(ret, "graph prepare error: compute_graph_->Topological Sorting");
  1879. return FAILED;
  1880. }
  1881. }
  1882. return SUCCESS;
  1883. }
  1884. Status GraphPrepare::UpdateInputOutputByOptions() {
  1885. auto ret = UpdateDataNetOutputByStorageFormat();
  1886. if (ret != SUCCESS) {
  1887. GELOGE(ret, "Update format acoording to storage format failed.");
  1888. return ret;
  1889. }
  1890. if (options_.train_graph_flag) {
  1891. GELOGI("This is train mode, no need to do this schedule.");
  1892. return SUCCESS;
  1893. }
  1894. for (auto &node_ptr : compute_graph_->GetDirectNode()) {
  1895. GE_CHECK_NOTNULL(node_ptr);
  1896. if (CheckIfNeedSetNdFormat(node_ptr) != SUCCESS) {
  1897. GELOGE(INTERNAL_ERROR, "Set node [%s] format ND failed", node_ptr->GetName().c_str());
  1898. return FAILED;
  1899. }
  1900. if (node_ptr->GetType() == DATA) {
  1901. if (ProcessDataNodeDynShape(node_ptr) != SUCCESS) {
  1902. GELOGE(INTERNAL_ERROR, "Process data node failed");
  1903. return FAILED;
  1904. }
  1905. }
  1906. if (node_ptr->GetType() == ge::NETOUTPUT) {
  1907. if (ProcessNetoutputNodeDynShape(node_ptr) != SUCCESS) {
  1908. GELOGE(INTERNAL_ERROR, "Process netoutput node failed");
  1909. return FAILED;
  1910. }
  1911. }
  1912. }
  1913. return SUCCESS;
  1914. }
  1915. bool GraphPrepare::IsTansDataOpData(const ge::NodePtr &var_node) {
  1916. for (auto &out_anchor : var_node->GetAllOutDataAnchors()) {
  1917. GE_RT_FALSE_CHECK_NOTNULL(out_anchor);
  1918. for (auto &in_anchor : out_anchor->GetPeerInDataAnchors()) {
  1919. GE_RT_FALSE_CHECK_NOTNULL(in_anchor);
  1920. ge::NodePtr dst_node = in_anchor->GetOwnerNode();
  1921. GE_RT_FALSE_CHECK_NOTNULL(dst_node);
  1922. if (dst_node->GetType() == TRANSDATA) {
  1923. return true;
  1924. }
  1925. }
  1926. }
  1927. return false;
  1928. }
  1929. } // namespace ge

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