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_mem_assigner.cc 110 kB

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
4 years ago
5 years ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
4 years ago
5 years ago
4 years ago
4 years ago
4 years ago
4 years ago
5 years ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
4 years ago
4 years ago
5 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
5 years ago
5 years ago
5 years ago
4 years ago
5 years ago
4 years ago
4 years ago
5 years ago
4 years ago
4 years ago
5 years ago
5 years ago
5 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
4 years ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
4 years ago
5 years ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
4 years ago
5 years ago
5 years ago
5 years ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
4 years ago
5 years ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301
  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/build/memory/graph_mem_assigner.h"
  17. #include <cstring>
  18. #include <set>
  19. #include "common/math/math_util.h"
  20. #include "common/util/error_manager/error_manager.h"
  21. #include "framework/common/debug/ge_log.h"
  22. #include "framework/common/debug/log.h"
  23. #include "graph/build/memory/hybrid_mem_assigner.h"
  24. #include "graph/build/memory/var_mem_assign_util.h"
  25. #include "graph/build/memory/block_mem_assigner.h"
  26. #include "graph/common/omg_util.h"
  27. #include "graph/debug/ge_attr_define.h"
  28. #include "graph/ge_attr_value.h"
  29. #include "graph/manager/graph_var_manager.h"
  30. #include "graph/utils/tensor_utils.h"
  31. #include "graph/utils/type_utils.h"
  32. #include "graph/build/memory/buffer_pool_mem_assigner.h"
  33. namespace {
  34. const int kAllInputAddrIsAtomic = -1;
  35. const int kVirtualInputNodeMemoryReuse = 0;
  36. const int kVirtualOutputNodeMemoryReuse = 1;
  37. const int kPrevNextDistanceNum = 2;
  38. const int64_t kInvalidStream = -1;
  39. const char *const kEngineNameGeLocal = "DNN_VM_GE_LOCAL_OP_STORE";
  40. // One state per bit cannot be repeated
  41. enum ContinuousType { kTypeInput = 1, kTypeInputNoPadding = 2, kTypeOutput = 4, kTypeOutputNoPadding = 8 };
  42. int64_t GetSymbolOutputOffset(const std::map<std::string, std::string> &anchor_to_symbol,
  43. const std::map<std::string, std::list<ge::NodeIndexIO>> &symbol_to_anchors,
  44. const ge::NodePtr &node, const uint32_t i) {
  45. ge::NodeIndexIO cur_node_index_io(node, i, ge::kOut);
  46. auto iter1 = anchor_to_symbol.find(cur_node_index_io.ToString());
  47. if (iter1 == anchor_to_symbol.end()) {
  48. return ge::kInvalidOffset;
  49. }
  50. auto out_symbol = iter1->second;
  51. auto iter2 = symbol_to_anchors.find(out_symbol);
  52. if (iter2 == symbol_to_anchors.end()) {
  53. return ge::kInvalidOffset;
  54. }
  55. for (const auto &node_index_io : iter2->second) {
  56. if (node_index_io.value_ == out_symbol) {
  57. vector<int64_t> output_list = node->GetOpDesc()->GetOutputOffset();
  58. vector<int64_t> symbol_output_list = node_index_io.node_->GetOpDesc()->GetOutputOffset();
  59. if (node_index_io.index_ >= symbol_output_list.size()) {
  60. return ge::kInvalidOffset;
  61. }
  62. GELOGD("Node %s %uth output offset is %ld, Symbol %s output offset is %ld.", node->GetName().c_str(), i,
  63. output_list[i], iter2->first.c_str(), symbol_output_list.at(node_index_io.index_));
  64. return symbol_output_list.at(node_index_io.index_);
  65. }
  66. }
  67. return ge::kInvalidOffset;
  68. }
  69. bool isVariableMemoryNode(const ge::NodePtr &node) {
  70. return (node->GetType() == ge::VARIABLE) || (node->GetType() == ge::CONSTANTOP);
  71. }
  72. } // namespace
  73. namespace ge {
  74. Status VariableMemoryAssigner::Assign() {
  75. Status result = ge::VarMemAssignUtil::AssignConstantOpMemory(compute_graph_);
  76. if (result != ge::SUCCESS) {
  77. return result;
  78. }
  79. result = ge::VarMemAssignUtil::AssignVarMemory(compute_graph_);
  80. if (result != ge::SUCCESS) {
  81. return result;
  82. }
  83. return ge::SUCCESS;
  84. }
  85. Status VariableMemoryAssigner::AssignVarAttr2Nodes() {
  86. Status result = ge::VarMemAssignUtil::AssignVarAttr2Nodes(compute_graph_);
  87. if (result != ge::SUCCESS) {
  88. return result;
  89. }
  90. return ge::SUCCESS;
  91. }
  92. Status VariableMemoryAssigner::AssignMemory2HasRefAttrNode() {
  93. Status result = ge::VarMemAssignUtil::AssignMemory2HasRefAttrNode(compute_graph_);
  94. if (result != ge::SUCCESS) {
  95. return result;
  96. }
  97. return ge::SUCCESS;
  98. }
  99. Status GraphMemoryAssigner::AssignMemory() {
  100. ge::HybridMemAssignerPtr mem_assigner(new(std::nothrow) HybridMemAssigner(compute_graph_));
  101. if (mem_assigner->Assign() != ge::SUCCESS) {
  102. GELOGE(ge::FAILED, "[Assign][GraphMem]graph_id:%u, graph_name:%s",
  103. compute_graph_->GetGraphID(), compute_graph_->GetName().c_str());
  104. return ge::FAILED;
  105. }
  106. for (auto pair : mem_assigner->GetMemOffsets()) {
  107. MemoryOffset offset(pair.first, pair.second);
  108. memory_offset_.emplace(pair.first, offset);
  109. }
  110. // base memtype offset must be exist
  111. auto it = mem_assigner->GetMemOffsets().find(RT_MEMORY_HBM);
  112. if (it == mem_assigner->GetMemOffsets().end()) {
  113. MemoryOffset memory_offset(RT_MEMORY_HBM, 0);
  114. memory_offset_.emplace(RT_MEMORY_HBM, memory_offset);
  115. }
  116. it = mem_assigner->GetMemOffsets().find(RT_MEMORY_P2P_DDR);
  117. if (it == mem_assigner->GetMemOffsets().end()) {
  118. MemoryOffset p2p_memory_offset(RT_MEMORY_P2P_DDR, 0);
  119. memory_offset_.emplace(RT_MEMORY_P2P_DDR, p2p_memory_offset);
  120. }
  121. auto session_id = compute_graph_->GetSessionID();
  122. int64_t var_size_before_assign = ge::VarManager::Instance(session_id)->GetVarMemSize(RT_MEMORY_HBM);
  123. auto variable_assigner =
  124. std::unique_ptr<ge::VariableMemoryAssigner>(new(std::nothrow) ge::VariableMemoryAssigner(compute_graph_));
  125. if (variable_assigner == nullptr) {
  126. GELOGE(ge::FAILED, "[New][Object:VariableMemoryAssigner]graph_id:%u, graph_name:%s",
  127. compute_graph_->GetGraphID(), compute_graph_->GetName().c_str());
  128. REPORT_CALL_ERROR("E19999", "New Object:VariableMemoryAssigner failed, "
  129. "graph_id:%u, graph_name:%s", compute_graph_->GetGraphID(), compute_graph_->GetName().c_str());
  130. return ge::FAILED;
  131. }
  132. if (variable_assigner->Assign() != ge::SUCCESS) {
  133. return ge::FAILED;
  134. }
  135. int64_t var_size_assign = ge::VarManager::Instance(session_id)->GetVarMemSize(RT_MEMORY_HBM) - var_size_before_assign;
  136. GELOGD("GraphMemoryAssigner::AssignMemory variable size = %ld", var_size_assign);
  137. mem_assigner_ = std::move(mem_assigner);
  138. return ge::SUCCESS;
  139. }
  140. ge::Status GraphMemoryAssigner::AssignVarAttr2Nodes() {
  141. auto variable_assigner =
  142. std::unique_ptr<ge::VariableMemoryAssigner>(new(std::nothrow) ge::VariableMemoryAssigner(compute_graph_));
  143. if (variable_assigner == nullptr) {
  144. GELOGE(ge::FAILED, "[New][Object:VariableMemoryAssigner]graph_id:%u, graph_name:%s",
  145. compute_graph_->GetGraphID(), compute_graph_->GetName().c_str());
  146. REPORT_CALL_ERROR("E19999", "New Object:VariableMemoryAssigner failed, "
  147. "graph_id:%u, graph_name:%s", compute_graph_->GetGraphID(), compute_graph_->GetName().c_str());
  148. return ge::FAILED;
  149. }
  150. if (variable_assigner->AssignVarAttr2Nodes() != ge::SUCCESS) {
  151. return ge::FAILED;
  152. }
  153. return ge::SUCCESS;
  154. }
  155. ge::Status GraphMemoryAssigner::AssignMemory2HasRefAttrNode() {
  156. auto variable_assigner =
  157. std::unique_ptr<ge::VariableMemoryAssigner>(new(std::nothrow) ge::VariableMemoryAssigner(compute_graph_));
  158. if (variable_assigner == nullptr) {
  159. GELOGE(ge::FAILED, "[New][Object:VariableMemoryAssigner]graph_id:%u, graph_name:%s",
  160. compute_graph_->GetGraphID(), compute_graph_->GetName().c_str());
  161. REPORT_CALL_ERROR("E19999", "New Object:VariableMemoryAssigner failed, "
  162. "graph_id:%u, graph_name:%s", compute_graph_->GetGraphID(), compute_graph_->GetName().c_str());
  163. }
  164. if (variable_assigner->AssignMemory2HasRefAttrNode() != ge::SUCCESS) {
  165. return ge::FAILED;
  166. }
  167. return ge::SUCCESS;
  168. }
  169. ge::Status CalculateTensorRealSizeAndOutSize(const ge::ConstGeTensorDescPtr &output_desc,
  170. int64_t dim_index, int64_t &output_mem_size,
  171. int64_t &batch_dim_num, int64_t &out_size) {
  172. graphStatus graph_status = ge::TensorUtils::GetSize(*output_desc, out_size);
  173. if (graph_status != GRAPH_SUCCESS) {
  174. GELOGE(FAILED, "[Get][TensorSize]");
  175. REPORT_CALL_ERROR("E19999", "Get tensor size failed");
  176. return FAILED;
  177. }
  178. GeShape output_shape = output_desc->GetShape();
  179. std::vector<int64_t> output_dims = output_shape.GetDims();
  180. if (dim_index >= static_cast<int64_t>(output_dims.size())) {
  181. REPORT_INNER_ERROR("E19999", "Inner param dim_index value:%ld invalid, bigger than dim size:%lu in shape:%s",
  182. dim_index, output_dims.size(), output_shape.ToString().c_str());
  183. GELOGE(FAILED, "[Check][Param:dim_index]value:%ld invalid, bigger than dim size:%lu in shape:%s",
  184. dim_index, output_dims.size(), output_shape.ToString().c_str());
  185. return FAILED;
  186. }
  187. for (int64_t index = 0; index < dim_index; index++) {
  188. FMK_INT64_MULCHECK(batch_dim_num, output_dims[index]);
  189. batch_dim_num *= output_dims[index];
  190. output_dims[index] = 1;
  191. }
  192. output_shape = GeShape(output_dims);
  193. Format out_format = output_desc->GetFormat();
  194. DataType data_type = output_desc->GetDataType();
  195. graph_status = ge::TensorUtils::CalcTensorMemSize(output_shape, out_format, data_type, output_mem_size);
  196. if (graph_status != GRAPH_SUCCESS) {
  197. GELOGE(graph_status, "[Calc][TensorSize]");
  198. return FAILED;
  199. }
  200. if (output_mem_size < 0) {
  201. REPORT_INNER_ERROR("E19999", "After calculating, tensor memory size:%ld invalid, less than 0. "
  202. "shape:%s, format:%s, dtype:%s, maybe has dynamic shape",
  203. output_mem_size,
  204. output_shape.ToString().c_str(),
  205. TypeUtils::FormatToSerialString(out_format).c_str(),
  206. TypeUtils::DataTypeToSerialString(data_type).c_str());
  207. GELOGE(FAILED, "[Check][TensorSize]value:%ld invalid after calc, less than 0. shape:%s, format:%s, dtype:%s, "
  208. "maybe has dynamic shape",
  209. output_mem_size,
  210. output_shape.ToString().c_str(),
  211. TypeUtils::FormatToSerialString(out_format).c_str(),
  212. TypeUtils::DataTypeToSerialString(data_type).c_str());
  213. return FAILED;
  214. }
  215. return SUCCESS;
  216. }
  217. Status GraphMemoryAssigner::ReAssignMemory(bool is_loop_graph, map<uint64_t, size_t> &mem_type_to_offset) {
  218. if (memory_offset_.empty()) {
  219. REPORT_INNER_ERROR("E19999", "InnerData memory_offset_ empty, not expected, graph_id:%u, graph_name:%s",
  220. compute_graph_->GetGraphID(), compute_graph_->GetName().c_str());
  221. GELOGE(FAILED, "[Check][InnerData:memory_offset_]empty is not expected, "
  222. "graph_id:%u, graph_name:%s", compute_graph_->GetGraphID(), compute_graph_->GetName().c_str());
  223. return ge::FAILED;
  224. }
  225. GE_CHK_STATUS_RET(ReAssignContinuousMemory(is_loop_graph),
  226. "[ReAssign][ContinuousMemory] Failed! graph:%s", compute_graph_->GetName().c_str());
  227. GE_CHK_STATUS_RET(ReAssignAtomicMemory(is_loop_graph),
  228. "[ReAssign][AtomicMemory] Failed! graph:%s", compute_graph_->GetName().c_str());
  229. GE_CHK_STATUS_RET(AssignBufferPoolMemory(),
  230. "[Assign][BufferPoolMemory] Failed! graph:%s", compute_graph_->GetName().c_str());
  231. size_t total_mem_offset = 0;
  232. for (auto pair : memory_offset_) {
  233. mem_type_to_offset[pair.first] = pair.second.mem_offset_;
  234. total_mem_offset += pair.second.mem_offset_;
  235. }
  236. auto session_id = compute_graph_->GetSessionID();
  237. if (total_mem_offset > VarManager::Instance(session_id)->GetGraphMemoryMaxSize()) {
  238. GELOGE(ge::FAILED, "[Check][TotalMemOffset] %zu is greater than memory manager malloc max size %zu, "
  239. "graph_id:%u, graph_name:%s, reduce your batchsize or scale your model may solve problem",
  240. total_mem_offset, VarManager::Instance(session_id)->GetGraphMemoryMaxSize(),
  241. compute_graph_->GetGraphID(), compute_graph_->GetName().c_str());
  242. for (auto iter : mem_type_to_offset) {
  243. ErrorManager::GetInstance().ATCReportErrMessage("E19022", {"memType", "size", "item", "maxsize"},
  244. {std::to_string(iter.first), std::to_string(iter.second), "featuremap",
  245. std::to_string(VarManager::Instance(session_id)->GetGraphMemoryMaxSize())});
  246. GEEVENT("[IMAS]AfterAssignMemory : %s memoffset[%zu], memtype[%ld]", compute_graph_->GetName().c_str(),
  247. iter.second, iter.first);
  248. }
  249. return ge::FAILED;
  250. }
  251. return SUCCESS;
  252. }
  253. Status GraphMemoryAssigner::AssignZeroCopyMemory(map<uint64_t, size_t> &mem_offset, size_t &zero_mem_copy_size) {
  254. BlockMemAssignerPtr priority_assigner = std::move(mem_assigner_->GetPriorityAssinger());
  255. if (priority_assigner == nullptr) {
  256. REPORT_INNER_ERROR("E19999", "InnerData priority_assigner nullptr, not expected, graph_id:%u, graph_name:%s",
  257. compute_graph_->GetGraphID(), compute_graph_->GetName().c_str());
  258. GELOGE(FAILED, "[Check][InnerData:priority_assigner]nullptr is invalid, "
  259. "graph_id:%u, graph_name:%s", compute_graph_->GetGraphID(), compute_graph_->GetName().c_str());
  260. return ge::FAILED;
  261. }
  262. size_t mem_offset_tmp = mem_offset[RT_MEMORY_HBM];
  263. // set offset for zero copy block
  264. for (auto &memory_block : priority_assigner->GetMemoryBlocks()) {
  265. if (memory_block == nullptr || memory_block->deleted_block_ || !memory_block->is_zero_copy_) {
  266. continue;
  267. }
  268. memory_block->Resize();
  269. memory_block->SetHeadOffset(mem_offset[RT_MEMORY_HBM]);
  270. mem_offset[RT_MEMORY_HBM] += memory_block->Size();
  271. memory_block->SetTailOffset(mem_offset[RT_MEMORY_HBM] - 1);
  272. }
  273. // set offset for zero copy nodes
  274. priority_assigner->SetOpMemOffset(true);
  275. zero_mem_copy_size = mem_offset[RT_MEMORY_HBM] - mem_offset_tmp;
  276. auto iter = memory_offset_.find(RT_MEMORY_HBM);
  277. if (iter == memory_offset_.end()) {
  278. REPORT_INNER_ERROR("E19999", "InnerData memory_offset_ does not have type[HBM], not expected, "
  279. "graph_id:%u, graph_name:%s", compute_graph_->GetGraphID(), compute_graph_->GetName().c_str());
  280. GELOGE(FAILED, "[Check][InnerData]memory_offset_ does not have memory type[HBM]"
  281. "graph_id:%u, graph_name:%s", compute_graph_->GetGraphID(), compute_graph_->GetName().c_str());
  282. return FAILED;
  283. }
  284. iter->second.mem_offset_ = mem_offset[RT_MEMORY_HBM];
  285. GELOGD("max_mem_offset:%zu, mem_offset:%zu, zero_mem_copy_size:%zu.", mem_offset[RT_MEMORY_HBM], mem_offset_tmp,
  286. zero_mem_copy_size);
  287. return SUCCESS;
  288. }
  289. uint32_t GetContinuousMemoryType(const OpDescPtr &op_desc) {
  290. if (op_desc == nullptr) {
  291. return 0;
  292. };
  293. bool is_continuous = false;
  294. uint32_t continuous_type = 0;
  295. // If GetBool fail, is_continuous is false.
  296. (void)ge::AttrUtils::GetBool(op_desc, ATTR_NAME_CONTINUOUS_INPUT, is_continuous);
  297. if (is_continuous) {
  298. continuous_type |= kTypeInput;
  299. } else {
  300. (void)ge::AttrUtils::GetBool(op_desc, ATTR_NAME_NOPADDING_CONTINUOUS_INPUT, is_continuous);
  301. if (is_continuous) {
  302. bool attr_reuse = false;
  303. (void)ge::AttrUtils::GetBool(op_desc, ATTR_NAME_OUTPUT_REUSE_INPUT, attr_reuse);
  304. if (attr_reuse) {
  305. continuous_type |= kTypeInputNoPadding;
  306. }
  307. }
  308. }
  309. is_continuous = false;
  310. (void)ge::AttrUtils::GetBool(op_desc, ATTR_NAME_CONTINUOUS_OUTPUT, is_continuous);
  311. if (is_continuous) {
  312. continuous_type |= kTypeOutput;
  313. } else {
  314. (void)ge::AttrUtils::GetBool(op_desc, ATTR_NAME_NOPADDING_CONTINUOUS_OUTPUT, is_continuous);
  315. if (is_continuous) {
  316. bool attr_reuse = false;
  317. (void)ge::AttrUtils::GetBool(op_desc, ATTR_NAME_OUTPUT_REUSE_INPUT, attr_reuse);
  318. if (attr_reuse) {
  319. continuous_type |= kTypeOutputNoPadding;
  320. }
  321. }
  322. }
  323. if (continuous_type != 0) {
  324. GELOGI("[Get][MemType:Continuous]Current node %s, value is %d", op_desc->GetName().c_str(), continuous_type);
  325. }
  326. return continuous_type;
  327. }
  328. Status GetMemorySize(const OpDescPtr &op_desc, const ge::ConstGeTensorDescPtr &output_desc, uint32_t continuous_type,
  329. int64_t &tensor_size, int64_t &nopadding_size) {
  330. if ((op_desc == nullptr) || (output_desc == nullptr)) {
  331. REPORT_INNER_ERROR("E19999", "InnerData param op_desc or output_desc is nullptr, not expected");
  332. GELOGE(FAILED, "[Check][Param]op_desc or output_desc is nullptr");
  333. }
  334. tensor_size = 0;
  335. nopadding_size = 0;
  336. bool is_nopadding = ((continuous_type & kTypeInputNoPadding) != 0) || ((continuous_type & kTypeOutputNoPadding) != 0);
  337. if (is_nopadding) {
  338. int64_t attr_dim_index;
  339. bool get_attr_dim_flag = ge::AttrUtils::GetInt(op_desc, ATTR_NAME_REUSE_INPUT_ON_DIM_INDEX, attr_dim_index);
  340. if (!get_attr_dim_flag) {
  341. REPORT_INNER_ERROR("E19999", "Get Attr:%s failed, op_name:%s",
  342. ATTR_NAME_REUSE_INPUT_ON_DIM_INDEX.c_str(), op_desc->GetName().c_str());
  343. GELOGE(FAILED, "[Get][Attr:%s]fail for op_name:%s",
  344. ATTR_NAME_REUSE_INPUT_ON_DIM_INDEX.c_str(), op_desc->GetName().c_str());
  345. return FAILED;
  346. }
  347. // Calculate tensor real size of each piece of data and out size of complete data
  348. int64_t batch_dim_num = 1;
  349. if (CalculateTensorRealSizeAndOutSize(output_desc, attr_dim_index, nopadding_size, batch_dim_num, tensor_size) !=
  350. SUCCESS) {
  351. REPORT_CALL_ERROR("E19999", "CalculateTensorRealSizeAndOutSize failed, attr_dim_index:%ld, op_name:%s",
  352. attr_dim_index, op_desc->GetName().c_str());
  353. GELOGE(FAILED, "[Calculate][NopaddingSize]failed for node %s, attr_dim_index:%ld",
  354. op_desc->GetName().c_str(), attr_dim_index);
  355. return FAILED;
  356. }
  357. } else {
  358. if (ge::TensorUtils::GetSize(*output_desc, tensor_size) != ge::SUCCESS) {
  359. REPORT_INNER_ERROR("E19999", "Get Tensor Size failed, op_name:%s", op_desc->GetName().c_str());
  360. GELOGE(FAILED, "[Get][TensorSize]failed in padding case, op_name:%s", op_desc->GetName().c_str());
  361. return FAILED;
  362. }
  363. }
  364. if ((tensor_size < 0) || (nopadding_size < 0)) {
  365. REPORT_INNER_ERROR("E19999", "GetMemorySize fail, "
  366. "tensor_size:%ld or nopadding_size:%ld less than 0, invalid, op_name:%s",
  367. tensor_size, nopadding_size, op_desc->GetName().c_str());
  368. GELOGE(FAILED, "[Get][MemorySize]tensor_size:%ld or nopadding_size:%ld less than 0, invalid, op_name:%s",
  369. tensor_size, nopadding_size, op_desc->GetName().c_str());
  370. return FAILED;
  371. }
  372. return SUCCESS;
  373. }
  374. void AlignMemOffset(int64_t &mem_align_size) {
  375. if (mem_align_size <= 0) {
  376. return;
  377. }
  378. mem_align_size = (mem_align_size + MEM_ALIGN_SIZE - 1) / MEM_ALIGN_SIZE * MEM_ALIGN_SIZE;
  379. }
  380. bool IsContinuousInputConflict(const ge::NodePtr &node, const OpDescPtr &peer_op_desc) {
  381. bool is_peer_output_continuous = false;
  382. // If GetBool fail, is_peer_output_continuous is false.
  383. (void) ge::AttrUtils::GetBool(peer_op_desc, ATTR_NAME_CONTINUOUS_OUTPUT, is_peer_output_continuous);
  384. // Get peer node output size, if size == 1(peer node has only one output), continuous input of the node and
  385. // continuous output of the previous node is the same, we can support it. If size != 1, there may be
  386. // conflict between the two, we can not support it.
  387. auto peer_output_size = peer_op_desc->GetOutputsSize();
  388. GE_IF_BOOL_EXEC(is_peer_output_continuous && (peer_output_size != 1),
  389. std::string error = "Current op" + FmtToStr(node->GetOpDesc()->GetName()) +
  390. " requires continuous input, while the previous op" + FmtToStr(peer_op_desc->GetName()) +
  391. " requires continuous output. There may be conflict between the two." +
  392. "This node is not supported now.";
  393. GE_ERRORLOG_AND_ERRORMSG(FAILED, error.c_str());
  394. return true;);
  395. bool is_peer_reference = false;
  396. // If GetBool fail, is_peer_reference is false.
  397. (void) AttrUtils::GetBool(peer_op_desc, ATTR_NAME_REFERENCE, is_peer_reference);
  398. GE_IF_BOOL_EXEC(is_peer_reference,
  399. std::string warning = "[Check][Continuous]Current op" + FmtToStr(node->GetOpDesc()->GetName()) +
  400. " requires continuous input, while the previous op" + FmtToStr(peer_op_desc->GetName()) +
  401. " is ref. There may be conflict between the two.";
  402. GELOGW("%s", warning.c_str());
  403. return false;);
  404. return false;
  405. }
  406. /// op1 -> node -> op2
  407. /// return true when node is ref from input, and op1 or op2 is reuse input from output
  408. bool GraphMemoryAssigner::IsRefFromInputOpCascade(const NodePtr &node) {
  409. std::unordered_set<int32_t> ref_input_index;
  410. int32_t reuse_in_index = -1;
  411. for (const auto &out_anchor : node->GetAllOutDataAnchors()) {
  412. bool reuse_input = GraphUtils::IsRefFromInput(out_anchor, reuse_in_index);
  413. if (reuse_input) {
  414. GELOGD("IsRefFromInputOpCascade: cur node:%s:%d is ref", node->GetName().c_str(), reuse_in_index);
  415. ref_input_index.insert(reuse_in_index);
  416. }
  417. }
  418. bool ref_from_input = !ref_input_index.empty();
  419. if (!ref_from_input) {
  420. return false;
  421. }
  422. for (const auto &in_anchor : node->GetAllInDataAnchors()) {
  423. const auto &peer_out_anchor = in_anchor->GetPeerOutAnchor();
  424. GE_IF_BOOL_EXEC(peer_out_anchor == nullptr, continue);
  425. auto in_node = peer_out_anchor->GetOwnerNode();
  426. if (isVariableMemoryNode(in_node) && (ref_input_index.count(in_anchor->GetIdx()) > 0)) {
  427. GELOGD("Reuse variable memory, input node:%s, type:%s.", in_node->GetName().c_str(), in_node->GetType().c_str());
  428. return false;
  429. }
  430. if (ref_from_input && GraphUtils::IsRefFromInput(peer_out_anchor, reuse_in_index)) {
  431. GELOGD("IsRefFromInputOpCascade: in node[%s] is ref, reuse index is:%d",
  432. in_node->GetName().c_str(), reuse_in_index);
  433. return true;
  434. }
  435. }
  436. for (const auto &out_anchor : node->GetAllOutDataAnchors()) {
  437. const auto &peer_in_anchors = out_anchor->GetPeerInDataAnchors();
  438. for (const auto &peer_in_anchor : peer_in_anchors) {
  439. auto peer_in_node = peer_in_anchor->GetOwnerNode();
  440. GE_IF_BOOL_EXEC(peer_in_node == nullptr, continue);
  441. for (const auto &peer_in_node_out_anchor : peer_in_node->GetAllOutDataAnchors()) {
  442. if (ref_from_input && GraphUtils::IsRefFromInput(peer_in_node_out_anchor, reuse_in_index)) {
  443. GELOGD("IsRefFromInputOpCascade: out node[%s] is ref, reuse index is:%d",
  444. peer_in_node_out_anchor->GetOwnerNode()->GetName().c_str(), reuse_in_index);
  445. return true;
  446. }
  447. }
  448. }
  449. }
  450. return false;
  451. }
  452. /// node:in0(in0 reuse out0) -> peer_node:out0
  453. /// update peer_node's 0th output offset with node's 0th output offset
  454. Status GraphMemoryAssigner::UpdateRefOpOffsetReverse(const NodePtr &node) {
  455. map<int32_t, int32_t> out2ins;
  456. GE_CHK_STATUS_RET(TryGetNodeRefIndexes(node, out2ins), "[Get][RefIndexes]fail for node:%s",
  457. node->GetName().c_str());
  458. auto op_desc = node->GetOpDesc();
  459. GE_CHECK_NOTNULL(op_desc);
  460. vector<int64_t> output_list = op_desc->GetOutputOffset();
  461. for (const auto &out2in : out2ins) {
  462. auto reuse_in_anchor = node->GetInDataAnchor(out2in.second);
  463. GE_CHECK_NOTNULL(reuse_in_anchor);
  464. auto peer_out_anchor = reuse_in_anchor->GetPeerOutAnchor();
  465. GE_CHECK_NOTNULL(peer_out_anchor);
  466. auto peer_node = peer_out_anchor->GetOwnerNode();
  467. GE_CHECK_NOTNULL(peer_node);
  468. if (isVariableMemoryNode(peer_node)) {
  469. GELOGW("Peer node to update is %s, skip it. Node name:%s.",
  470. peer_node->GetType().c_str(), peer_node->GetName().c_str());
  471. continue;
  472. }
  473. auto peer_op_desc = peer_node->GetOpDesc();
  474. GE_CHECK_NOTNULL(peer_op_desc);
  475. vector<int64_t> peer_output_list = peer_op_desc->GetOutputOffset();
  476. if ((peer_out_anchor->GetIdx() >= static_cast<int>(peer_output_list.size()))
  477. || (out2in.first >= static_cast<int32_t>(output_list.size()))) {
  478. GELOGW("out of range, peer_out_anchor:%d, peer_output_list size:%zu, out2in:%d, output_list size:%zu",
  479. peer_out_anchor->GetIdx(),
  480. peer_output_list.size(),
  481. out2in.first,
  482. output_list.size());
  483. continue;
  484. }
  485. peer_output_list.at(peer_out_anchor->GetIdx()) = output_list.at(out2in.first);
  486. peer_op_desc->SetOutputOffset(peer_output_list);
  487. GELOGD("UpdateRefOpOffsetReverse: Node[%s] output[%d] is set from node[%s] output index[%d] offset[%ld]",
  488. peer_node->GetName().c_str(),
  489. peer_out_anchor->GetIdx(),
  490. node->GetName().c_str(),
  491. out2in.first,
  492. output_list.at(out2in.first));
  493. }
  494. return SUCCESS;
  495. }
  496. Status GraphMemoryAssigner::ReAssignContinuousMemory(bool is_loop_graph) {
  497. // Stored nodes which need assign continuous input memory in `reverse topo order`
  498. std::vector<NodePtr> nodes_stack;
  499. std::map<NodePtr, uint32_t> node_2_continuous_type;
  500. // Traverse nodes
  501. for (auto &node : compute_graph_->GetAllNodes()) {
  502. GE_CHECK_NOTNULL(node);
  503. uint32_t continuous_type;
  504. auto iter = node_2_continuous_type.find(node);
  505. if (iter == node_2_continuous_type.end()) {
  506. continuous_type = GetContinuousMemoryType(node->GetOpDesc());
  507. node_2_continuous_type.emplace(node, continuous_type);
  508. } else {
  509. continuous_type = iter->second;
  510. }
  511. // Assign continuous input memory
  512. bool continuous_input = ((continuous_type & kTypeInput) != 0) || ((continuous_type & kTypeInputNoPadding) != 0);
  513. if (IsRefFromInputOpCascade(node)) {
  514. nodes_stack.push_back(node);
  515. GELOGD("Ref: Push node:%s to stack", node->GetName().c_str());
  516. } else if (continuous_input) {
  517. if (AssignContinuousInputMemoryWithAtomicProcessDirectly(node, node_2_continuous_type)) {
  518. GE_CHK_STATUS_RET(AssignContinuousInputMemoryWithAtomicProcess(node, continuous_type),
  519. "[Assign][Memory:Continuous:Input]fail for node:%s", node->GetName().c_str())
  520. } else {
  521. nodes_stack.push_back(node);
  522. GELOGD("Continuous: Push node:%s to stack", node->GetName().c_str());
  523. }
  524. }
  525. // Assign continuous output memory
  526. int64_t memory_type = RT_MEMORY_HBM;
  527. bool continuous_output = ((continuous_type & kTypeOutput) != 0) || ((continuous_type & kTypeOutputNoPadding) != 0);
  528. if (continuous_output) {
  529. GE_CHK_STATUS_RET(GetNodeMemoryType(node, memory_type, "output"),
  530. "[Get][MemType]fail for node:%s", node->GetName().c_str());
  531. GE_CHK_STATUS_RET(AssignContinuousOutputMemory(node, memory_type, continuous_type),
  532. "[Assign][Memory:Continuous:Output]fail for node:%s", node->GetName().c_str());
  533. }
  534. }
  535. // Assign continuous input memory in `reverse topo order` which stored before
  536. while (!nodes_stack.empty()){
  537. auto node = nodes_stack.back();
  538. nodes_stack.pop_back();
  539. auto iter = node_2_continuous_type.find(node);
  540. if (iter == node_2_continuous_type.end()) {
  541. REPORT_INNER_ERROR("E19999", "Get ContinuousType from node_2_continuous_type map failed for node:%s",
  542. node->GetName().c_str());
  543. GELOGE(FAILED, "[Get][ContinuousType] find fail for node:%s", node->GetName().c_str());
  544. return FAILED;
  545. }
  546. if (((iter->second & kTypeInput) != 0) || ((iter->second & kTypeInputNoPadding) != 0)) {
  547. GE_CHK_STATUS_RET(AssignContinuousInputMemoryWithAtomicProcess(node, iter->second, true),
  548. "[Assign][Memory:Continuous:Input]fail for node:%s.", node->GetName().c_str())
  549. } else {
  550. GE_CHK_STATUS_RET(UpdateRefOpOffsetReverse(node),
  551. "[Update][Memory:Reference:Output]fail for node:%s", node->GetName().c_str())
  552. }
  553. }
  554. for (auto pair : memory_offset_) {
  555. GELOGD("[Reassign][Memory:Continuous]At last, memory type = %ld, mem offset = %zu", pair.first,
  556. pair.second.mem_offset_);
  557. }
  558. return ge::SUCCESS;
  559. }
  560. Status GraphMemoryAssigner::SetMemOffset(const ge::NodePtr &node, InDataAnchorPtr in_data_anchor, bool reverse_refresh,
  561. int64_t &mem_offset, int64_t &continuous_mem_start) {
  562. auto op_desc = node->GetOpDesc();
  563. GE_CHECK_NOTNULL(op_desc);
  564. vector<int64_t> output_list_this = op_desc->GetOutputOffset();
  565. if (output_list_this.empty()) {
  566. REPORT_INNER_ERROR("E19999", "No output offset in node :%s, not expected",
  567. node->GetName().c_str());
  568. GELOGE(FAILED, "[Get][OutputOffset] empty is invalid, node:%s", node->GetName().c_str());
  569. return FAILED;
  570. }
  571. auto peer_out_data_anchor = in_data_anchor->GetPeerOutAnchor();
  572. auto peer_op_desc = peer_out_data_anchor->GetOwnerNode()->GetOpDesc();
  573. vector<int64_t> output_list = peer_op_desc->GetOutputOffset();
  574. if (peer_out_data_anchor->GetIdx() >= static_cast<int>(output_list.size())) {
  575. std::string error = "peer node:" + FmtToStr(peer_op_desc->GetName()) +
  576. " anchor_index:" + FmtToStr(peer_out_data_anchor->GetIdx()) +
  577. " is out of range:" + FmtToStr(output_list.size());
  578. GE_ERRORLOG_AND_ERRORMSG(FAILED, error.c_str());
  579. return FAILED;
  580. }
  581. // when continuous input has been allocated first input is beginning offset
  582. bool is_continuous_input_allocated = false;
  583. (void) ge::AttrUtils::GetBool(op_desc, ATTR_NAME_CONTINUOUS_INPUT_ALLOC, is_continuous_input_allocated);
  584. bool is_allocated_first_input = is_continuous_input_allocated && (in_data_anchor->GetIdx() == 0);
  585. if (is_allocated_first_input) {
  586. std::map<int32_t, int32_t> out2ins;
  587. GE_CHK_STATUS_RET(TryGetNodeRefIndexes(node, out2ins), "[Get][RefIndexes]fail for node: %s",
  588. node->GetName().c_str());
  589. // output is beginning offset, set offset for input; only support this case now
  590. if ((out2ins.size() == 1) && (out2ins.begin()->second == 0) && (reverse_refresh)) {
  591. auto peer_output_offset = output_list.at(peer_out_data_anchor->GetIdx());
  592. output_list.at(peer_out_data_anchor->GetIdx()) = output_list_this.at(out2ins.begin()->first);
  593. peer_op_desc->SetOutputOffset(output_list);
  594. GELOGI("[Update][Offset]Node %s out %d ref in %d input node %s, use output offset %ld update %ld",
  595. node->GetName().c_str(), out2ins.begin()->first, out2ins.begin()->second,
  596. peer_op_desc->GetName().c_str(), output_list_this.at(out2ins.begin()->first), peer_output_offset);
  597. } else {
  598. GELOGD("Node %s out %d ref in %d input node %s with total ref numbers %zu.", node->GetName().c_str(),
  599. out2ins.begin()->first, out2ins.begin()->second, peer_op_desc->GetName().c_str(), out2ins.size());
  600. }
  601. // first input is beginning offset
  602. mem_offset = output_list.at(peer_out_data_anchor->GetIdx());
  603. continuous_mem_start = output_list.at(peer_out_data_anchor->GetIdx());
  604. } else {
  605. // set offset for input
  606. output_list.at(peer_out_data_anchor->GetIdx()) = mem_offset;
  607. peer_op_desc->SetOutputOffset(output_list);
  608. }
  609. return SUCCESS;
  610. }
  611. Status GraphMemoryAssigner::AssignContinuousInputMemory(const ge::NodePtr &node, int64_t &continuous_mem_start,
  612. int64_t &continuous_mem_size, int64_t memory_type, uint32_t continuous_type, bool reverse_refresh) {
  613. GELOGI("[Assign][Memory:Input:Continuous]start for Current node %s", node->GetName().c_str());
  614. auto iter = memory_offset_.find(memory_type);
  615. if (iter == memory_offset_.end()) {
  616. REPORT_INNER_ERROR("E19999", "find memory offset fail for mem_type:%ld, "
  617. "for node:%s, ", memory_type, node->GetName().c_str());
  618. GELOGE(FAILED, "[Find][MemOffset]fail for mem_type:%ld, when AssignContinuousInputMemory for node:%s",
  619. memory_type, node->GetName().c_str());
  620. return FAILED;
  621. }
  622. // The head and tail of hcom continuous input should be added 512
  623. iter->second.mem_offset_ += MEM_ALIGN_SIZE;
  624. continuous_mem_start = iter->second.mem_offset_;
  625. int64_t mem_offset = iter->second.mem_offset_;
  626. int64_t extra_memory_size = 0;
  627. bool is_continuous_input_allocated = false;
  628. auto op_desc = node->GetOpDesc();
  629. GE_CHECK_NOTNULL(op_desc);
  630. (void) ge::AttrUtils::GetBool(op_desc, ATTR_NAME_CONTINUOUS_INPUT_ALLOC, is_continuous_input_allocated);
  631. for (auto &in_data_anchor : node->GetAllInDataAnchors()) {
  632. GE_IF_BOOL_EXEC(in_data_anchor == nullptr, continue);
  633. auto peer_out_data_anchor = in_data_anchor->GetPeerOutAnchor();
  634. GE_IF_BOOL_EXEC(peer_out_data_anchor == nullptr, continue);
  635. auto peer_op_desc = peer_out_data_anchor->GetOwnerNode()->GetOpDesc();
  636. GE_IF_BOOL_EXEC(peer_op_desc == nullptr, continue);
  637. GE_IF_BOOL_EXEC(IsContinuousInputConflict(node, peer_op_desc), return PARAM_INVALID;);
  638. int64_t tensor_desc_size = 0;
  639. int64_t nopadding_size = 0;
  640. int64_t real_size = 0;
  641. std::vector<int64_t> offsets_of_fusion = {};
  642. bool lx_fusion = AttrUtils::GetListInt(peer_op_desc, ATTR_NAME_OUTPUT_OFFSET_FOR_BUFFER_FUSION, offsets_of_fusion);
  643. lx_fusion = lx_fusion && !offsets_of_fusion.empty();
  644. if (lx_fusion) {
  645. if (peer_out_data_anchor->GetIdx() >= static_cast<int>(offsets_of_fusion.size())) {
  646. std::string error = "fusion: peer node:" + FmtToStr(peer_op_desc->GetName()) +
  647. " anchor_index:" + FmtToStr(peer_out_data_anchor->GetIdx()) +
  648. " is out of range:" + FmtToStr(offsets_of_fusion.size());
  649. GE_ERRORLOG_AND_ERRORMSG(FAILED, error.c_str());
  650. return FAILED;
  651. }
  652. nopadding_size = offsets_of_fusion[peer_out_data_anchor->GetIdx()];
  653. tensor_desc_size = nopadding_size;
  654. } else {
  655. if (GetMemorySize(node->GetOpDesc(), peer_op_desc->GetOutputDescPtr(peer_out_data_anchor->GetIdx()),
  656. continuous_type, tensor_desc_size, nopadding_size) != ge::SUCCESS) {
  657. return FAILED;
  658. }
  659. }
  660. if (SetMemOffset(node, in_data_anchor, reverse_refresh, mem_offset, continuous_mem_start) != ge::SUCCESS) {
  661. return FAILED;
  662. }
  663. int64_t align_size = tensor_desc_size;
  664. bool is_nopadding = ((continuous_type & kTypeInputNoPadding) != 0) || lx_fusion;
  665. if (is_nopadding) {
  666. mem_offset += nopadding_size;
  667. extra_memory_size += (tensor_desc_size - nopadding_size);
  668. real_size = nopadding_size;
  669. } else {
  670. ge::AlignMemOffset(align_size);
  671. mem_offset += align_size;
  672. // The head and tail of hcom continuous input should be added 512
  673. extra_memory_size = MEM_ALIGN_SIZE;
  674. real_size = tensor_desc_size;
  675. }
  676. vector<int64_t> output_list = peer_op_desc->GetOutputOffset();
  677. GELOGI("[IMAS]Continuous input : Set %s name[%s] optype[%s] output[%d] offset to [%zu] stream_id[%ld] memtype[%ld] "
  678. "size[%zu] realsize[%ld] nopadding size[%d]", node->GetOwnerComputeGraph()->GetName().c_str(),
  679. peer_op_desc->GetName().c_str(), node->GetType().c_str(), peer_out_data_anchor->GetIdx(),
  680. output_list.at(peer_out_data_anchor->GetIdx()), peer_op_desc->GetStreamId(), memory_type,
  681. is_continuous_input_allocated ? 0UL : align_size, real_size, is_nopadding);
  682. }
  683. mem_offset += extra_memory_size;
  684. ge::AlignMemOffset(mem_offset);
  685. continuous_mem_size = mem_offset - continuous_mem_start;
  686. if (is_continuous_input_allocated) {
  687. // not allocate memory here, so no need add 512 in header
  688. iter->second.mem_offset_ -= MEM_ALIGN_SIZE;
  689. } else {
  690. iter->second.mem_offset_ = mem_offset;
  691. }
  692. return SUCCESS;
  693. }
  694. Status GetFirstInputPeerOutOutputOffset(const ge::NodePtr &node, int64_t &mem_offset) {
  695. auto in_data_anchor_list = node->GetAllInDataAnchors();
  696. if (in_data_anchor_list.empty()) {
  697. REPORT_INNER_ERROR("E19999", "InAnchor list empty in node:%s, not expect",
  698. node->GetName().c_str());
  699. GELOGE(FAILED, "[Get][InAnchor]empty is invalid, node:%s", node->GetName().c_str());
  700. return FAILED;
  701. }
  702. auto peer_out_data_anchor = in_data_anchor_list.at(0)->GetPeerOutAnchor();
  703. GE_IF_BOOL_EXEC(peer_out_data_anchor == nullptr,
  704. REPORT_INNER_ERROR("E19999", "PeerAcnhor is null, not expect for node:%s",
  705. node->GetName().c_str());
  706. GELOGE(ge::FAILED, "[Check][PeerAnchor]null is invalid, node:%s", node->GetName().c_str());
  707. return ge::FAILED);
  708. auto peer_op_desc = peer_out_data_anchor->GetOwnerNode()->GetOpDesc();
  709. GE_IF_BOOL_EXEC(peer_op_desc == nullptr,
  710. REPORT_INNER_ERROR("E19999", "PeerOpDesc is null, not expect for node:%s",
  711. node->GetName().c_str());
  712. GELOGE(ge::FAILED, "[Check][PeerOpDesc]null is invalid, node:%s", node->GetName().c_str());
  713. return ge::FAILED);
  714. vector<int64_t> in_node_output_offsets = peer_op_desc->GetOutputOffset();
  715. if (peer_out_data_anchor->GetIdx() >= static_cast<int>(in_node_output_offsets.size())) {
  716. REPORT_INNER_ERROR("E19999", "PeerAnchorIndex:%d bigger than in_offset size:%lu, judge invalid for node:%s",
  717. peer_out_data_anchor->GetIdx(), in_node_output_offsets.size(), node->GetName().c_str());
  718. GELOGE(FAILED, "[Check][Index:PeerOutDataAnchor]PeerIndex:%d bigger than in_offset size:%lu, node:%s",
  719. peer_out_data_anchor->GetIdx(), in_node_output_offsets.size(), node->GetName().c_str());
  720. return FAILED;
  721. }
  722. mem_offset = in_node_output_offsets.at(peer_out_data_anchor->GetIdx());
  723. return SUCCESS;
  724. }
  725. Status GraphMemoryAssigner::AssignContinuousOutputMemory(const ge::NodePtr &node, int64_t memory_type,
  726. uint32_t continuous_type) {
  727. GELOGI("Current node %s needs continuous output.", node->GetName().c_str());
  728. auto out_op_desc = node->GetOpDesc();
  729. GE_IF_BOOL_EXEC(out_op_desc == nullptr,
  730. REPORT_INNER_ERROR("E19999", "OpDesc is null, not expect for node:%s",
  731. node->GetName().c_str());
  732. GELOGE(ge::FAILED, "[Check][OpDesc]null is invalid, node:%s", node->GetName().c_str()));
  733. vector<int64_t> output_list = out_op_desc->GetOutputOffset();
  734. if ((out_op_desc->GetOutputsSize() > output_list.size()) || (output_list.size() == 0)) {
  735. REPORT_INNER_ERROR("E19999", "Output size:%zu more than output offset size:%zu, invalid in node:%s",
  736. out_op_desc->GetOutputsSize(), output_list.size(), node->GetName().c_str());
  737. GELOGE(ge::FAILED, "[Check][InnerData]Output size:%zu more than output offset size:%zu, invalid in node:%s",
  738. out_op_desc->GetOutputsSize(), output_list.size(), node->GetName().c_str());
  739. return ge::FAILED;
  740. }
  741. int64_t mem_offset = 0;
  742. bool is_nopadding = ((continuous_type & kTypeOutputNoPadding) != 0);
  743. if (is_nopadding) {
  744. // out tensor memory must be reused input tensor memory
  745. if (GetFirstInputPeerOutOutputOffset(node, mem_offset) != SUCCESS) {
  746. return ge::FAILED;
  747. }
  748. } else {
  749. // Get the reference type of the node, default is false
  750. bool is_ref = false;
  751. // If GetBool fail, is_ref is false.
  752. (void) ge::AttrUtils::GetBool(node->GetOpDesc(), ATTR_NAME_REFERENCE, is_ref);
  753. // If the output is ref type and refers to the ref of an input, the name of the output
  754. // and the input are the same. Ge encounters ref type, finds matching relationship according
  755. // to the names of input and output, and allocates the same memory address, eg: HCOMBroadcast
  756. if (is_ref) {
  757. GELOGI("Current node %s no needs assign continuous output because reference input by name.",
  758. node->GetName().c_str());
  759. return SUCCESS;
  760. }
  761. mem_offset = output_list[0];
  762. }
  763. for (auto &out_data_anchor : node->GetAllOutDataAnchors()) {
  764. output_list[out_data_anchor->GetIdx()] = mem_offset;
  765. int64_t tensor_desc_size = 0;
  766. int64_t nopadding_size = 0;
  767. if (GetMemorySize(out_op_desc, out_op_desc->GetOutputDescPtr(out_data_anchor->GetIdx()), continuous_type,
  768. tensor_desc_size, nopadding_size) != ge::SUCCESS) {
  769. return FAILED;
  770. }
  771. if (is_nopadding) {
  772. mem_offset += nopadding_size;
  773. } else {
  774. mem_offset += tensor_desc_size;
  775. ge::AlignMemOffset(mem_offset);
  776. }
  777. GELOGI("[IMAS]Continuous output : Set %s name[%s] optype[%s] output[%d] offset to [%zu] stream_id[%ld] memtype[%ld]"
  778. " size[%zu] realsize[%ld] nopadding[%d].", node->GetOwnerComputeGraph()->GetName().c_str(),
  779. out_op_desc->GetName().c_str(), node->GetType().c_str(), out_data_anchor->GetIdx(),
  780. output_list[out_data_anchor->GetIdx()], out_op_desc->GetStreamId(), memory_type, 0UL,
  781. is_nopadding ? nopadding_size : tensor_desc_size, is_nopadding);
  782. }
  783. out_op_desc->SetOutputOffset(output_list);
  784. return ge::SUCCESS;
  785. }
  786. Status GraphMemoryAssigner::ReAssignAtomicMemory(bool is_loop_graph) {
  787. // key:dynamic batch, batch name
  788. map<string, map<NodePtr, vector<NodePtr>>> normal_atomic_and_clean_nodes_map;
  789. map<string, vector<NodePtr>> connecting_output_atomic_nodes;
  790. Status status = FilterAtomicNodesForMemoryAssign(normal_atomic_and_clean_nodes_map, connecting_output_atomic_nodes);
  791. if (status != SUCCESS) {
  792. GELOGE(status, "[Filter][AtomicNode]failed in graph_id:%u, graph_name:%s",
  793. compute_graph_->GetGraphID(), compute_graph_->GetName().c_str());
  794. return status;
  795. }
  796. auto mem_iter = memory_offset_.find(RT_MEMORY_HBM);
  797. if (mem_iter == memory_offset_.end()) {
  798. REPORT_INNER_ERROR("E19999", "InnerData memory_offset_ does not have type[HBM], not expected, "
  799. "graph_id:%u, graph_name:%s", compute_graph_->GetGraphID(), compute_graph_->GetName().c_str());
  800. GELOGE(FAILED, "[Check][InnerData]memory_offset_ does not have memory type[HBM]"
  801. "graph_id:%u, graph_name:%s", compute_graph_->GetGraphID(), compute_graph_->GetName().c_str());
  802. return FAILED;
  803. }
  804. int64_t batch_atomic_mem_start = static_cast<int64_t>(mem_iter->second.mem_offset_);
  805. int64_t batch_max_mem_offset = batch_atomic_mem_start;
  806. for (auto &iter_batch : normal_atomic_and_clean_nodes_map) {
  807. mem_iter->second.mem_offset_ = batch_atomic_mem_start;
  808. for (auto &iter : iter_batch.second) {
  809. int64_t atomic_mem_start = static_cast<int64_t>(mem_iter->second.mem_offset_);
  810. GELOGD("Begin to reAssign atomic memory, atomic address memory start = %ld", atomic_mem_start);
  811. for (auto &atomic_node : iter.second) {
  812. vector<int64_t> mem_offset_end;
  813. status = AssignAtomicOutputAndWorkspaceMemory(atomic_node, mem_offset_end);
  814. if (status != SUCCESS) {
  815. GELOGE(status, "[Assign][Memory]output atomic mem and workspace mem, fail for node name is %s.",
  816. atomic_node->GetName().c_str());
  817. return status;
  818. }
  819. }
  820. int64_t atomic_mem_size = static_cast<int64_t>(mem_iter->second.mem_offset_) - atomic_mem_start;
  821. if (atomic_mem_size != 0) {
  822. GE_CHK_STATUS_RET(SetAtomicCleanAttr(iter.first, {atomic_mem_start}, {atomic_mem_size}, RT_MEMORY_HBM),
  823. "[Set][Attr]fail for atomic addr clean node %s.", iter.first->GetName().c_str());
  824. }
  825. }
  826. batch_max_mem_offset = std::max(batch_max_mem_offset, static_cast<int64_t>(mem_iter->second.mem_offset_));
  827. }
  828. mem_iter->second.mem_offset_ = static_cast<size_t>(batch_max_mem_offset);
  829. batch_atomic_mem_start = batch_max_mem_offset;
  830. for (auto &iter_batch : connecting_output_atomic_nodes) {
  831. mem_iter->second.mem_offset_ = batch_atomic_mem_start;
  832. if (AssignConnectNetOutputAtomicMemory(iter_batch.second) != SUCCESS) {
  833. GELOGE(FAILED, "[Assign][Memory]for nodes that connect to netoutput failed."
  834. "graph_id:%u, graph_name:%s", compute_graph_->GetGraphID(), compute_graph_->GetName().c_str());
  835. return FAILED;
  836. }
  837. batch_max_mem_offset = std::max(batch_max_mem_offset, static_cast<int64_t>(mem_iter->second.mem_offset_));
  838. }
  839. mem_iter->second.mem_offset_ = static_cast<size_t>(batch_max_mem_offset);
  840. return SUCCESS;
  841. }
  842. Status GraphMemoryAssigner::FilterAtomicNodesForMemoryAssign(
  843. map<string, map<NodePtr, vector<NodePtr>>> &normal_atomic_nodes_map,
  844. map<string, vector<NodePtr>> &connecting_output_atomic_nodes) {
  845. GE_CHECK_NOTNULL(compute_graph_);
  846. for (const auto &node : compute_graph_->GetAllNodes()) {
  847. if (node->GetType() == ATOMICADDRCLEAN) {
  848. map<string, vector<NodePtr>> tmp_normal_atomic_nodes;
  849. const auto &out_control_anchor = node->GetOutControlAnchor();
  850. GE_CHECK_NOTNULL(out_control_anchor);
  851. for (const auto &peer_in_control_anchor : out_control_anchor->GetPeerInControlAnchors()) {
  852. if (peer_in_control_anchor != nullptr) {
  853. auto peer_in_node = peer_in_control_anchor->GetOwnerNode();
  854. auto peer_in_node_desc = peer_in_node->GetOpDesc();
  855. if (peer_in_node_desc != nullptr) {
  856. bool is_atomic_node = false;
  857. // If GetBool fail, is_atomic_node is false.
  858. (void) ge::AttrUtils::GetBool(peer_in_node_desc, ATOMIC_ATTR_IS_ATOMIC_NODE, is_atomic_node);
  859. if (is_atomic_node) {
  860. bool is_reference = false;
  861. // If GetBool fail, is_reference is false.
  862. (void) ge::AttrUtils::GetBool(peer_in_node_desc, ATTR_NAME_REFERENCE, is_reference);
  863. if (is_reference) {
  864. REPORT_INNER_ERROR("E19999", "Op:%s cannot have both atomic and is_reference attribute, "
  865. "not support now", peer_in_node_desc->GetName().c_str());
  866. GELOGE(FAILED, "[Check][Attr]Op:%s cannot have both atomic and is_reference attribute, "
  867. "not support now", peer_in_node_desc->GetName().c_str());
  868. return ge::PARAM_INVALID;
  869. }
  870. std::string batch_label;
  871. (void)ge::AttrUtils::GetStr(peer_in_node_desc, ATTR_NAME_BATCH_LABEL, batch_label);
  872. vector<int> is_connecting_output;
  873. // If GetBool fail, attr is_connecting_output is an empty vector.
  874. (void) ge::AttrUtils::GetListInt(peer_in_node_desc, ATTR_NAME_NODE_CONNECT_OUTPUT, is_connecting_output);
  875. if (is_connecting_output.empty()) {
  876. tmp_normal_atomic_nodes[batch_label].emplace_back(peer_in_node);
  877. continue;
  878. }
  879. connecting_output_atomic_nodes[batch_label].emplace_back(peer_in_node);
  880. tmp_normal_atomic_nodes[batch_label].clear();
  881. break;
  882. }
  883. }
  884. }
  885. }
  886. for (auto &it_atomic_node : tmp_normal_atomic_nodes) {
  887. if (!it_atomic_node.second.empty()) {
  888. normal_atomic_nodes_map[it_atomic_node.first][node] = it_atomic_node.second;
  889. }
  890. }
  891. }
  892. }
  893. return SUCCESS;
  894. }
  895. Status GraphMemoryAssigner::AssignAtomicOutputAndWorkspaceMemory(const ge::NodePtr &node,
  896. vector<int64_t> &mem_offset_end) {
  897. auto node_op_desc = node->GetOpDesc();
  898. // Assign atomic node output memory
  899. Status ret = AssignAtomicOutputMemory(node, mem_offset_end);
  900. if (ret != SUCCESS) {
  901. GELOGE(ret, "[Assign][Memory:Ouput:Atomic]Failed for node:%s.", node_op_desc->GetName().c_str());
  902. return ret;
  903. }
  904. // Check and assign atomic node workspace memory
  905. map<string, map<int64_t, int64_t>> atomic_workspace_info;
  906. atomic_workspace_info = node_op_desc->TryGetExtAttr(EXT_ATTR_ATOMIC_WORKSPACE_INFO, atomic_workspace_info);
  907. if (!atomic_workspace_info.empty()) {
  908. bool is_fusion_node = false;
  909. // If GetBool fail, is_fusion_node is false.
  910. (void) ge::AttrUtils::GetBool(node_op_desc, ATOMIC_ATTR_IS_FUSION_NODE, is_fusion_node);
  911. if (is_fusion_node) {
  912. // Assign fusion atomic node workspace memory
  913. ret = AssignFusionAtomicWorkspaceMemory(node_op_desc, atomic_workspace_info, mem_offset_end);
  914. } else {
  915. // Assign single ordinary atomic node workspace memory, not include fusion node
  916. ret = AssignOrdinaryAtomicWorkspaceMemory(node_op_desc, atomic_workspace_info, mem_offset_end);
  917. }
  918. if (ret != SUCCESS) {
  919. GELOGE(ret, "[Assign][Memory:Atomic:Workspace]fail for node:%s.", node_op_desc->GetName().c_str());
  920. return ret;
  921. }
  922. } else {
  923. GELOGW("Current atomic node %s does not have attr ATOMIC_WORKSPACE_INFO.", node->GetName().c_str());
  924. }
  925. return SUCCESS;
  926. }
  927. Status GraphMemoryAssigner::AssignConnectNetOutputAtomicMemory(vector<NodePtr> &connect_netoutput_nodes) {
  928. auto iter = memory_offset_.find(RT_MEMORY_HBM);
  929. if (iter == memory_offset_.end()) {
  930. REPORT_INNER_ERROR("E19999", "InnerData memory_offset_ does not have type[HBM], not expected, "
  931. "graph_id:%u, graph_name:%s", compute_graph_->GetGraphID(), compute_graph_->GetName().c_str());
  932. GELOGE(FAILED, "[Check][InnerData]memory_offset_ does not have memory type[HBM]"
  933. "graph_id:%u, graph_name:%s", compute_graph_->GetGraphID(), compute_graph_->GetName().c_str());
  934. return FAILED;
  935. }
  936. for (auto &node : connect_netoutput_nodes) {
  937. GE_CHECK_NOTNULL(node);
  938. if (node->GetOpDesc() == nullptr) {
  939. GELOGW("Current node %s op desc is nullptr, memory assignment is skipped.", node->GetName().c_str());
  940. continue;
  941. }
  942. // Atomic memory start addr
  943. int64_t original_atomic_mem_start = static_cast<int64_t>(iter->second.mem_offset_);
  944. GELOGD("Start to assign memory of atomic node, node name: %s, node type: %s, mem_offset: %ld.",
  945. node->GetName().c_str(), node->GetOpDesc()->GetType().c_str(), original_atomic_mem_start);
  946. vector<int64_t> mem_offset_end;
  947. if (AssignAtomicOutputAndWorkspaceMemory(node, mem_offset_end) != SUCCESS) {
  948. GELOGE(FAILED, "[Assign][Memory]output atomic mem and workspace mem, fail for node name is %s.",
  949. node->GetName().c_str());
  950. return FAILED;
  951. }
  952. // All atomic nodes use atomic_addr_clean op independently, so we need to set the attr separately.
  953. if (SetIndependentAtomicAttr(node, original_atomic_mem_start, mem_offset_end, RT_MEMORY_HBM) != SUCCESS) {
  954. GELOGE(FAILED, "[Set][Attr:IndependentAtomic]fail for node:%s", node->GetName().c_str());
  955. return FAILED;
  956. }
  957. }
  958. return SUCCESS;
  959. }
  960. Status GraphMemoryAssigner::AssignReferenceMemory() {
  961. for (auto &node : compute_graph_->GetDirectNode()) {
  962. // Get the reference type of the node, default is false
  963. bool is_ref = false;
  964. // If GetBool fail, is_ref is false.
  965. (void) ge::AttrUtils::GetBool(node->GetOpDesc(), ATTR_NAME_REFERENCE, is_ref);
  966. if (!is_ref) {
  967. continue;
  968. }
  969. GELOGI("Current node %s needs to support the reference relationship between output and input.",
  970. node->GetName().c_str());
  971. auto out_op_desc = node->GetOpDesc();
  972. GE_IF_BOOL_EXEC(out_op_desc == nullptr,
  973. REPORT_INNER_ERROR("E19999", "out_op_desc is null.");
  974. GELOGE(ge::FAILED, "[Check][Param] out_op_desc is null."); return ge::FAILED);
  975. vector<int64_t> output_list = out_op_desc->GetOutputOffset();
  976. if (out_op_desc->GetOutputsSize() > output_list.size()) {
  977. REPORT_INNER_ERROR("E19999", "Output size:%zu more than output offset size:%zu, judge invalid in node:%s",
  978. out_op_desc->GetOutputsSize(), output_list.size(), node->GetName().c_str());
  979. GELOGE(ge::FAILED, "[Check][InnerData]Output size:%zu more than output offset size:%zu, invalid in node:%s",
  980. out_op_desc->GetOutputsSize(), output_list.size(), node->GetName().c_str());
  981. return ge::FAILED;
  982. }
  983. map<string, int> input_name_index;
  984. for (const auto &input_name : out_op_desc->GetAllInputNames()) {
  985. int index = out_op_desc->GetInputIndexByName(input_name);
  986. input_name_index.emplace(input_name, index);
  987. }
  988. for (auto &out_data_anchor : node->GetAllOutDataAnchors()) {
  989. string out_data_anchor_name = out_op_desc->GetOutputNameByIndex(out_data_anchor->GetIdx());
  990. auto iter = input_name_index.find(out_data_anchor_name);
  991. if (iter != input_name_index.end()) {
  992. int index = iter->second;
  993. GELOGI("Reference memory: input anchor index = %d, input anchor name = %s, output anchor name = %s.", index,
  994. iter->first.c_str(), out_data_anchor_name.c_str());
  995. GE_CHECK_NOTNULL(node->GetInDataAnchor(index));
  996. auto peer_out_anchor = node->GetInDataAnchor(index)->GetPeerOutAnchor();
  997. GE_IF_BOOL_EXEC(peer_out_anchor == nullptr, continue);
  998. int peer_out_anchor_index = peer_out_anchor->GetIdx();
  999. auto peer_out_node = peer_out_anchor->GetOwnerNode();
  1000. auto peer_out_op_desc = peer_out_node->GetOpDesc();
  1001. GE_CHECK_NOTNULL(peer_out_op_desc);
  1002. output_list[out_data_anchor->GetIdx()] = peer_out_op_desc->GetOutputOffset()[peer_out_anchor_index];
  1003. GELOGI("Reference output : Set %s name[%s] output[%d] offset to [%ld] stream_id[%ld]",
  1004. node->GetOwnerComputeGraph()->GetName().c_str(), peer_out_op_desc->GetName().c_str(),
  1005. out_data_anchor->GetIdx(), output_list[out_data_anchor->GetIdx()], peer_out_op_desc->GetStreamId());
  1006. } else {
  1007. GELOGI("Reference output : origin %s name[%s] output[%d] offset is [%ld] stream_id[%ld]",
  1008. node->GetOwnerComputeGraph()->GetName().c_str(), out_op_desc->GetName().c_str(),
  1009. out_data_anchor->GetIdx(), output_list[out_data_anchor->GetIdx()], out_op_desc->GetStreamId());
  1010. }
  1011. }
  1012. out_op_desc->SetOutputOffset(output_list);
  1013. }
  1014. return ge::SUCCESS;
  1015. }
  1016. bool GraphMemoryAssigner::CheckInputIsSupportAtomic(const ge::NodePtr &node) {
  1017. for (auto &in_data_anchor : node->GetAllInDataAnchors()) {
  1018. auto peer_out_data_anchor = in_data_anchor->GetPeerOutAnchor();
  1019. if (peer_out_data_anchor == nullptr) {
  1020. continue;
  1021. }
  1022. auto peer_op_desc = peer_out_data_anchor->GetOwnerNode()->GetOpDesc();
  1023. if (peer_op_desc == nullptr) {
  1024. continue;
  1025. }
  1026. if ((peer_op_desc->GetType() == CONSTANTOP) || (peer_op_desc->GetType() == AIPP_DATA_TYPE) ||
  1027. (peer_op_desc->GetType() == VARIABLE)) {
  1028. REPORT_INNER_ERROR("E19999", "node(type:%s, name:%s) link to atomic node(name:%s), "
  1029. "this situation not supported now",
  1030. peer_op_desc->GetType().c_str(), peer_op_desc->GetName().c_str(), node->GetName().c_str());
  1031. GELOGE(ge::FAILED, "[Check][Link]node(type:%s, name:%s) link to atomic node(name:%s), "
  1032. "this situation not supported now",
  1033. peer_op_desc->GetType().c_str(), peer_op_desc->GetName().c_str(), node->GetName().c_str());
  1034. return false;
  1035. }
  1036. }
  1037. return true;
  1038. }
  1039. Status GraphMemoryAssigner::AssignAtomicOutputMemory(const ge::NodePtr &node, vector<int64_t> &mem_offset_end) {
  1040. auto op_desc = node->GetOpDesc();
  1041. GE_IF_BOOL_EXEC(op_desc == nullptr, GELOGE(ge::FAILED, "op_desc is null."); return ge::FAILED);
  1042. mem_offset_end.clear();
  1043. GELOGD("Begin to assign atomic output memory, node = %s.", op_desc->GetName().c_str());
  1044. vector<int64_t> atomic_output_index;
  1045. // If GetListInt fail, atomic_output_index is empty.
  1046. (void) ge::AttrUtils::GetListInt(op_desc, ATOMIC_ATTR_OUTPUT_INDEX, atomic_output_index);
  1047. // Check atomic output
  1048. vector<int64_t> output_list = op_desc->GetOutputOffset();
  1049. if (atomic_output_index.size() > output_list.size()) {
  1050. std::string error =
  1051. "Op:" + FmtToStr(node->GetName()) + "'s size:" + FmtToStr(atomic_output_index.size()) +
  1052. " of atomic_output_index is more than the size:" + FmtToStr(output_list.size()) + " of output_list";
  1053. GE_ERRORLOG_AND_ERRORMSG(FAILED, error.c_str());
  1054. return ge::FAILED;
  1055. }
  1056. auto output_list_size = static_cast<int64_t>(output_list.size());
  1057. auto iter = memory_offset_.find(RT_MEMORY_HBM);
  1058. if (iter == memory_offset_.end()) {
  1059. REPORT_INNER_ERROR("E19999", "InnerData memory_offset_ does not have type[HBM], not expected, "
  1060. "graph_id:%u, graph_name:%s", compute_graph_->GetGraphID(), compute_graph_->GetName().c_str());
  1061. GELOGE(FAILED, "[Check][InnerData]memory_offset_ does not have memory type[HBM]"
  1062. "graph_id:%u, graph_name:%s", compute_graph_->GetGraphID(), compute_graph_->GetName().c_str());
  1063. return FAILED;
  1064. }
  1065. for (auto &output_index : atomic_output_index) {
  1066. if (output_index >= output_list_size) {
  1067. std::string error =
  1068. "Op:" + FmtToStr(node->GetName()) + "'s atomic_output index:" + FmtToStr(output_index) +
  1069. " is more than the size:" + FmtToStr(output_list_size) + " of output_list.";
  1070. GE_ERRORLOG_AND_ERRORMSG(ge::PARAM_INVALID, error.c_str());
  1071. return ge::PARAM_INVALID;
  1072. }
  1073. // If the input of the cascade op needs to clear the atomic addr, there is no need to clear it separately here
  1074. bool is_assigned_mem = false;
  1075. if (GetMemoryAssignmentStatus(node, output_index, is_assigned_mem) != SUCCESS) {
  1076. GELOGE(ge::FAILED, "[Get][MemoryAssignmentStatus]fail for node %s, out_index:%ld",
  1077. node->GetName().c_str(), output_index);
  1078. return ge::FAILED;
  1079. }
  1080. // If you have already assigned an atomic address, skip it, and you don't need to reassign it.
  1081. if (is_assigned_mem) {
  1082. GELOGI(
  1083. "Node %s atomic output : we have assigned atomic memory as the input of next node in "
  1084. "ReAssignContinuousMemory function.",
  1085. op_desc->GetName().c_str());
  1086. continue;
  1087. }
  1088. auto output_desc = op_desc->GetAllOutputsDescPtr().at(output_index);
  1089. int64_t size = 0;
  1090. if (ge::TensorUtils::GetSize(*output_desc, size) != SUCCESS) {
  1091. GELOGI("Get size failed");
  1092. }
  1093. output_list[output_index] = iter->second.mem_offset_;
  1094. std::string batch_label;
  1095. (void)ge::AttrUtils::GetStr(op_desc, ATTR_NAME_BATCH_LABEL, batch_label);
  1096. GELOGI("[IMAS]Atomic output : Set %s name[%s] optype[%s] output[%ld] offset to [%zu] stream_id[%ld] memtype[%u] "
  1097. "size[%ld] real_size[%ld] batch[%s].", compute_graph_->GetName().c_str(), op_desc->GetName().c_str(),
  1098. node->GetType().c_str(), output_index, iter->second.mem_offset_, op_desc->GetStreamId(), RT_MEMORY_HBM,
  1099. size, size, batch_label.c_str());
  1100. iter->second.mem_offset_ += size;
  1101. AlignMemOffset(MEM_ALIGN_SIZE, RT_MEMORY_HBM);
  1102. mem_offset_end.emplace_back(iter->second.mem_offset_);
  1103. }
  1104. op_desc->SetOutputOffset(output_list);
  1105. return ge::SUCCESS;
  1106. }
  1107. Status GraphMemoryAssigner::GetMemoryAssignmentStatus(const ge::NodePtr &node, int64_t output_index,
  1108. bool &is_mem_assigned) {
  1109. if (static_cast<size_t>(output_index) >= node->GetAllOutDataAnchors().size()) {
  1110. std::string error =
  1111. "Op:" + FmtToStr(node->GetName()) + "'s output index:" + FmtToStr(output_index) +
  1112. " is more than the size:" + FmtToStr(node->GetAllOutDataAnchors().size()) + " of node's AllOutDataAnchors.";
  1113. GE_ERRORLOG_AND_ERRORMSG(ge::PARAM_INVALID, error.c_str());
  1114. return ge::PARAM_INVALID;
  1115. }
  1116. auto out_data_anchor = node->GetAllOutDataAnchors().at(output_index);
  1117. GE_CHECK_NOTNULL(out_data_anchor);
  1118. auto input_anchors = out_data_anchor->GetPeerInDataAnchors();
  1119. for (auto &input_anchor : input_anchors) {
  1120. auto output_node = input_anchor->GetOwnerNode();
  1121. /// Get input atomic attr of peer output op, if atomic_input_index[0] = -1, indicates that the atomic address
  1122. /// has been assigned
  1123. vector<int64_t> atomic_input_index;
  1124. (void) ge::AttrUtils::GetListInt(output_node->GetOpDesc(), ATOMIC_ATTR_INPUT_INDEX, atomic_input_index);
  1125. if (!atomic_input_index.empty() && (atomic_input_index[0] == kAllInputAddrIsAtomic)) {
  1126. is_mem_assigned = true;
  1127. break;
  1128. }
  1129. }
  1130. return SUCCESS;
  1131. }
  1132. Status GraphMemoryAssigner::AssignOrdinaryAtomicWorkspaceMemory(const ge::OpDescPtr &op_desc,
  1133. map<string, map<int64_t, int64_t>> &workspace_info,
  1134. vector<int64_t> &mem_offset_end) {
  1135. GELOGI("Begin to reassign normal atomic memory, node = %s.", op_desc->GetName().c_str());
  1136. auto mem_type_iter = memory_offset_.find(RT_MEMORY_HBM);
  1137. if (mem_type_iter == memory_offset_.end()) {
  1138. REPORT_INNER_ERROR("E19999", "InnerData memory_offset_ does not have type[HBM], not expected, "
  1139. "graph_id:%u, graph_name:%s", compute_graph_->GetGraphID(), compute_graph_->GetName().c_str());
  1140. GELOGE(FAILED, "[Check][InnerData]memory_offset_ does not have memory type[HBM]"
  1141. "graph_id:%u, graph_name:%s", compute_graph_->GetGraphID(), compute_graph_->GetName().c_str());
  1142. return FAILED;
  1143. }
  1144. vector<int64_t> workspace_vector = op_desc->GetWorkspace();
  1145. for (auto iter = workspace_info.begin(); iter != workspace_info.end(); ++iter) {
  1146. if (op_desc->GetName() != iter->first) {
  1147. std::string error = "The node name" + FmtToStr(op_desc->GetName()) +
  1148. " and the node name" + FmtToStr(iter->first) + " in workspace info are inconsistent.";
  1149. GE_ERRORLOG_AND_ERRORMSG(ge::PARAM_INVALID, error.c_str());
  1150. return ge::PARAM_INVALID;
  1151. }
  1152. if (iter->second.empty()) {
  1153. continue;
  1154. }
  1155. for (auto &info_iter : iter->second) {
  1156. auto workspace_index = static_cast<uint64_t>(info_iter.first);
  1157. auto workspace_size = info_iter.second;
  1158. if (workspace_index >= workspace_vector.size()) {
  1159. std::string error = "The workspace index:" + FmtToStr(workspace_index) +
  1160. " is more than the size:" + FmtToStr(workspace_vector.size()) + " of workspace vector in op:" +
  1161. op_desc->GetName().c_str();
  1162. GE_ERRORLOG_AND_ERRORMSG(ge::PARAM_INVALID, error.c_str());
  1163. return ge::PARAM_INVALID;
  1164. }
  1165. workspace_vector[workspace_index] = mem_type_iter->second.mem_offset_;
  1166. std::string batch_label;
  1167. (void)ge::AttrUtils::GetStr(op_desc, ATTR_NAME_BATCH_LABEL, batch_label);
  1168. GELOGI(
  1169. "[IMAS]Atomic ordinary workspace : Set %s name[%s] optype[%s] workspace[%lu] offset to [%zu] stream_id[%ld] "
  1170. "memtype[%u] size[%ld] real_size[%ld] batch[%s].",
  1171. compute_graph_->GetName().c_str(), op_desc->GetName().c_str(), op_desc->GetType().c_str(), workspace_index,
  1172. mem_type_iter->second.mem_offset_, op_desc->GetStreamId(), RT_MEMORY_HBM, workspace_size, workspace_size,
  1173. batch_label.c_str());
  1174. mem_type_iter->second.mem_offset_ += workspace_size;
  1175. AlignMemOffset(MEM_ALIGN_SIZE, RT_MEMORY_HBM);
  1176. mem_offset_end.emplace_back(mem_type_iter->second.mem_offset_);
  1177. }
  1178. }
  1179. op_desc->SetWorkspace(workspace_vector);
  1180. return SUCCESS;
  1181. }
  1182. Status GraphMemoryAssigner::AssignFusionAtomicWorkspaceMemory(const ge::OpDescPtr &op_desc,
  1183. map<string, map<int64_t, int64_t>> &workspace_info,
  1184. vector<int64_t> &mem_offset_end) {
  1185. GELOGI("Begin to reassign fusion atomic memory, node = %s.", op_desc->GetName().c_str());
  1186. auto mem_type_iter = memory_offset_.find(RT_MEMORY_HBM);
  1187. if (mem_type_iter == memory_offset_.end()) {
  1188. REPORT_INNER_ERROR("E19999", "InnerData memory_offset_ does not have type[HBM], not expected, "
  1189. "graph_id:%u, graph_name:%s", compute_graph_->GetGraphID(), compute_graph_->GetName().c_str());
  1190. GELOGE(FAILED, "[Check][InnerData]memory_offset_ does not have memory type[HBM]"
  1191. "graph_id:%u, graph_name:%s", compute_graph_->GetGraphID(), compute_graph_->GetName().c_str());
  1192. return FAILED;
  1193. }
  1194. map<string, map<int64_t, int64_t>> sub_node_workspace_offset;
  1195. for (auto &iter : workspace_info) {
  1196. if (iter.second.empty()) {
  1197. continue;
  1198. }
  1199. map<int64_t, int64_t> index_offset;
  1200. for (auto &info_iter : iter.second) {
  1201. auto workspace_index = static_cast<uint64_t>(info_iter.first);
  1202. auto workspace_size = info_iter.second;
  1203. size_t workspace_offset = mem_type_iter->second.mem_offset_;
  1204. std::string batch_label;
  1205. (void)ge::AttrUtils::GetStr(op_desc, ATTR_NAME_BATCH_LABEL, batch_label);
  1206. GELOGI(
  1207. "[IMAS]Atomic fusion workspace : Set %s name[%s] optype[%s] workspace[%lu] offset to [%zu] stream_id[%ld] "
  1208. "memtype[%u] ssize[%ld] real_size[%ld] batch[%s].", compute_graph_->GetName().c_str(),
  1209. op_desc->GetName().c_str(), op_desc->GetType().c_str(), workspace_index, mem_type_iter->second.mem_offset_,
  1210. op_desc->GetStreamId(), RT_MEMORY_HBM, workspace_size, workspace_size, batch_label.c_str());
  1211. mem_type_iter->second.mem_offset_ += workspace_size;
  1212. AlignMemOffset(MEM_ALIGN_SIZE, RT_MEMORY_HBM);
  1213. mem_offset_end.emplace_back(mem_type_iter->second.mem_offset_);
  1214. index_offset.insert(std::make_pair(workspace_index, workspace_offset));
  1215. }
  1216. sub_node_workspace_offset.insert(std::make_pair(iter.first, index_offset));
  1217. }
  1218. if (!(op_desc->SetExtAttr(EXT_ATTR_ATOMIC_WORKSPACE_OFFSET, sub_node_workspace_offset))) {
  1219. REPORT_INNER_ERROR("E19999", "Set Attr:%s fail for node:%s",
  1220. EXT_ATTR_ATOMIC_WORKSPACE_OFFSET.c_str(), op_desc->GetName().c_str());
  1221. GELOGE(FAILED, "[Set][Attr:%s]fail for node:%s.",
  1222. EXT_ATTR_ATOMIC_WORKSPACE_OFFSET.c_str(), op_desc->GetName().c_str());
  1223. return FAILED;
  1224. }
  1225. return SUCCESS;
  1226. }
  1227. Status GraphMemoryAssigner::CheckOffset() {
  1228. std::map<std::string, std::string> anchor_to_symbol;
  1229. std::map<std::string, std::list<NodeIndexIO>> symbol_to_anchors;
  1230. if (GraphUtils::GetRefMapping(compute_graph_, symbol_to_anchors, anchor_to_symbol) != GRAPH_SUCCESS) {
  1231. REPORT_CALL_ERROR("E19999", "Get ref-mapping for graph %s failed", compute_graph_->GetName().c_str());
  1232. GELOGE(FAILED, "[Get][RefMapping]fail for graph %s", compute_graph_->GetName().c_str());
  1233. return FAILED;
  1234. }
  1235. for (const ge::NodePtr &node : compute_graph_->GetAllNodes()) {
  1236. GE_CHECK_NOTNULL(node->GetOpDesc());
  1237. vector<int64_t> input_list = node->GetOpDesc()->GetInputOffset();
  1238. for (auto input : input_list) {
  1239. if (input == ge::kInvalidOffset) {
  1240. std::string error = "Invalid input offset" + FmtToStr(ge::kInvalidOffset) +
  1241. + " in node" + FmtToStr(node->GetName());
  1242. GE_ERRORLOG_AND_ERRORMSG(FAILED, error.c_str());
  1243. return FAILED;
  1244. }
  1245. }
  1246. bool need_update_output = false;
  1247. vector<int64_t> output_list = node->GetOpDesc()->GetOutputOffset();
  1248. for (uint32_t i = 0; i < output_list.size(); ++i) {
  1249. if (output_list[i] == ge::kInvalidOffset) {
  1250. std::string error = "Invalid output offset" + FmtToStr(ge::kInvalidOffset) +
  1251. + " in node" + FmtToStr(node->GetName());
  1252. GE_ERRORLOG_AND_ERRORMSG(FAILED, error.c_str());
  1253. return FAILED;
  1254. }
  1255. if (node->GetType() == IDENTITY || node->GetType() == READVARIABLEOP) {
  1256. auto symbol_offset = GetSymbolOutputOffset(anchor_to_symbol, symbol_to_anchors, node, i);
  1257. if (symbol_offset != ge::kInvalidOffset && output_list[i] != symbol_offset) {
  1258. output_list[i] = symbol_offset;
  1259. need_update_output = true;
  1260. }
  1261. }
  1262. }
  1263. if (need_update_output) {
  1264. node->GetOpDesc()->SetOutputOffset(output_list);
  1265. }
  1266. vector<int64_t> workspace_list = node->GetOpDesc()->GetWorkspace();
  1267. for (auto workspace : workspace_list) {
  1268. if (workspace == ge::kInvalidOffset) {
  1269. std::string error = "Invalid workspace" + FmtToStr(ge::kInvalidOffset) +
  1270. + " in node" + FmtToStr(node->GetName());
  1271. GE_ERRORLOG_AND_ERRORMSG(FAILED, error.c_str());
  1272. return FAILED;
  1273. }
  1274. }
  1275. // check reuse input and output
  1276. GE_CHK_STATUS_RET(CheckRefNodeOffset(node), "[Check][Offset]fail for node: %s", node->GetName().c_str());
  1277. }
  1278. return SUCCESS;
  1279. }
  1280. ge::Status GraphMemoryAssigner::CheckRefNodeOffset(const NodePtr &node) {
  1281. GE_CHECK_NOTNULL(node);
  1282. std::map<int32_t, int32_t> out2ins;
  1283. GE_CHK_STATUS_RET(TryGetNodeRefIndexes(node, out2ins), "[Get][RefIndexes]fail for node: %s", node->GetName().c_str());
  1284. auto opdesc = node->GetOpDesc();
  1285. GE_CHECK_NOTNULL(opdesc);
  1286. auto output_list = opdesc->GetOutputOffset();
  1287. auto input_list = opdesc->GetInputOffset();
  1288. for (const auto &out2in : out2ins) {
  1289. auto out_i = out2in.first;
  1290. if (static_cast<size_t>(out_i) >= output_list.size()) {
  1291. std::string error = "Node" + FmtToStr(opdesc->GetName()) + "output offset size" +
  1292. FmtToStr(output_list.size()) + "should bigger than ref out index" + FmtToStr(out_i);
  1293. GE_ERRORLOG_AND_ERRORMSG(ge::FAILED, error.c_str());
  1294. return ge::FAILED;
  1295. }
  1296. auto in_i = out2in.second;
  1297. if (static_cast<size_t>(in_i) >= input_list.size()) {
  1298. std::string error = "Node" + FmtToStr(opdesc->GetName()) + "input offset size" +
  1299. FmtToStr(input_list.size()) + "should bigger than ref input index" + FmtToStr(in_i);
  1300. GE_ERRORLOG_AND_ERRORMSG(ge::FAILED, error.c_str());
  1301. return ge::FAILED;
  1302. }
  1303. if (output_list[out_i] != input_list[in_i]) {
  1304. std::string error = "Node" + FmtToStr(opdesc->GetName()) + "input offset " + FmtToStr(input_list[in_i]) +
  1305. "should equal to output offset" + FmtToStr(output_list[out_i]) + "with ref in" +
  1306. FmtToStr(in_i) + "to output" + FmtToStr(out_i);
  1307. GE_ERRORLOG_AND_ERRORMSG(ge::FAILED, error.c_str());
  1308. return ge::FAILED;
  1309. }
  1310. }
  1311. return ge::SUCCESS;
  1312. }
  1313. ge::Status GraphMemoryAssigner::SetInputOffset() {
  1314. if (memory_offset_.empty()) {
  1315. REPORT_INNER_ERROR("E19999", "InnerData memory_offset_ empty, not expected, graph_id:%u, graph_name:%s",
  1316. compute_graph_->GetGraphID(), compute_graph_->GetName().c_str());
  1317. GELOGE(FAILED, "[Check][InnerData:memory_offset_]empty is not expected, "
  1318. "graph_id:%u, graph_name:%s", compute_graph_->GetGraphID(), compute_graph_->GetName().c_str());
  1319. }
  1320. for (auto pair : memory_offset_) {
  1321. if ((pair.first != RT_MEMORY_HBM) && (pair.second.mem_offset_ == 0)) {
  1322. continue;
  1323. }
  1324. GEEVENT("[IMAS]AfterAssignMemory : %s memoffset[%zu], memtype[%ld]", compute_graph_->GetName().c_str(),
  1325. pair.second.mem_offset_, pair.first);
  1326. }
  1327. for (const ge::NodePtr &node : compute_graph_->GetAllNodes()) {
  1328. if (UpdateOpInputOffset(node) != ge::SUCCESS) {
  1329. GELOGE(ge::FAILED, "[Update][Offset:Input]fail for op:%s", node->GetName().c_str());
  1330. return ge::FAILED;
  1331. }
  1332. }
  1333. return ge::SUCCESS;
  1334. }
  1335. NodePtr GraphMemoryAssigner::GetKnownInputNode(const NodePtr &node) const {
  1336. if (!node->GetOpDesc()->HasAttr(ATTR_NAME_PARENT_NODE_INDEX)) {
  1337. return node;
  1338. }
  1339. if (NodeUtils::IsDynamicShape(node)) {
  1340. return node;
  1341. }
  1342. return NodeUtils::GetParentInput(node);
  1343. }
  1344. ge::Status GraphMemoryAssigner::UpdateConstArgsOffset(const NodePtr &node, vector<int64_t> &input_list) const {
  1345. uint32_t parent_index = 0;
  1346. if (!AttrUtils::GetInt(node->GetOpDesc(), ATTR_NAME_PARENT_NODE_INDEX, parent_index)) {
  1347. return SUCCESS;
  1348. }
  1349. // Subgraph Data Node, check for constant input.
  1350. std::string op_type;
  1351. const auto &in_node = NodeUtils::GetParentInput(node);
  1352. if (NodeUtils::GetConstOpType(in_node, op_type)) {
  1353. input_list = in_node->GetOpDesc()->GetOutputOffset();
  1354. node->GetOpDesc()->SetOutputOffset(input_list); // Set Data output same as const output.
  1355. return SUCCESS; // Constant input.
  1356. }
  1357. // Memory allocated for dynamic shape subgraph Data.
  1358. if (NodeUtils::IsDynamicShape(node)) {
  1359. return SUCCESS;
  1360. }
  1361. const auto &owner = node->GetOwnerComputeGraph();
  1362. const auto &parent_desc = owner->GetParentNode()->GetOpDesc();
  1363. const auto parent_inputs = parent_desc->GetInputOffset();
  1364. if (parent_inputs.size() <= parent_index) {
  1365. std::string error = "Get Parent input offset failed, node is " + FmtToStr(node->GetName()) +
  1366. + ", input_size is " + FmtToStr(parent_inputs.size()) + ", parent index is " +
  1367. FmtToStr(parent_index);
  1368. GE_ERRORLOG_AND_ERRORMSG(FAILED, error.c_str());
  1369. return FAILED;
  1370. }
  1371. input_list = {parent_inputs[parent_index]};
  1372. node->GetOpDesc()->SetOutputOffset(input_list); // Set Data output same as parent input.
  1373. return SUCCESS;
  1374. }
  1375. ge::Status GraphMemoryAssigner::UpdateOpInputOffset(const NodePtr &node, vector<int64_t> &input_list) const {
  1376. vector<int64_t> origin_input_list;
  1377. vector<int64_t> memory_type;
  1378. auto tmp_op_desc = node->GetOpDesc();
  1379. origin_input_list = tmp_op_desc->GetInputOffset();
  1380. int64_t valid_input_index = 0;
  1381. bool has_mem_type_attr = ge::AttrUtils::GetListInt(tmp_op_desc, ATTR_NAME_INPUT_MEM_TYPE_LIST, memory_type);
  1382. std::map<int32_t, int32_t> out2ins;
  1383. GE_CHK_STATUS_RET(TryGetNodeRefIndexes(node, out2ins), "[Get][RefIndexes]fail for node: %s", node->GetName().c_str());
  1384. for (const auto &anchor : node->GetAllInDataAnchors()) {
  1385. vector<int64_t> output_list;
  1386. auto peer_out_anchor = anchor->GetPeerOutAnchor();
  1387. if (peer_out_anchor == nullptr) {
  1388. continue;
  1389. }
  1390. // If the current node not broadcast, the OutputOffset of the previous node is used to update the input_list
  1391. auto last_peer_out_node = peer_out_anchor->GetOwnerNode();
  1392. auto last_peer_out_op_desc = last_peer_out_node->GetOpDesc();
  1393. GE_CHECK_NOTNULL(last_peer_out_op_desc);
  1394. output_list = last_peer_out_op_desc->GetOutputOffset();
  1395. auto out_index = static_cast<unsigned long>(peer_out_anchor->GetIdx());
  1396. if (output_list.size() > static_cast<size_t>(out_index)) {
  1397. int64_t peer_out_inner_offset = 0;
  1398. if (ge::AttrUtils::GetInt(last_peer_out_op_desc->MutableOutputDesc(out_index), ATTR_NAME_INNER_OFFSET,
  1399. peer_out_inner_offset)) {
  1400. (void)ge::AttrUtils::SetInt(tmp_op_desc->MutableInputDesc(anchor->GetIdx()), ATTR_NAME_INNER_OFFSET,
  1401. peer_out_inner_offset);
  1402. }
  1403. bool is_l1_type = false;
  1404. int64_t input_offset = output_list.at(out_index);
  1405. if (has_mem_type_attr && !origin_input_list.empty()) {
  1406. auto input_size = tmp_op_desc->GetInputsSize();
  1407. auto ori_input_offset_list_size = origin_input_list.size();
  1408. auto mem_type_size = memory_type.size();
  1409. if ((input_size != mem_type_size) || (input_size != ori_input_offset_list_size)) {
  1410. std::string error = "Node" + FmtToStr(tmp_op_desc->GetName()) +
  1411. + " input_size" + FmtToStr(input_size) + " diff from memory_type_size" +
  1412. FmtToStr(mem_type_size) + " from ori_input_offset_list_size" +
  1413. FmtToStr(ori_input_offset_list_size);
  1414. GE_ERRORLOG_AND_ERRORMSG(ge::FAILED, error.c_str());
  1415. return ge::FAILED;
  1416. }
  1417. int64_t inner_offset = 0;
  1418. (void)ge::AttrUtils::GetInt(tmp_op_desc->MutableInputDesc(anchor->GetIdx()), ATTR_NAME_INNER_OFFSET,
  1419. inner_offset);
  1420. GELOGD("Node[%s] input[%d] has origin offset[%ld] origin_inner_offset[%ld]", tmp_op_desc->GetName().c_str(),
  1421. anchor->GetIdx(), origin_input_list[valid_input_index], inner_offset);
  1422. // L1 keep original input_offset
  1423. is_l1_type = (memory_type[valid_input_index] == RT_MEMORY_L1);
  1424. if (is_l1_type) {
  1425. input_offset = origin_input_list[valid_input_index];
  1426. } else {
  1427. // hbm input_offset = original input_offset + output_offset
  1428. if ((origin_input_list[valid_input_index] != 0) && (!tmp_op_desc->GetSubgraphInstanceNames().empty())) {
  1429. std::string error = "Node" + FmtToStr(tmp_op_desc->GetName()) +
  1430. +" has subgraphs which is conflict with has origin_input_list" +
  1431. FmtToStr(origin_input_list[valid_input_index]);
  1432. GE_ERRORLOG_AND_ERRORMSG(ge::FAILED, error.c_str());
  1433. return ge::FAILED;
  1434. }
  1435. input_offset = origin_input_list[valid_input_index] + output_list.at(out_index);
  1436. (void)ge::AttrUtils::SetInt(tmp_op_desc->MutableInputDesc(anchor->GetIdx()), ATTR_NAME_INNER_OFFSET,
  1437. origin_input_list[valid_input_index] + inner_offset);
  1438. }
  1439. }
  1440. const auto &in_node = GetKnownInputNode(peer_out_anchor->GetOwnerNode());
  1441. if (in_node->GetType() == CONSTANT) {
  1442. GeTensorDesc tensor_desc = tmp_op_desc->GetInputDesc(static_cast<uint32_t>(anchor->GetIdx()));
  1443. GE_CHK_STATUS(TensorUtils::GetDataOffset(tensor_desc, input_offset));
  1444. }
  1445. if (!is_l1_type) {
  1446. // update ref output_offset when input change
  1447. GE_CHK_STATUS_RET(UpdateRefOpOutputOffset(node, out2ins, anchor->GetIdx(), input_offset),
  1448. "[Update][RefOffset]fail for node: %s", node->GetName().c_str());
  1449. }
  1450. GELOGD("Node[%s] input[%d] is set from node[%s] out index[%lu] offset[%ld]", tmp_op_desc->GetName().c_str(),
  1451. anchor->GetIdx(), peer_out_anchor->GetOwnerNode()->GetOpDesc()->GetName().c_str(), out_index,
  1452. input_offset);
  1453. input_list.emplace_back(input_offset);
  1454. valid_input_index++;
  1455. }
  1456. }
  1457. return ge::SUCCESS;
  1458. }
  1459. ge::Status GraphMemoryAssigner::UpdateRefOpOutputOffset(const NodePtr &node, const std::map<int32_t, int32_t> &out2ins,
  1460. const int ref_in, const int64_t input_offset) const {
  1461. auto opdesc = node->GetOpDesc();
  1462. GE_CHECK_NOTNULL(opdesc);
  1463. int64_t inner_offset = 0;
  1464. bool has_inner_offset = ge::AttrUtils::GetInt(opdesc->MutableInputDesc(ref_in), ATTR_NAME_INNER_OFFSET, inner_offset);
  1465. for (const auto &out2in : out2ins) {
  1466. auto out_i = out2in.first;
  1467. auto in_i = out2in.second;
  1468. if (in_i == ref_in) {
  1469. auto origin_output_list = opdesc->GetOutputOffset();
  1470. if (static_cast<size_t>(out_i) >= origin_output_list.size()) {
  1471. std::string error = "Node" + FmtToStr(opdesc->GetName()) + "output offset size" +
  1472. FmtToStr(origin_output_list.size()) + "should bigger than ref out index" + FmtToStr(out_i);
  1473. GE_ERRORLOG_AND_ERRORMSG(ge::FAILED, error.c_str());
  1474. return ge::FAILED;
  1475. }
  1476. origin_output_list[out_i] = input_offset;
  1477. opdesc->SetOutputOffset(origin_output_list);
  1478. if (has_inner_offset) {
  1479. (void)ge::AttrUtils::SetInt(opdesc->MutableOutputDesc(out_i), ATTR_NAME_INNER_OFFSET, inner_offset);
  1480. }
  1481. GELOGI("Node[%s] output[%d] is updated from reuse input index[%d] to offset[%ld], inner_offset[%ld]",
  1482. opdesc->GetName().c_str(), out_i, ref_in, input_offset, inner_offset);
  1483. }
  1484. }
  1485. return ge::SUCCESS;
  1486. }
  1487. ge::Status GraphMemoryAssigner::UpdateOpInputOffset(const NodePtr &node) const {
  1488. GE_CHECK_NOTNULL(node->GetOpDesc());
  1489. vector<int64_t> input_list;
  1490. if (node->GetType() == HCOMBROADCAST || node->GetType() == HVDCALLBACKBROADCAST) {
  1491. for (const auto &anchor : node->GetAllInDataAnchors()) {
  1492. vector<int64_t> output_list;
  1493. auto peer_out_anchor = anchor->GetPeerOutAnchor();
  1494. if (peer_out_anchor == nullptr) {
  1495. continue;
  1496. }
  1497. auto last_peer_out_node = peer_out_anchor->GetOwnerNode();
  1498. // If the current node is broadcast and the preceding node is variable, because InputOffset has been set
  1499. // in function:AssignVarAttr2Nodes, then the InputOffset of the broadcast node is taken to update the input_list.
  1500. // Otherwise, the OutputOffset of the previous node is used to update the input_list.
  1501. if (last_peer_out_node->GetType() != VARIABLE) {
  1502. auto last_peer_out_op_desc = last_peer_out_node->GetOpDesc();
  1503. GE_CHECK_NOTNULL(last_peer_out_op_desc);
  1504. output_list = last_peer_out_op_desc->GetOutputOffset();
  1505. if (output_list.size() > static_cast<size_t>(peer_out_anchor->GetIdx())) {
  1506. input_list.emplace_back(output_list.at(peer_out_anchor->GetIdx()));
  1507. }
  1508. } else {
  1509. vector<int64_t> cur_node_input_list;
  1510. auto cur_node_op_desc = node->GetOpDesc();
  1511. GE_CHECK_NOTNULL(cur_node_op_desc);
  1512. cur_node_input_list = cur_node_op_desc->GetInputOffset();
  1513. if (cur_node_input_list.size() > static_cast<size_t>(anchor->GetIdx())) {
  1514. input_list.emplace_back(cur_node_input_list.at(anchor->GetIdx()));
  1515. }
  1516. }
  1517. }
  1518. } else if (node->GetType() == DATA_TYPE) {
  1519. if (UpdateConstArgsOffset(node, input_list) != SUCCESS) {
  1520. GELOGE(FAILED, "[Update][Offset:Input:Const]fail for node:%s ", node->GetName().c_str());
  1521. return FAILED;
  1522. }
  1523. } else {
  1524. if (UpdateOpInputOffset(node, input_list) != SUCCESS) {
  1525. GELOGE(FAILED, "[Update][Offset:Input]fail for node:%s", node->GetName().c_str());
  1526. return FAILED;
  1527. }
  1528. }
  1529. node->GetOpDesc()->SetInputOffset(input_list);
  1530. return SUCCESS;
  1531. }
  1532. Status GraphMemoryAssigner::SetIndependentAtomicAttr(const ge::NodePtr &node, int64_t atomic_mem_start,
  1533. const vector<int64_t> &mem_offset_end, int64_t memory_type) {
  1534. GELOGD("Start to set independent atomic attr, atomic_addr_clean memory offset start is %ld", atomic_mem_start);
  1535. // Parsing offset and size vectors
  1536. vector<int64_t> memory_offset_start;
  1537. vector<int64_t> memory_offset_size;
  1538. memory_offset_start.emplace_back(atomic_mem_start);
  1539. for (size_t i = 0; i < mem_offset_end.size(); ++i) {
  1540. memory_offset_start.emplace_back(mem_offset_end[i]);
  1541. // Number 1 means element index
  1542. auto size = memory_offset_start[i + 1] - memory_offset_start[i];
  1543. memory_offset_size.emplace_back(size);
  1544. }
  1545. memory_offset_start.pop_back();
  1546. const auto &in_control_anchor = node->GetInControlAnchor();
  1547. if (!memory_offset_size.empty() && in_control_anchor != nullptr) {
  1548. for (auto &peer_out_control_anchor : in_control_anchor->GetPeerOutControlAnchors()) {
  1549. if (peer_out_control_anchor == nullptr) {
  1550. continue;
  1551. }
  1552. auto peer_out_node = peer_out_control_anchor->GetOwnerNode();
  1553. auto peer_out_node_desc = peer_out_node->GetOpDesc();
  1554. if (peer_out_node_desc == nullptr) {
  1555. continue;
  1556. }
  1557. GELOGD("Current node memory_offset vector size is %zu, node name %s, node type is %s.", memory_offset_size.size(),
  1558. peer_out_node_desc->GetName().c_str(), peer_out_node_desc->GetType().c_str());
  1559. if (peer_out_node_desc->GetType() == ATOMICADDRCLEAN) {
  1560. if (SetAtomicCleanAttr(peer_out_node, memory_offset_start, memory_offset_size, memory_type) != SUCCESS) {
  1561. GELOGE(FAILED, "[Set][AtomicCleanAttr]fail for node:%s", peer_out_node->GetName().c_str());
  1562. return FAILED;
  1563. }
  1564. }
  1565. }
  1566. }
  1567. return SUCCESS;
  1568. }
  1569. ge::Status GraphMemoryAssigner::SetAtomicCleanAttr(const NodePtr &node, const vector<int64_t> &atomic_mem_start,
  1570. const vector<int64_t> &atomic_mem_size, int64_t memory_type) {
  1571. auto node_op_desc = node->GetOpDesc();
  1572. if (node_op_desc != nullptr) {
  1573. GELOGD("Node %s, set atomic clean attr start.", node->GetName().c_str());
  1574. vector<int64_t> workspace_vector = node_op_desc->GetWorkspace();
  1575. vector<int64_t> workspace_byte_vector = node_op_desc->GetWorkspaceBytes();
  1576. workspace_vector.insert(workspace_vector.end(), atomic_mem_start.begin(), atomic_mem_start.end());
  1577. workspace_byte_vector.insert(workspace_byte_vector.end(), atomic_mem_size.begin(), atomic_mem_size.end());
  1578. node_op_desc->SetWorkspace(workspace_vector);
  1579. node_op_desc->SetWorkspaceBytes(workspace_byte_vector);
  1580. std::vector<int64_t> mem_start_vector;
  1581. // If GetListInt fail, mem_start_vector is empty.
  1582. (void) ge::AttrUtils::GetListInt(node_op_desc, ATTR_NAME_AUTOMIC_ADD_START, mem_start_vector);
  1583. mem_start_vector.insert(mem_start_vector.end(), atomic_mem_start.begin(), atomic_mem_start.end());
  1584. GE_CHK_BOOL_EXEC(ge::AttrUtils::SetListInt(node_op_desc, ATTR_NAME_AUTOMIC_ADD_START, mem_start_vector),
  1585. REPORT_INNER_ERROR("E19999", "Set Attr:%s failed, op_name:%s",
  1586. ATTR_NAME_AUTOMIC_ADD_START.c_str(), node_op_desc->GetName().c_str());
  1587. GELOGE(FAILED, "[Set][Attr:%s]fail for op_name:%s",
  1588. ATTR_NAME_AUTOMIC_ADD_START.c_str(), node_op_desc->GetName().c_str());
  1589. return FAILED);
  1590. std::vector<int64_t> mem_size_vector;
  1591. // If GetListInt fail, mem_size_vector is empty.
  1592. (void) ge::AttrUtils::GetListInt(node_op_desc, ATTR_NAME_AUTOMIC_ADD_MEM_SIZE, mem_size_vector);
  1593. mem_size_vector.insert(mem_size_vector.end(), atomic_mem_size.begin(), atomic_mem_size.end());
  1594. GE_CHK_BOOL_EXEC(ge::AttrUtils::SetListInt(node_op_desc, ATTR_NAME_AUTOMIC_ADD_MEM_SIZE, mem_size_vector),
  1595. REPORT_INNER_ERROR("E19999", "Set Attr:%s failed, op_name:%s",
  1596. ATTR_NAME_AUTOMIC_ADD_MEM_SIZE.c_str(), node_op_desc->GetName().c_str());
  1597. GELOGE(FAILED, "[Set][Attr:%s]fail for op_name:%s",
  1598. ATTR_NAME_AUTOMIC_ADD_MEM_SIZE.c_str(), node_op_desc->GetName().c_str());
  1599. return FAILED);
  1600. std::stringstream ss;
  1601. for (auto iter : atomic_mem_start) {
  1602. ss << iter << " ";
  1603. }
  1604. string atomic_mem_start_str = ss.str();
  1605. ss.clear();
  1606. ss.str("");
  1607. for (auto iter : atomic_mem_size) {
  1608. ss << iter << " ";
  1609. }
  1610. string atomic_mem_size_str = ss.str();
  1611. GELOGI("[IMAS]SetAtomicCleanAttr : Set %s atomic_node name[%s] optype[%s] output[0] offset to [%s] streamid[%ld]"
  1612. " memtype[%ld] size[%s]",node->GetOwnerComputeGraph()->GetName().c_str(), node_op_desc->GetName().c_str(),
  1613. node->GetType().c_str(), atomic_mem_start_str.c_str(), node->GetOpDesc()->GetStreamId(), memory_type,
  1614. atomic_mem_size_str.c_str());
  1615. }
  1616. return SUCCESS;
  1617. }
  1618. void GraphMemoryAssigner::AlignMemOffset(const int64_t &mem_align_size, int64_t memory_type) {
  1619. if (mem_align_size <= 0) {
  1620. return;
  1621. }
  1622. auto iter = memory_offset_.find(memory_type);
  1623. if (iter == memory_offset_.end()) {
  1624. GELOGW("Memory offset don't have memory type[%ld].", memory_type);
  1625. return;
  1626. }
  1627. iter->second.mem_offset_ =
  1628. (iter->second.mem_offset_ + mem_align_size - 1) / mem_align_size * mem_align_size;
  1629. }
  1630. ge::Status GraphMemoryAssigner::GetNodeListMemoryType(const vector<NodePtr> &nodes, int32_t mem_reuse_model,
  1631. int64_t &memory_type) {
  1632. memory_type = RT_MEMORY_HBM;
  1633. // In the dynamic batch scenario, the memory attributes of nodes are the same.
  1634. for (auto &n : nodes) {
  1635. if (mem_reuse_model == kVirtualInputNodeMemoryReuse) {
  1636. GE_CHK_STATUS_RET(GetNodeMemoryType(n, memory_type, "input"),
  1637. "[Get][MemType:input]fail for node:%s", n->GetName().c_str())
  1638. break;
  1639. }
  1640. if (mem_reuse_model == kVirtualOutputNodeMemoryReuse) {
  1641. GE_CHK_STATUS_RET(GetNodeMemoryType(n, memory_type, "output"),
  1642. "[Get][MemType:output]fail for node:%s", n->GetName().c_str())
  1643. break;
  1644. }
  1645. }
  1646. return SUCCESS;
  1647. }
  1648. ge::Status GraphMemoryAssigner::GetNodeMemoryType(const NodePtr &node, int64_t &memory_type, string input_or_output) {
  1649. memory_type = RT_MEMORY_HBM;
  1650. vector<int64_t> mem_type_list;
  1651. if (input_or_output == "input") {
  1652. (void) ge::AttrUtils::GetListInt(node->GetOpDesc(), ATTR_NAME_INPUT_MEM_TYPE_LIST, mem_type_list);
  1653. }
  1654. if (input_or_output == "output") {
  1655. (void) ge::AttrUtils::GetListInt(node->GetOpDesc(), ATTR_NAME_OUTPUT_MEM_TYPE_LIST, mem_type_list);
  1656. }
  1657. if (mem_type_list.empty()) {
  1658. if (memory_offset_.find(memory_type) == memory_offset_.end()) {
  1659. std::string error = "Memory offset map does not have memory type" + FmtToStr(memory_type) +
  1660. + ", opname is " + FmtToStr(node->GetName()) + ", optype is " + FmtToStr(node->GetType());
  1661. GE_ERRORLOG_AND_ERRORMSG(FAILED, error.c_str());
  1662. return FAILED;
  1663. }
  1664. return SUCCESS;
  1665. }
  1666. if (mem_type_list.size() != node->GetAllInDataAnchorsSize()) {
  1667. std::string error = "The size" + FmtToStr(mem_type_list.size()) +
  1668. " of mem type list is not equal to the size of in data anchor" +
  1669. FmtToStr(node->GetAllInDataAnchorsSize()) + ", opname is " +
  1670. FmtToStr(node->GetName()) + ", optype is " + FmtToStr(node->GetType());
  1671. GE_ERRORLOG_AND_ERRORMSG(FAILED, error.c_str());
  1672. return FAILED;
  1673. }
  1674. if (!CheckContinuousMemType(mem_type_list)) {
  1675. GELOGE(FAILED, "[Check][MemType:Continuous]fail for node:%s", node->GetName().c_str());
  1676. return FAILED;
  1677. }
  1678. // It is continuous memory and memory type is the same, so use the first memory.
  1679. memory_type = mem_type_list[0];
  1680. return SUCCESS;
  1681. }
  1682. bool GraphMemoryAssigner::CheckContinuousMemType(vector<int64_t> mem_type_list) {
  1683. if (mem_type_list.size() == 0) {
  1684. return true;
  1685. }
  1686. int64_t mem_type_tmp = mem_type_list[0];
  1687. for (auto mem_type : mem_type_list) {
  1688. if (mem_type != mem_type_tmp) {
  1689. std::string error = "The memory is continuous, but the type of the input memory is inconsistent. They are " +
  1690. FmtToStr(mem_type_tmp) + " and " + FmtToStr(mem_type);
  1691. ErrorManager::GetInstance().ATCReportErrMessage("E10043", {"reason"}, {error});
  1692. GELOGW("The memory is continuous, but the type of the input memory is inconsistent. They are [%ld] and [%ld].",
  1693. mem_type_tmp, mem_type);
  1694. return false;
  1695. }
  1696. }
  1697. if (memory_offset_.find(mem_type_tmp) == memory_offset_.end()) {
  1698. std::string error = "Memory offset map does not have memory type" + FmtToStr(mem_type_tmp);
  1699. ErrorManager::GetInstance().ATCReportErrMessage("E10043", {"reason"}, {error});
  1700. GELOGW("Memory offset map does not have memory type[%ld].", mem_type_tmp);
  1701. return false;
  1702. }
  1703. return true;
  1704. }
  1705. void GraphMemoryAssigner::PrintMemoryOffset() {
  1706. for (auto pair : memory_offset_) {
  1707. // Assign memory of max batch nodes that have the same batch label.
  1708. GELOGD("Reassign memory for max batch virtual nodes, memory type = %ld, memory offset = %zu.",
  1709. pair.first, pair.second.mem_offset_);
  1710. }
  1711. }
  1712. ge::Status GraphMemoryAssigner::TryGetNodeRefIndexes(const NodePtr &node, map<int32_t, int32_t> &out2ins) const{
  1713. // data and netoutput no need check because only data's output or netoutput's input is used
  1714. if (node->GetType() == DATA || node->GetType() == NETOUTPUT) {
  1715. return ge::SUCCESS;
  1716. }
  1717. for (const auto &out_data_anchor : node->GetAllOutDataAnchors()) {
  1718. int32_t reuse_in_index = -1;
  1719. // nopadding means output[0] reuse input[0], but as history reason,
  1720. // other output index also return true for mem assign in block_mem_assigner
  1721. if (GraphUtils::IsNoPaddingRefFromInput(out_data_anchor, reuse_in_index)) {
  1722. out2ins.emplace(out_data_anchor->GetIdx(), reuse_in_index);
  1723. return ge::SUCCESS;
  1724. }
  1725. bool reuse_input_flag = GraphUtils::IsRefFromInput(out_data_anchor, reuse_in_index);
  1726. if (reuse_input_flag) {
  1727. if (node->GetInDataAnchor(reuse_in_index) != nullptr) {
  1728. out2ins.emplace(out_data_anchor->GetIdx(), reuse_in_index);
  1729. } else {
  1730. REPORT_INNER_ERROR("E19999", "Invalid reuse_input value %d on output %d of node %s, "
  1731. "please check attr reuse_input",
  1732. reuse_in_index, out_data_anchor->GetIdx(), node->GetName().c_str());
  1733. GELOGE(FAILED, "[Check][Attr]Invalid reuse_input value %d on output %d of node %s, "
  1734. "please check attr reuse_input",
  1735. reuse_in_index, out_data_anchor->GetIdx(), node->GetName().c_str());
  1736. return FAILED;
  1737. }
  1738. }
  1739. }
  1740. return ge::SUCCESS;
  1741. }
  1742. bool GraphMemoryAssigner::AssignContinuousInputMemoryWithAtomicProcessDirectly(
  1743. const NodePtr &input_continuous_node, map<NodePtr, uint32_t> &node_2_continuous_type) {
  1744. for (const auto &in_node : input_continuous_node->GetInDataNodes()) {
  1745. if (in_node->GetType() == VARIABLE) {
  1746. GELOGI("node %s 's precursor node %s is variable, do not store.", input_continuous_node->GetName().c_str(),
  1747. in_node->GetName().c_str());
  1748. return true;
  1749. }
  1750. auto iter = node_2_continuous_type.find(in_node);
  1751. // In node's topo order in the front, so function can not be exception
  1752. auto continuous_type = iter->second;
  1753. bool continuous_input = ((continuous_type & kTypeInput) != 0) || ((continuous_type & kTypeInputNoPadding) != 0);
  1754. if (continuous_input) {
  1755. GELOGI("[Store][Node] of %s cause it's precursor node %s need assign continuous input memory",
  1756. input_continuous_node->GetName().c_str(), in_node->GetName().c_str());
  1757. return false;
  1758. }
  1759. }
  1760. for (const auto &out_node : input_continuous_node->GetOutDataNodes()) {
  1761. auto continuous_type = GetContinuousMemoryType(out_node->GetOpDesc());
  1762. node_2_continuous_type.emplace(out_node, continuous_type);
  1763. bool continuous_input = ((continuous_type & kTypeInput) != 0) || ((continuous_type & kTypeInputNoPadding) != 0);
  1764. if (continuous_input) {
  1765. GELOGI("[Store][Node] of %s cause it's succeed node %s need assign continuous input memory",
  1766. input_continuous_node->GetName().c_str(), out_node->GetName().c_str());
  1767. return false;
  1768. }
  1769. }
  1770. return true;
  1771. }
  1772. ge::Status GraphMemoryAssigner::AssignContinuousInputMemoryWithAtomicProcess(const NodePtr &input_continuous_node,
  1773. uint32_t continuous_type,
  1774. bool reverse_refresh) {
  1775. int64_t mem_clean_start = 0;
  1776. int64_t mem_clean_size = 0;
  1777. int64_t memory_type = RT_MEMORY_HBM;
  1778. GE_CHK_STATUS_RET(GetNodeMemoryType(input_continuous_node, memory_type, "input"),
  1779. "[Get][MemType]fail for node:%s", input_continuous_node->GetName().c_str());
  1780. auto ret = AssignContinuousInputMemory(input_continuous_node, mem_clean_start, mem_clean_size, memory_type,
  1781. continuous_type, reverse_refresh);
  1782. if (ret != ge::SUCCESS) {
  1783. GELOGE(ret, "[Assign][Memory:Input:continuous]fail for node:%s", input_continuous_node->GetName().c_str());
  1784. return ret;
  1785. }
  1786. // Clean up atomic address, eg, hcom node
  1787. vector<int32_t> input_indexes;
  1788. // If GetListInt fail, input_indexes is empty.
  1789. (void)ge::AttrUtils::GetListInt(input_continuous_node->GetOpDesc(), ATOMIC_ATTR_INPUT_INDEX, input_indexes);
  1790. if (!input_indexes.empty() && input_indexes[0] == kAllInputAddrIsAtomic) {
  1791. // check whether there is an atomic conflict between the current node and the peer out node
  1792. if (!CheckInputIsSupportAtomic(input_continuous_node)) {
  1793. return ge::FAILED;
  1794. }
  1795. const auto &in_control_anchor = input_continuous_node->GetInControlAnchor();
  1796. GE_CHECK_NOTNULL(in_control_anchor);
  1797. for (const auto &peer_out_control_anchor : in_control_anchor->GetPeerOutControlAnchors()) {
  1798. GE_CHECK_NOTNULL(peer_out_control_anchor);
  1799. auto peer_out_node = peer_out_control_anchor->GetOwnerNode();
  1800. if (peer_out_node->GetType() == ATOMICADDRCLEAN) {
  1801. ret = SetAtomicCleanAttr(peer_out_node, {mem_clean_start}, {mem_clean_size}, memory_type);
  1802. if (ret != SUCCESS) {
  1803. GELOGE(ret, "[Set][AtomicCleanAttr]fail for node:%s", peer_out_node->GetName().c_str());
  1804. return ret;
  1805. }
  1806. }
  1807. }
  1808. }
  1809. return ge::SUCCESS;
  1810. }
  1811. Status GraphMemoryAssigner::AssignBufferPoolMemory() {
  1812. auto is_buffer_pool_mem_enable = [] (const ComputeGraphPtr &graph) -> bool {
  1813. for (NodePtr &node : graph->GetAllNodes()) {
  1814. auto op_desc = node->GetOpDesc();
  1815. if (op_desc == nullptr) {
  1816. continue;
  1817. }
  1818. bool has_attrs = op_desc->HasAttr(ATTR_NAME_BUFFER_POOL_ID) && op_desc->HasAttr(ATTR_NAME_BUFFER_POOL_SIZE);
  1819. if (has_attrs) {
  1820. return true;
  1821. }
  1822. }
  1823. return false;
  1824. };
  1825. auto root_graph = GraphUtils::FindRootGraph(compute_graph_);
  1826. GE_CHECK_NOTNULL(root_graph);
  1827. if (root_graph->GetGraphUnknownFlag()) {
  1828. GELOGI("[Check][Enable]Unknown root graph does not support buffer pool memory, graph:%s.",
  1829. compute_graph_->GetName().c_str());
  1830. return SUCCESS;
  1831. }
  1832. if (!is_buffer_pool_mem_enable(compute_graph_)) {
  1833. GELOGD("[Check][Enable]Buffer pool memory is not enable, graph:%s.", compute_graph_->GetName().c_str());
  1834. return SUCCESS;
  1835. }
  1836. map<int64_t, size_t> mem_type_to_offset;
  1837. for (const auto &pair : memory_offset_) {
  1838. mem_type_to_offset[pair.first] = pair.second.mem_offset_;
  1839. }
  1840. BufferPoolMemAssigner buffer_pool_mem_assigner(compute_graph_, mem_type_to_offset);
  1841. Status status = buffer_pool_mem_assigner.Assign();
  1842. if (status != SUCCESS) {
  1843. GELOGE(status, "[Assign][BufferPoolMem]Graph:%s.", compute_graph_->GetName().c_str());
  1844. REPORT_INNER_ERROR("E19999", "Failed to assign buffer pool memory, graph:%s.", compute_graph_->GetName().c_str());
  1845. return status;
  1846. }
  1847. int64_t mem_type = buffer_pool_mem_assigner.GetMemType();
  1848. auto iter = memory_offset_.find(mem_type);
  1849. if (iter == memory_offset_.end()) {
  1850. GELOGE(FAILED, "[Check][MemType]Memory type is not supported, graph:%s, mem type:%ld.",
  1851. compute_graph_->GetName().c_str(), mem_type);
  1852. REPORT_INNER_ERROR("E19999", "Memory type is not supported, graph:%s, mem type:%ld.",
  1853. compute_graph_->GetName().c_str(), mem_type);
  1854. return FAILED;
  1855. }
  1856. iter->second.mem_offset_ = buffer_pool_mem_assigner.GetMemOffset();
  1857. GELOGI("[Assign][BufferPoolMem]Assign buffer pool memory successfully, graph:%s, mem type:%ld, mem offset:%zu.",
  1858. compute_graph_->GetName().c_str(), mem_type, buffer_pool_mem_assigner.GetMemOffset());
  1859. return SUCCESS;
  1860. }
  1861. // if producer and customers in the same stream, or customers on the same stream when producer not assign a stream,
  1862. // then return false.
  1863. bool GraphMemoryAssigner::IsOutputVisitedByMultiStream(const NodePtr &peer_out_node, int64_t out_anchor_index) {
  1864. GE_IF_BOOL_EXEC(peer_out_node->GetOpDesc() == nullptr, return true);
  1865. int64_t unique_stream_id = peer_out_node->GetOpDesc()->GetStreamId();
  1866. GE_IF_BOOL_EXEC(peer_out_node->GetOutDataAnchor(out_anchor_index) == nullptr, return true);
  1867. for (const auto &in_data_anchor : peer_out_node->GetOutDataAnchor(out_anchor_index)->GetPeerInDataAnchors()) {
  1868. auto node = in_data_anchor->GetOwnerNode();
  1869. GE_IF_BOOL_EXEC(node == nullptr || node->GetOpDesc() == nullptr, continue);
  1870. if (node->GetOpDesc()->GetStreamId() == kInvalidStream) {
  1871. continue;
  1872. }
  1873. if (unique_stream_id == kInvalidStream) { // peer_out_node not belong to any stream
  1874. unique_stream_id = node->GetOpDesc()->GetStreamId();
  1875. continue;
  1876. }
  1877. if (node->GetOpDesc()->GetStreamId() != unique_stream_id) {
  1878. return true;
  1879. }
  1880. }
  1881. return false;
  1882. }
  1883. void GraphMemoryAssigner::UpdatePrevNodeInputDesc(const NodePtr &prev_node,
  1884. const vector<int64_t> &prev_node_input_index_vec,
  1885. int64_t distance) {
  1886. GE_IF_BOOL_EXEC(prev_node == nullptr, return);
  1887. auto prev_node_op_desc = prev_node->GetOpDesc();
  1888. GE_IF_BOOL_EXEC(prev_node_op_desc == nullptr, return);
  1889. for (const auto prev_node_input_index : prev_node_input_index_vec) {
  1890. auto input_desc = prev_node_op_desc->GetInputDesc(prev_node_input_index);
  1891. vector<int64_t> prev_next_distances;
  1892. if (!ge::AttrUtils::GetListInt(input_desc, ATTR_NAME_DATA_VISIT_DISTANCE, prev_next_distances)) {
  1893. GELOGW("Get [%s] input [%ld] ATTR_NAME_DATA_VISIT_DISTANCE failed",
  1894. prev_node_op_desc->GetName().c_str(),
  1895. prev_node_input_index);
  1896. continue;
  1897. }
  1898. if (prev_next_distances.size() == kPrevNextDistanceNum) {
  1899. prev_next_distances[1] = distance;
  1900. } else {
  1901. GELOGW("Size of prev_next_distances is not %d.", kPrevNextDistanceNum);
  1902. continue;
  1903. }
  1904. if (!ge::AttrUtils::SetListInt(input_desc, ATTR_NAME_DATA_VISIT_DISTANCE, prev_next_distances)) {
  1905. GELOGW("Set [%s] input [%ld] ATTR_NAME_DATA_VISIT_DISTANCE failed.",
  1906. prev_node_op_desc->GetName().c_str(),
  1907. prev_node_input_index);
  1908. continue;
  1909. }
  1910. if (prev_node_op_desc->UpdateInputDesc(prev_node_input_index, input_desc) != GRAPH_SUCCESS) {
  1911. GELOGW("Update [%s] input [%ld] ATTR_NAME_DATA_VISIT_DISTANCE failed.",
  1912. prev_node_op_desc->GetName().c_str(),
  1913. prev_node_input_index);
  1914. continue;
  1915. }
  1916. GELOGD("Set the next distance[%ld] to node[%s], input index[%ld]",
  1917. distance,
  1918. prev_node->GetName().c_str(),
  1919. prev_node_input_index);
  1920. }
  1921. return;
  1922. }
  1923. void GraphMemoryAssigner::UpdateCurNodeInputDesc(const NodePtr &cur_node,
  1924. int64_t cur_node_input_index,
  1925. int64_t distance) {
  1926. GE_IF_BOOL_EXEC(cur_node == nullptr, return);
  1927. GE_IF_BOOL_EXEC(cur_node->GetOpDesc() == nullptr, return);
  1928. auto input_desc = cur_node->GetOpDesc()->GetInputDesc(cur_node_input_index);
  1929. vector<int64_t> prev_next_distances{distance, -1};
  1930. if (!ge::AttrUtils::SetListInt(input_desc, ATTR_NAME_DATA_VISIT_DISTANCE, prev_next_distances)) {
  1931. GELOGW("Set [%s] input[%ld] ATTR_NAME_DATA_VISIT_DISTANCE failed.",
  1932. cur_node->GetOpDesc()->GetName().c_str(),
  1933. cur_node_input_index);
  1934. return;
  1935. }
  1936. if (cur_node->GetOpDesc()->UpdateInputDesc(cur_node_input_index, input_desc) != GRAPH_SUCCESS) {
  1937. GELOGW("Update [%s] input[%ld] ATTR_NAME_DATA_VISIT_DISTANCE failed.",
  1938. cur_node->GetOpDesc()->GetName().c_str(),
  1939. cur_node_input_index);
  1940. return;
  1941. }
  1942. GELOGD("Set the prev distance[%ld] to node[%s], input index[%ld]",
  1943. distance,
  1944. cur_node->GetName().c_str(),
  1945. cur_node_input_index);
  1946. return;
  1947. }
  1948. void GraphMemoryAssigner::CheckNeedCalcDistAndUpdateVisitInfo(
  1949. const NodePtr &peer_out_node,
  1950. const OutDataAnchorPtr &peer_out_anchor,
  1951. size_t matched_mem_offset,
  1952. map<size_t, pair<NodePtr, vector<int64_t>>> &mem_block_visit_info,
  1953. bool &is_need_calc_distance) {
  1954. auto iter = mem_block_visit_info.find(matched_mem_offset);
  1955. // cannot find visit info, peer_out_node must be a producer and this data is the first time to be visited.
  1956. if (iter == mem_block_visit_info.end()) {
  1957. if (IsOutputVisitedByMultiStream(peer_out_node, peer_out_anchor->GetIdx())) {
  1958. vector<int64_t> temp;
  1959. mem_block_visit_info.insert(std::make_pair(matched_mem_offset, std::make_pair(nullptr, temp)));
  1960. is_need_calc_distance = false;
  1961. return;
  1962. } else {
  1963. vector<int64_t> temp = {-1};
  1964. // producer's prev_node_index set to -1 as default
  1965. mem_block_visit_info.insert(std::make_pair(matched_mem_offset, std::make_pair(peer_out_node, temp)));
  1966. is_need_calc_distance = true;
  1967. return;
  1968. }
  1969. } else {
  1970. if (mem_block_visit_info[matched_mem_offset].first == nullptr) {
  1971. // multi-stream visit, no need to calculate
  1972. is_need_calc_distance = false;
  1973. return;
  1974. }
  1975. if (peer_out_node->GetOpDesc()->GetStreamId() !=
  1976. mem_block_visit_info[matched_mem_offset].first->GetOpDesc()->GetStreamId()) {
  1977. // cur node and peer_out_node not in the same stream, no need to calculate
  1978. is_need_calc_distance = false;
  1979. return;
  1980. }
  1981. }
  1982. is_need_calc_distance = true;
  1983. return;
  1984. }
  1985. // calculate distance, update visit info, update prev_node input desc, update cur node input desc
  1986. void GraphMemoryAssigner::CalcDistanceAndUpdateDesc(const map<string, int64_t> &node_index_in_stream,
  1987. const InDataAnchorPtr &in_data_anchor,
  1988. size_t matched_mem_offset,
  1989. NodePtr &node,
  1990. map<size_t, pair<NodePtr, vector<int64_t>>> &mem_block_visit_info,
  1991. bool &is_need_skip) {
  1992. int64_t distance = -1;
  1993. auto prev_node = mem_block_visit_info[matched_mem_offset].first;
  1994. auto prev_node_input_index_vec = mem_block_visit_info[matched_mem_offset].second;
  1995. GE_IF_BOOL_EXEC(prev_node == nullptr, is_need_skip = true; return);
  1996. if (prev_node_input_index_vec.size() == 1 && prev_node_input_index_vec[0] == -1) {
  1997. // prev_node is producer and the data is just be produced(not visited by other node)
  1998. GE_IF_BOOL_EXEC(prev_node->GetOpDesc() == nullptr, is_need_skip = true; return);
  1999. if (prev_node->GetOpDesc()->GetStreamId() == -1) { // producer not assigned a stream
  2000. distance = 0;
  2001. } else {
  2002. auto iter = node_index_in_stream.find(prev_node->GetName());
  2003. if (iter == node_index_in_stream.end()) {
  2004. distance = 0;
  2005. } else {
  2006. distance = node_index_in_stream.at(node->GetName()) - iter->second - 1;
  2007. }
  2008. }
  2009. mem_block_visit_info[matched_mem_offset].first = node;
  2010. mem_block_visit_info[matched_mem_offset].second.clear();
  2011. mem_block_visit_info[matched_mem_offset].second.push_back(in_data_anchor->GetIdx());
  2012. } else { // the data is visit by other customer just before.
  2013. if (prev_node_input_index_vec.empty()) {
  2014. GELOGW("Missing prev node[%s] input index.", prev_node->GetName().c_str());
  2015. is_need_skip = true;
  2016. return;
  2017. }
  2018. if (prev_node == node) { // scene: multiple anchors of a node access the same data
  2019. vector<int64_t> prev_next_distances;
  2020. GE_IF_BOOL_EXEC(prev_node->GetOpDesc() == nullptr, is_need_skip = true; return);
  2021. auto input_desc = prev_node->GetOpDesc()->GetInputDesc(prev_node_input_index_vec[0]);
  2022. if (!ge::AttrUtils::GetListInt(input_desc, ATTR_NAME_DATA_VISIT_DISTANCE, prev_next_distances)) {
  2023. GELOGW("Get ATTR_NAME_DATA_VISIT_DISTANCE failed.");
  2024. is_need_skip = true;
  2025. return;
  2026. }
  2027. if (prev_next_distances.size() != kPrevNextDistanceNum) {
  2028. GELOGW("Size of prev_next_distance is not %d.", kPrevNextDistanceNum);
  2029. is_need_skip = true;
  2030. return;
  2031. } else {
  2032. distance = prev_next_distances[0]; // use the same prev_distance as previous anchor
  2033. }
  2034. mem_block_visit_info[matched_mem_offset].second.push_back(in_data_anchor->GetIdx());
  2035. } else {
  2036. distance = node_index_in_stream.at(node->GetName()) - node_index_in_stream.at(prev_node->GetName()) - 1;
  2037. UpdatePrevNodeInputDesc(prev_node, prev_node_input_index_vec, distance);
  2038. mem_block_visit_info[matched_mem_offset].first = node;
  2039. mem_block_visit_info[matched_mem_offset].second.clear();
  2040. mem_block_visit_info[matched_mem_offset].second.push_back(in_data_anchor->GetIdx());
  2041. }
  2042. }
  2043. UpdateCurNodeInputDesc(node, in_data_anchor->GetIdx(), distance);
  2044. }
  2045. void GraphMemoryAssigner::DeleteVisitInfoWhenLifecycleEnded(
  2046. const NodePtr &node,
  2047. const InDataAnchorPtr &in_data_anchor,
  2048. size_t matched_mem_offset,
  2049. map<size_t, pair<NodePtr, vector<int64_t>>> &mem_block_visit_info) {
  2050. GE_IF_BOOL_EXEC(node->GetOpDesc() == nullptr, return);
  2051. auto input_desc = node->GetOpDesc()->GetInputDesc(in_data_anchor->GetIdx());
  2052. bool is_end_of_inputmem_lifecycle = false;
  2053. // if is_end_of_inputmem_lifecycle is true, indicating that cur node is the last customer of this data,
  2054. // then we need to delete the visit info of the block in case that the memblock be reused and visited.
  2055. if (ge::AttrUtils::GetBool(input_desc, ATTR_NAME_IS_END_OF_INPUTMEM_LIFECYCLE, is_end_of_inputmem_lifecycle) &&
  2056. is_end_of_inputmem_lifecycle) {
  2057. GELOGD("ATTR_NAME_IS_END_OF_INPUTMEM_LIFECYCLE is true, node name is [%s], in_data_anchor index is [%d]",
  2058. node->GetName().c_str(),
  2059. in_data_anchor->GetIdx());
  2060. auto iter = mem_block_visit_info.find(matched_mem_offset);
  2061. if (iter != mem_block_visit_info.end()) {
  2062. mem_block_visit_info.erase(iter);
  2063. }
  2064. }
  2065. }
  2066. void GraphMemoryAssigner::MarkNodeDistanceAttr(const ComputeGraphPtr &compute_graph,
  2067. NodePtr &node,
  2068. map<size_t, pair<NodePtr, vector<int64_t>>> &mem_block_visit_info,
  2069. const map<string, int64_t> &node_index_in_stream) {
  2070. GELOGD("Begin to mark node distance attr, node name is [%s]", node->GetName().c_str());
  2071. GE_IF_BOOL_EXEC(node == nullptr, return);
  2072. for (const auto &in_data_anchor : node->GetAllInDataAnchors()) {
  2073. auto peer_out_anchor = in_data_anchor->GetPeerOutAnchor();
  2074. GE_IF_BOOL_EXEC(peer_out_anchor == nullptr, continue);
  2075. auto peer_out_node = peer_out_anchor->GetOwnerNode();
  2076. GE_IF_BOOL_EXEC(peer_out_node == nullptr, continue);
  2077. GE_IF_BOOL_EXEC(peer_out_node->GetOpDesc() == nullptr, continue);
  2078. auto matched_mem_offset = peer_out_node->GetOpDesc()->GetOutputOffset().at(peer_out_anchor->GetIdx());
  2079. bool is_need_calc_distance = false;
  2080. CheckNeedCalcDistAndUpdateVisitInfo(peer_out_node, peer_out_anchor, matched_mem_offset,
  2081. mem_block_visit_info, is_need_calc_distance);
  2082. if (!is_need_calc_distance) {
  2083. continue;
  2084. }
  2085. bool is_need_skip = false;
  2086. CalcDistanceAndUpdateDesc(node_index_in_stream, in_data_anchor, matched_mem_offset, node,
  2087. mem_block_visit_info, is_need_skip);
  2088. if (is_need_skip) {
  2089. continue;
  2090. }
  2091. DeleteVisitInfoWhenLifecycleEnded(node, in_data_anchor, matched_mem_offset, mem_block_visit_info);
  2092. }
  2093. }
  2094. void GraphMemoryAssigner::MarkDistanceAttr() {
  2095. // key: mem_offset of the memory which we visited. value: node we visited and input index of this node
  2096. map<size_t, pair<NodePtr, vector<int64_t>>> mem_block_visit_info;
  2097. // key: node name, value: topo order of node in it's belonged stream(exclude ge_local_op)
  2098. map<string, int64_t> node_index_in_stream;
  2099. // key: stream id, value: cur nodes num in that stream
  2100. map<int64_t, int64_t> stream_nodes_num;
  2101. for (auto &node : compute_graph_->GetAllNodes()) {
  2102. auto node_op_desc = node->GetOpDesc();
  2103. GE_IF_BOOL_EXEC(node_op_desc == nullptr, return);
  2104. int64_t stream_id = node_op_desc->GetStreamId();
  2105. if (node_op_desc->GetOpKernelLibName() != kEngineNameGeLocal) {
  2106. if (stream_nodes_num.find(stream_id) == stream_nodes_num.end()) {
  2107. stream_nodes_num.insert(std::make_pair(stream_id, 1));
  2108. } else {
  2109. ++stream_nodes_num[stream_id];
  2110. }
  2111. node_index_in_stream.insert(std::make_pair(node->GetName(), stream_nodes_num[stream_id] - 1));
  2112. MarkNodeDistanceAttr(compute_graph_, node, mem_block_visit_info, node_index_in_stream);
  2113. } else {
  2114. GELOGD("node[%s] is ge_local_op, no need to calculate distance.", node->GetName().c_str());
  2115. }
  2116. }
  2117. }
  2118. } // namespace ge

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