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.

block_mem_assigner.cc 64 kB

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623
  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/block_mem_assigner.h"
  17. #include <algorithm>
  18. #include <sstream>
  19. #include "external/ge/ge_api_types.h"
  20. #include "framework/common/debug/ge_log.h"
  21. #include "graph/anchor.h"
  22. #include "graph/buffer.h"
  23. #include "graph/ge_attr_value.h"
  24. #include "graph/ge_context.h"
  25. #include "graph/node.h"
  26. #include "graph/utils/graph_utils.h"
  27. #include "graph/utils/node_utils.h"
  28. #include "graph/utils/op_desc_utils.h"
  29. #include "graph/utils/tensor_utils.h"
  30. #include "graph/debug/ge_attr_define.h"
  31. #include "graph/common/local_context.h"
  32. #include "graph/optimize/common/params.h"
  33. #include "omg/omg_inner_types.h"
  34. #include "runtime/mem.h"
  35. using std::map;
  36. using std::set;
  37. using std::list;
  38. using std::pair;
  39. using std::string;
  40. using std::stringstream;
  41. using std::unordered_map;
  42. using std::unordered_set;
  43. using std::vector;
  44. namespace {
  45. const char *const kAttrNameWorkspaceReuseFlag = "workspace_reuse_flag";
  46. const char *const kL2FusionDynamicConvergeOp = "l2fusion_dynamic_converge_op";
  47. const char *const kOpNoReuseMem = "no_reuse_mem_flag";
  48. const char *const OP_NO_REUSE_MEM = "OP_NO_REUSE_MEM";
  49. const int kReuseMaxCount = 10;
  50. const int kReuseMaxOpNum = 10;
  51. const int kReuseMaxCharNum = 2000;
  52. } // namespace
  53. namespace ge {
  54. void AlignMemOffset(size_t &mem_align_size) {
  55. if (mem_align_size <= 0) {
  56. return;
  57. }
  58. mem_align_size = (mem_align_size + MEM_ALIGN_SIZE - 1) / MEM_ALIGN_SIZE * MEM_ALIGN_SIZE;
  59. }
  60. void MemoryBlock::SetHeadOffset(size_t offset) {
  61. head_offset_ = offset;
  62. size_t child_offset = head_offset_;
  63. for (auto block : child_blocks_) {
  64. if (block != nullptr) {
  65. block->SetHeadOffset(child_offset);
  66. child_offset += block->Size();
  67. }
  68. }
  69. }
  70. void MemoryBlock::SetTailOffset(size_t offset) {
  71. tail_offset_ = offset;
  72. size_t child_offset = head_offset_;
  73. for (auto block : child_blocks_) {
  74. if (block != nullptr) {
  75. child_offset += block->Size();
  76. block->SetTailOffset(child_offset - 1);
  77. }
  78. }
  79. }
  80. void MemoryBlock::Resize() {
  81. size_t child_block_size = 0;
  82. for (auto block : child_blocks_) {
  83. if (block != nullptr) {
  84. block->Resize();
  85. child_block_size += block->Size();
  86. }
  87. }
  88. auto iter = std::max_element(real_size_list_.begin(), real_size_list_.end());
  89. if (iter == real_size_list_.end()) {
  90. GELOGW("real_size_list_ is empty");
  91. return;
  92. } else {
  93. size_t block_size = (child_block_size > *iter) ? child_block_size : *iter;
  94. if ((block_size > 0) && (block_size % MEM_ALIGN_SIZE != 0)) {
  95. AlignMemOffset(block_size);
  96. }
  97. block_size_ = block_size;
  98. if (last_continuous_block_) {
  99. block_size_ += MEM_ALIGN_SIZE;
  100. }
  101. }
  102. }
  103. size_t MemoryBlock::AlignSize() const {
  104. size_t align_block_size = 0;
  105. auto iter = std::max_element(real_size_list_.begin(), real_size_list_.end());
  106. if (iter == real_size_list_.end()) {
  107. GELOGW("real_size_list_ is empty");
  108. } else {
  109. align_block_size = *iter;
  110. if ((align_block_size > 0) && (align_block_size % MEM_ALIGN_SIZE != 0)) {
  111. AlignMemOffset(align_block_size);
  112. }
  113. }
  114. return align_block_size;
  115. }
  116. bool MemoryBlock::IsSameLabel(std::string &first_batch_label) {
  117. if (node_type_index_list_.empty()) {
  118. return false;
  119. }
  120. auto node_op_desc = node_type_index_list_[0].node->GetOpDesc();
  121. if (node_op_desc == nullptr) {
  122. return false;
  123. }
  124. // not all op has ATTR_NAME_BATCH_LABEL, no need check return value, only check out parameter
  125. (void)ge::AttrUtils::GetStr(node_op_desc, ATTR_NAME_BATCH_LABEL, first_batch_label);
  126. if (first_batch_label.empty()) {
  127. return false;
  128. }
  129. bool all_same_label = true;
  130. for (size_t index = 1; index < node_type_index_list_.size(); ++index) {
  131. if (node_type_index_list_[index].node == nullptr) {
  132. continue;
  133. }
  134. std::string batch_label;
  135. auto index_op_desc = node_type_index_list_[index].node->GetOpDesc();
  136. GE_IF_BOOL_EXEC(index_op_desc == nullptr, continue);
  137. (void)ge::AttrUtils::GetStr(index_op_desc, ATTR_NAME_BATCH_LABEL, batch_label);
  138. if (first_batch_label != batch_label) {
  139. all_same_label = false;
  140. break;
  141. }
  142. }
  143. return all_same_label;
  144. }
  145. bool CanNotLifeReuse(MemoryBlock *block) {
  146. if ((block == nullptr) || !block->reuse_mem_ || block->deleted_block_) {
  147. return true;
  148. }
  149. return false;
  150. }
  151. void MemoryBlock::AddContinuousLifeReuseBlock(MemoryBlock *block, DependStreamLife &total_node_depend_stream_life) {
  152. // continuous memory case:only real_size is maximum can be reused and only one continuous memory in one block
  153. auto it_block = std::max_element(std::begin(block->NoAlignSizeList()), std::end(block->NoAlignSizeList()));
  154. auto it_this = std::max_element(std::begin(NoAlignSizeList()), std::end(NoAlignSizeList()));
  155. if (it_block != std::end(block->NoAlignSizeList()) && it_this != std::end(NoAlignSizeList())) {
  156. if ((continuous_block_ && block->continuous_block_) ||
  157. (continuous_block_ && (*it_this < *it_block)) || (block->continuous_block_ && (*it_this > *it_block))) {
  158. GELOGD("Conflict current block size:%zu continuous:%d, reuse block max size:%zu continuous:%d",
  159. *it_this, continuous_block_, *it_block, block->continuous_block_);
  160. return;
  161. }
  162. }
  163. MemoryBlock *parent = nullptr;
  164. MemoryBlock *child = nullptr;
  165. // merge small block to large block
  166. if (block->GetDependLifeBegin(stream_id_, total_node_depend_stream_life) > GetLifeEnd()) {
  167. if ((block->child_offset_ + AlignSize()) <= *it_block) {
  168. parent = block;
  169. child = this;
  170. }
  171. }
  172. if ((parent != nullptr) && (child != nullptr) && child->child_blocks_.empty()) {
  173. parent->child_blocks_.emplace_back(child);
  174. parent->child_offset_ += child->AlignSize();
  175. child->deleted_block_ = true;
  176. GELOGI("Add continuous block[%p size:%zu, stream id:%ld life time[begin:%zu, end:%zu]] to"
  177. " block[%p size:%zu, stream id:%ld, life time[begin:%zu, end:%zu]]", child, child->block_size_,
  178. child->stream_id_, child->GetLifeBegin(), child->GetLifeEnd(), parent, parent->block_size_,
  179. parent->stream_id_, parent->GetLifeBegin(), parent->GetLifeEnd());
  180. }
  181. }
  182. void MemoryBlock::AddLifeReuseBlock(MemoryBlock *block, DependStreamLife &total_node_depend_stream_life) {
  183. if (CanNotLifeReuse(this) || CanNotLifeReuse(block)) {
  184. return;
  185. }
  186. if (block->continuous_block_) {
  187. AddContinuousLifeReuseBlock(block, total_node_depend_stream_life);
  188. return;
  189. }
  190. MemoryBlock *parent = nullptr;
  191. MemoryBlock *child = nullptr;
  192. // merge small block to large block
  193. if (block->GetDependLifeBegin(stream_id_, total_node_depend_stream_life) > GetLifeEnd()) {
  194. if ((child_offset_ + block->AlignSize()) <= AlignSize()) {
  195. parent = this;
  196. child = block;
  197. } else if ((block->child_offset_ + AlignSize()) <= block->AlignSize()) {
  198. parent = block;
  199. child = this;
  200. }
  201. }
  202. if ((parent != nullptr) && (child != nullptr) && child->child_blocks_.empty()) {
  203. parent->child_blocks_.emplace_back(child);
  204. parent->child_offset_ += child->AlignSize();
  205. child->deleted_block_ = true;
  206. GELOGI("Add block[%p size:%zu, stream id:%ld life time[begin:%zu, end:%zu]] to"
  207. " block[%p size:%zu, stream id:%ld, life time[begin:%zu, end:%zu]]", child, child->block_size_,
  208. child->stream_id_, child->GetLifeBegin(), child->GetLifeEnd(), parent, parent->block_size_,
  209. parent->stream_id_, parent->GetLifeBegin(), parent->GetLifeEnd());
  210. }
  211. }
  212. size_t MemoryBlock::GetLifeBegin() {
  213. size_t life_time = 0;
  214. if (!node_type_index_list_.empty()) {
  215. if (node_type_index_list_.front().node != nullptr) {
  216. auto node_op_desc = node_type_index_list_.front().node->GetOpDesc();
  217. if (node_op_desc != nullptr) {
  218. life_time = node_op_desc->GetId();
  219. }
  220. }
  221. }
  222. return life_time;
  223. }
  224. /// |-stream 1-| |-stream 2-|
  225. /// |--block1--| |--block---|
  226. /// |--block2--| |--block---|
  227. /// |--block3--|\ |--block---|
  228. /// |--block---| \ |--block---|
  229. /// |--block---| \|--block---|
  230. /// |--block---| |--block7--|
  231. /// |--block---| |--block---|
  232. /// block7's first node's input node's life begin > block2's life end, block7 can reuse block1~block2
  233. size_t MemoryBlock::GetDependLifeBegin(int64_t stream_id, DependStreamLife &total_node_depend_stream_life) {
  234. AddDependLifeBegin(total_node_depend_stream_life);
  235. auto it = depend_stream_life_.find(stream_id);
  236. if (it == depend_stream_life_.end()) {
  237. return 0;
  238. }
  239. return it->second;
  240. }
  241. void AddDependLife(const ge::NodePtr &org_node, const ge::NodePtr &node, int64_t stream_id,
  242. std::map<int64_t, size_t> &depend_stream_life, DependStreamLife &total_node_depend_stream_life) {
  243. GE_CHECK_NOTNULL_EXEC(node, return);
  244. auto node_desc = node->GetOpDesc();
  245. GE_CHECK_NOTNULL_EXEC(node_desc, return);
  246. auto node_id = node_desc->GetId();
  247. auto stream_life = total_node_depend_stream_life.find(node_id);
  248. if (stream_life != total_node_depend_stream_life.end()) {
  249. for (auto &it : stream_life->second) {
  250. if (depend_stream_life.find(it.first) == depend_stream_life.end()) {
  251. depend_stream_life[it.first] = it.second;
  252. }
  253. }
  254. return;
  255. }
  256. for (const auto &in_anchor : node->GetAllInAnchors()) {
  257. GE_CHECK_NOTNULL_EXEC(in_anchor, continue);
  258. for (auto peer_out_anchor : in_anchor->GetPeerAnchors()) {
  259. GE_CHECK_NOTNULL_EXEC(peer_out_anchor, continue);
  260. auto peer_node = peer_out_anchor->GetOwnerNode();
  261. GE_CHECK_NOTNULL_EXEC(peer_node, continue);
  262. auto peer_node_desc = peer_node->GetOpDesc();
  263. GE_CHECK_NOTNULL_EXEC(peer_node_desc, continue);
  264. auto peer_node_stream_id = peer_node_desc->GetStreamId();
  265. if (peer_node_stream_id < 0) {
  266. continue;
  267. }
  268. size_t peer_node_life_time = peer_node_desc->GetId();
  269. auto it = depend_stream_life.find(peer_node_stream_id);
  270. if (it == depend_stream_life.end() || peer_node_life_time > it->second) {
  271. depend_stream_life[peer_node_stream_id] = peer_node_life_time;
  272. if (peer_node_stream_id != stream_id) {
  273. GELOGI("Node:%s stream id:%ld depend node:%s stream id:%ld index[%d] life time[%zu].",
  274. org_node->GetName().c_str(), stream_id, peer_node_desc->GetName().c_str(),
  275. peer_node_stream_id, peer_out_anchor->GetIdx(), peer_node_life_time);
  276. }
  277. AddDependLife(org_node, peer_node, stream_id, depend_stream_life, total_node_depend_stream_life);
  278. }
  279. }
  280. }
  281. // save on node to save next calculation
  282. for (auto &it : depend_stream_life) {
  283. if (total_node_depend_stream_life[node_id].find(it.first) == total_node_depend_stream_life[node_id].end()) {
  284. total_node_depend_stream_life[node_id][it.first] = it.second;
  285. }
  286. }
  287. }
  288. void MemoryBlock::AddDependLifeBegin(DependStreamLife &total_node_depend_stream_life) {
  289. if (!depend_stream_life_.empty()) {
  290. return;
  291. }
  292. if (!node_type_index_list_.empty()) {
  293. auto node = node_type_index_list_.front().node;
  294. if (node != nullptr) {
  295. AddDependLife(node, node, stream_id_, depend_stream_life_, total_node_depend_stream_life);
  296. }
  297. }
  298. depend_stream_life_[stream_id_] = GetLifeBegin();
  299. }
  300. size_t MemoryBlock::GetLifeEnd() {
  301. if (!node_type_index_list_.empty()) {
  302. return node_type_index_list_.back().life_time_end;
  303. }
  304. return kMaxLifeTime;
  305. }
  306. void MemoryBlock::SetLifeTimeEnd(size_t time) {
  307. if (!node_type_index_list_.empty()) {
  308. node_type_index_list_.back().life_time_end = time;
  309. }
  310. }
  311. void SetLastUsedInputMemAttr(NodePtr &node, int input_index) {
  312. if (node == nullptr) {
  313. return;
  314. }
  315. auto node_op_desc = node->GetOpDesc();
  316. if (node_op_desc != nullptr) {
  317. auto input_desc = node_op_desc->GetInputDesc(input_index);
  318. if (!ge::AttrUtils::SetInt(input_desc, ATTR_NAME_IS_END_OF_INPUTMEM_LIFECYCLE, true)) {
  319. GELOGW("Set %s input[%d] ATTR_NAME_IS_END_OF_INPUTMEM_LIFECYCLE to true failed.", node_op_desc->GetName().c_str(),
  320. input_index);
  321. return;
  322. }
  323. GELOGD("Set %s input[%d] ATTR_NAME_IS_END_OF_INPUTMEM_LIFECYCLE to true success.", node_op_desc->GetName().c_str(),
  324. input_index);
  325. if (node_op_desc->UpdateInputDesc(input_index, input_desc) != GRAPH_SUCCESS) {
  326. GELOGW("Update %s input[%d] desc failed.", node_op_desc->GetName().c_str(), input_index);
  327. }
  328. }
  329. }
  330. Status GetNoAlignSize(const ge::OpDesc &desc, uint32_t index, size_t &size) {
  331. // calculate tensor real size
  332. auto output_op_desc = desc.GetOutputDescPtr(index);
  333. if (output_op_desc == nullptr) {
  334. GELOGI("GetNoAlignSize failed. OpName: %s, OpType: %s, index: %d",
  335. desc.GetName().c_str(), desc.GetType().c_str(), index);
  336. return FAILED;
  337. }
  338. int64_t tensor_size = 0;
  339. GeShape shape = output_op_desc->GetShape();
  340. Format format = output_op_desc->GetFormat();
  341. DataType data_type = output_op_desc->GetDataType();
  342. graphStatus graph_status = TensorUtils::CalcTensorMemSize(shape, format, data_type, tensor_size);
  343. if (graph_status != GRAPH_SUCCESS) {
  344. GELOGE(graph_status, "CalcTensorMemSize failed!");
  345. return FAILED;
  346. }
  347. size = static_cast<size_t>(tensor_size);
  348. return SUCCESS;
  349. }
  350. string ToString(ge::NodeTypeIndex &x) {
  351. stringstream ss;
  352. ss << "[" << x.node->GetName() << "(" << x.node->GetType() << "), ";
  353. if (x.mem_type == kOutput) {
  354. ss << "Output, ";
  355. } else {
  356. ss << "Workspace, ";
  357. }
  358. ss << x.index << "]";
  359. return ss.str();
  360. }
  361. string MemoryBlock::String() {
  362. stringstream ss;
  363. ss << "Block size: " << Size() << " from " << HeadOffset() << " to " << TailOffset() << " ";
  364. ss << "real_size_list: " << ToString(real_size_list_) << " ";
  365. ss << "ref_count: " << ref_count_ << " ";
  366. ss << "members: ";
  367. for (auto x : NodeTypeIndexList()) {
  368. ss << "__node: " << ToString(x) << " ";
  369. }
  370. for (const auto& symbol : SymbolList()) {
  371. ss << "__symbol: " << symbol << " ";
  372. }
  373. return ss.str();
  374. }
  375. BlockMemAssigner::BlockMemAssigner(ComputeGraphPtr compute_graph, const map<string, string> &anchor_to_symbol,
  376. const map<string, list<NodeIndexIO>> &symbol_to_anchors)
  377. : mem_offset_(0), compute_graph_(std::move(compute_graph)), symbol_to_anchors_(symbol_to_anchors),
  378. anchor_to_symbol_(anchor_to_symbol), life_time_(0) {}
  379. BlockMemAssigner::~BlockMemAssigner() {
  380. GELOGD("blocks_store_ size : %lu", blocks_store_.size());
  381. for (MemoryBlock *memory_block : blocks_store_) {
  382. GE_DELETE_NEW_SINGLE(memory_block);
  383. }
  384. }
  385. void BlockMemAssigner::GetOutAndWorkSpaceMem(vector<int64_t> &all_memory_size) {
  386. vector<int64_t> temp;
  387. for (const NodePtr &n : compute_graph_->GetAllNodes()) {
  388. auto node_op_desc = n->GetOpDesc();
  389. GE_IF_BOOL_EXEC(node_op_desc == nullptr, continue);
  390. if (node_op_desc->GetType() == ATOMICADDRCLEAN) {
  391. atomic_addr_clean_id_ = node_op_desc->GetId();
  392. }
  393. for (auto &out_anchor : n->GetAllOutDataAnchors()) {
  394. GeTensorDesc output_desc = node_op_desc->GetOutputDesc(out_anchor->GetIdx());
  395. bool reuse_input = false;
  396. GE_IF_BOOL_EXEC(ge::TensorUtils::GetReuseInput(output_desc, reuse_input) != SUCCESS,
  397. GELOGI("Get reuse_input failed"));
  398. if (!reuse_input) {
  399. int64_t size = 0;
  400. GE_IF_BOOL_EXEC(ge::TensorUtils::GetSize(output_desc, size) != SUCCESS, GELOGI("Get size failed"));
  401. if (anchor_to_symbol_.empty()) {
  402. all_memory_size.emplace_back(size);
  403. } else {
  404. auto iter1 = anchor_to_symbol_.find(NodeIndexIO(n, out_anchor->GetIdx(), kOut).ToString());
  405. if (iter1 == anchor_to_symbol_.end()) {
  406. continue;
  407. }
  408. const std::string &symbol = iter1->second;
  409. auto iter2 = symbol_size_.find(symbol);
  410. if (iter2 == symbol_size_.end()) {
  411. symbol_size_[symbol] = size;
  412. } else if (size > static_cast<int64_t>(iter2->second)) {
  413. iter2->second = size;
  414. }
  415. }
  416. }
  417. }
  418. temp.clear();
  419. GetNodeWorkSpaceSize(n, temp);
  420. all_memory_size.insert(all_memory_size.end(), temp.begin(), temp.end());
  421. }
  422. GELOGI("The last atomic_addr_clean node id: %ld", atomic_addr_clean_id_);
  423. for (const auto &pair : symbol_size_) {
  424. all_memory_size.emplace_back(pair.second);
  425. }
  426. sort(all_memory_size.begin(), all_memory_size.end());
  427. GELOGI("All memory size: %s", ToString(all_memory_size).c_str());
  428. for (auto iter = all_memory_size.begin(); iter != all_memory_size.end();) {
  429. if (*iter == 0) {
  430. iter = all_memory_size.erase(iter);
  431. } else {
  432. ++iter;
  433. }
  434. }
  435. InitReuseFlag();
  436. PrintSymbolMap();
  437. }
  438. ///
  439. /// @ingroup domi
  440. /// @brief decide memory size based on actual input memory size
  441. /// @param [in] size actual memory size in need
  442. /// @param [in] ranges memory size provided
  443. /// @return size_t memory size to apply
  444. ///
  445. size_t GetBlockSize(size_t size, const vector<int64_t> &ranges) {
  446. for (int64_t x : ranges) {
  447. auto x_temp = static_cast<size_t>(x);
  448. if (size <= x_temp) {
  449. return x_temp;
  450. }
  451. }
  452. GELOGW("Memory needed size:%zu is beyond the biggest block in memory ranges.", size);
  453. return size;
  454. }
  455. bool IsDirectOutputNode(const NodePtr &node, int idx) {
  456. if ((node != nullptr) && (node->GetOpDesc() != nullptr) && (node->GetOpDesc()->GetType() == NETOUTPUT)) {
  457. GELOGI("This is netoutput node, the input node mem can not be reused");
  458. return true;
  459. }
  460. return false;
  461. }
  462. void AddReusableBlockCount(const MemoryBlock &mem_block, map<string, uint64_t> &reusable_block_counts) {
  463. string key = std::to_string(mem_block.Size());
  464. key += "_" + std::to_string(mem_block.stream_id_);
  465. auto it = reusable_block_counts.find(key);
  466. if (it != reusable_block_counts.end()) {
  467. it->second++;
  468. } else {
  469. reusable_block_counts[key] = 1;
  470. }
  471. }
  472. void ReduceReusableBlockCount(const MemoryBlock &mem_block, map<string, uint64_t> &reusable_block_counts) {
  473. string key = std::to_string(mem_block.Size());
  474. key += "_" + std::to_string(mem_block.stream_id_);
  475. auto it = reusable_block_counts.find(key);
  476. if (it != reusable_block_counts.end()) {
  477. if (it->second > 0) {
  478. it->second--;
  479. }
  480. }
  481. }
  482. bool CanReuseBySize(const map<string, uint64_t> &reusable_block_counts, const MemoryBlock &reusable_block,
  483. size_t block_size, size_t real_size, bool continuous) {
  484. bool can_reuse = false;
  485. if (reusable_block.Size() == block_size) {
  486. can_reuse = true;
  487. } else {
  488. string key = std::to_string(reusable_block.Size());
  489. key += "_" + std::to_string(reusable_block.stream_id_);
  490. auto it = reusable_block_counts.find(key);
  491. GE_IF_BOOL_EXEC((it != reusable_block_counts.end() && (it->second > kReuseMaxCount)) &&
  492. (reusable_block.Size() > block_size),
  493. can_reuse = true;
  494. GELOGD("Less size mem reuse, reuse block size:%zu, current block size:%zu",
  495. reusable_block.Size(), block_size););
  496. }
  497. return can_reuse;
  498. }
  499. bool BlockMemAssigner::IsOutNodeSetContinuousInput(const NodePtr &n, uint32_t out_index, std::string &peer_name,
  500. uint32_t &peer_input_index, bool &no_need_assign_memory) {
  501. if (n == nullptr || n->GetAllOutDataAnchors().size() <= 0) {
  502. return false;
  503. }
  504. if (static_cast<size_t>(out_index) < n->GetAllOutDataAnchors().size()) {
  505. auto out_anchor = n->GetOutDataAnchor(out_index);
  506. GE_IF_BOOL_EXEC(out_anchor == nullptr,
  507. GELOGE(FAILED, "Node[%s] output[%u] anchor is null.", n->GetName().c_str(), out_index);
  508. return false;);
  509. for (auto const &peer_in_anchor : out_anchor->GetPeerInDataAnchors()) {
  510. GE_IF_BOOL_EXEC(peer_in_anchor == nullptr,
  511. GELOGE(FAILED, "Node[%s] output[%u] peer_in_anchor 0 is null.", n->GetName().c_str(), out_index);
  512. return false;);
  513. auto peer_node = peer_in_anchor->GetOwnerNode();
  514. GE_IF_BOOL_EXEC(peer_node == nullptr,
  515. GELOGE(FAILED, "Node[%s] output[%u] node is null.", n->GetName().c_str(), out_index);
  516. return false;);
  517. // Get the continuous input type of the node, default is false
  518. bool is_input_continuous = false;
  519. auto peer_in_node_desc = peer_node->GetOpDesc();
  520. GE_IF_BOOL_EXEC(peer_in_node_desc == nullptr,
  521. GELOGE(FAILED, "Node[%s] output[%u] nodedesc is null.", n->GetName().c_str(), out_index);
  522. return false;);
  523. // If GetBool fail, is_input_continuous is false.
  524. (void)ge::AttrUtils::GetBool(peer_in_node_desc, ATTR_NAME_CONTINUOUS_INPUT, is_input_continuous);
  525. GE_IF_BOOL_EXEC(is_input_continuous && CheckIsZeroMemNodeType(peer_node->GetType()),
  526. GELOGI("Node[%s] output[%u] no_need_assign_memory.", n->GetName().c_str(), out_index);
  527. no_need_assign_memory = true;
  528. return false;);
  529. if (is_input_continuous) {
  530. if (n->GetOwnerComputeGraph() != nullptr) {
  531. string graph_name = n->GetOwnerComputeGraph()->GetName();
  532. GELOGI("%s name[%s] output[%u] node[%s] set input[%d] continuous, input size[%u].", graph_name.c_str(),
  533. n->GetName().c_str(), out_index, peer_in_node_desc->GetName().c_str(), peer_in_anchor->GetIdx(),
  534. peer_node->GetAllInDataAnchorsSize());
  535. // Only set attr one times.
  536. if (node_continuous_input_blocks_[peer_in_node_desc->GetName()].size() == 0) {
  537. (void)ge::AttrUtils::SetBool(peer_in_node_desc, ATTR_NAME_CONTINUOUS_INPUT_ALLOC, true);
  538. node_continuous_input_counts_[peer_in_node_desc->GetName()] = peer_node->GetAllInDataAnchorsSize();
  539. }
  540. peer_input_index = peer_in_anchor->GetIdx();
  541. peer_name = peer_in_node_desc->GetName();
  542. return true;
  543. }
  544. }
  545. }
  546. }
  547. return false;
  548. }
  549. ///
  550. /// @ingroup GE
  551. /// @brief Check pre_reuse flag & post_reuse glag for each symbol
  552. /// @return void
  553. ///
  554. void BlockMemAssigner::InitReuseFlag() {
  555. static const std::set<std::string> kPreReuseTypes = { ge::DATA_TYPE, ge::AIPP_DATA_TYPE, ge::ANN_DATA_TYPE,
  556. ge::NETOUTPUT, ge::PROPOSAL, ge::ZEROSLIKE,
  557. ge::CONSTANT, ge::CONSTANTOP };
  558. static const std::set<std::string> kPostReuseTypes = { ge::DATA_TYPE, ge::AIPP_DATA_TYPE, ge::ENTER, ge::REFENTER,
  559. ge::NEXTITERATION, ge::REFNEXTITERATION };
  560. for (const auto &pair : symbol_to_anchors_) {
  561. std::string symbol = pair.first;
  562. bool pre_reuse_flag = true;
  563. bool post_reuse_flag = true;
  564. for (const auto &node_index_io : pair.second) {
  565. if (node_index_io.io_type_ == kIn) {
  566. continue;
  567. }
  568. OutDataAnchorPtr out_anchor = node_index_io.node_->GetOutDataAnchor(node_index_io.index_);
  569. if (out_anchor == nullptr) {
  570. continue;
  571. }
  572. bool out_flg = false;
  573. if (node_index_io.node_->GetOutDataNodes().empty()) {
  574. out_flg = true;
  575. }
  576. for (const auto &in_anchor : out_anchor->GetPeerInDataAnchors()) {
  577. if (IsDirectOutputNode(in_anchor->GetOwnerNode(), in_anchor->GetIdx())) {
  578. out_flg = true;
  579. break;
  580. }
  581. }
  582. const std::string &type = out_anchor->GetOwnerNode()->GetType();
  583. pre_reuse_flag = pre_reuse_flag && !out_flg && (kPreReuseTypes.count(type) == 0);
  584. post_reuse_flag = post_reuse_flag && (kPostReuseTypes.count(type) == 0);
  585. if (!pre_reuse_flag && !post_reuse_flag) {
  586. break;
  587. }
  588. }
  589. pre_reuse_flag_[symbol] = pre_reuse_flag;
  590. post_reuse_flag_[symbol] = post_reuse_flag;
  591. }
  592. }
  593. ///
  594. /// @ingroup GE
  595. /// @brief get pre_reuse flag
  596. /// @param [in] node
  597. /// @param [in] out_index
  598. /// @return bool
  599. ///
  600. bool BlockMemAssigner::IsPreReuse(const NodePtr &node, uint32_t out_index) const {
  601. OutDataAnchorPtr out_data_anchor = nullptr;
  602. if (static_cast<size_t>(out_index) < node->GetAllOutDataAnchors().size()) {
  603. out_data_anchor = node->GetOutDataAnchor(out_index);
  604. }
  605. if (out_data_anchor == nullptr) {
  606. return false;
  607. }
  608. NodeIndexIO cur_node_index_io(out_data_anchor->GetOwnerNode(), out_data_anchor->GetIdx(), kOut);
  609. auto iter1 = anchor_to_symbol_.find(cur_node_index_io.ToString());
  610. if (iter1 == anchor_to_symbol_.end()) {
  611. return false;
  612. }
  613. const std::string &symbol = iter1->second;
  614. auto iter2 = pre_reuse_flag_.find(symbol);
  615. if (iter2 == pre_reuse_flag_.end()) {
  616. return false;
  617. }
  618. return iter2->second;
  619. }
  620. ///
  621. /// @ingroup GE
  622. /// @brief get post_reuse flag
  623. /// @param [in] mem_block
  624. /// @return bool
  625. ///
  626. bool BlockMemAssigner::IsPostReuse(const MemoryBlock *mem_block) const {
  627. if (mem_block == nullptr) {
  628. return false;
  629. }
  630. for (const auto &symbol : mem_block->SymbolList()) {
  631. auto iter = post_reuse_flag_.find(symbol);
  632. if (iter == post_reuse_flag_.end()) {
  633. continue;
  634. }
  635. if (!iter->second) {
  636. return false;
  637. }
  638. }
  639. return true;
  640. }
  641. ///
  642. /// @ingroup GE
  643. /// @brief check if symbol of cur node_index_io has block
  644. /// @param [in] node_index_io
  645. /// @param [out] symbol
  646. /// @return bool
  647. ///
  648. bool BlockMemAssigner::IsSymbolExist(const NodeIndexIO &node_index_io, string &symbol) {
  649. auto iter = anchor_to_symbol_.find(node_index_io.ToString());
  650. if (iter == anchor_to_symbol_.end()) {
  651. return false;
  652. }
  653. symbol = iter->second;
  654. return symbol_blocks_.find(iter->second) != symbol_blocks_.end();
  655. }
  656. ///
  657. /// @ingroup GE
  658. /// @brief Print symbol
  659. /// @return void
  660. ///
  661. void BlockMemAssigner::PrintSymbolMap() {
  662. for (const auto &pair : symbol_to_anchors_) {
  663. GELOGD("symbol=%s, max_size=%zu, pre_reuse=%s, post_reuse=%s", pair.first.c_str(), symbol_size_[pair.first],
  664. pre_reuse_flag_[pair.first] ? "true" : "false", post_reuse_flag_[pair.first] ? "true" : "false");
  665. for (const auto &node_index_io : pair.second) {
  666. GELOGD("anchor:%s", node_index_io.ToString().c_str());
  667. }
  668. }
  669. }
  670. bool BlockMemAssigner::IsContinuousOutput(const NodePtr &n) {
  671. if (n == nullptr) {
  672. GELOGE(FAILED, "Node is null.");
  673. return false;
  674. }
  675. // Get the continuous output type of the node, default is false
  676. bool is_output_continuous = false;
  677. auto node_desc = n->GetOpDesc();
  678. if (node_desc == nullptr) {
  679. GELOGE(FAILED, "Node[%s] nodedesc is null.", n->GetName().c_str());
  680. return false;
  681. }
  682. // If GetBool fail, is_output_continuous is false.
  683. (void)ge::AttrUtils::GetBool(node_desc, ATTR_NAME_CONTINUOUS_OUTPUT, is_output_continuous);
  684. if (is_output_continuous) {
  685. if (n->GetOwnerComputeGraph() != nullptr) {
  686. string graph_name = n->GetOwnerComputeGraph()->GetName();
  687. GELOGI("%s name[%s] set continuous, output size[%u].", graph_name.c_str(),
  688. n->GetName().c_str(), n->GetAllOutDataAnchorsSize());
  689. return true;
  690. }
  691. }
  692. return false;
  693. }
  694. bool BlockMemAssigner::IsZeroCopyBlock(const NodePtr &node, bool continuous) {
  695. if (NodeUtils::IsDynamicShape(node)) {
  696. return ((node->GetType() == DATA_TYPE) && !continuous) || (node->GetType() == NETOUTPUT);
  697. }
  698. if ((node->GetType() == DATA_TYPE) && !continuous) {
  699. return !node->GetOpDesc()->HasAttr(ATTR_NAME_PARENT_NODE_INDEX);
  700. }
  701. if (node->GetType() == NETOUTPUT) {
  702. const auto &owner = node->GetOwnerComputeGraph();
  703. return owner->GetParentGraph() == nullptr;
  704. }
  705. return false;
  706. }
  707. MemoryBlock *BlockMemAssigner::ApplyMemory(size_t block_size, size_t real_size, size_t no_align_size,
  708. MemoryType mem_type, const NodePtr &n, uint32_t out_index,
  709. const vector<bool> &workspace_reuse_flag, const bool is_op_reuse_mem,
  710. const bool continuous) {
  711. GE_CHK_BOOL_TRUE_EXEC_WITH_LOG(n == nullptr, return nullptr, "Input parameter n is null.");
  712. auto node_op_desc = n->GetOpDesc();
  713. GE_IF_BOOL_EXEC(node_op_desc == nullptr, return nullptr);
  714. bool is_reuse_memory = false;
  715. string ge_disable_reuse_mem_env = "0";
  716. (void)ge::GetContext().GetOption(OPTION_EXEC_DISABLE_REUSED_MEMORY, ge_disable_reuse_mem_env);
  717. if (ge_disable_reuse_mem_env != "1") {
  718. bool reuse_mem_flag = !((workspace_reuse_flag.size() > out_index) && !workspace_reuse_flag[out_index]);
  719. is_reuse_memory = !node_op_desc->HasAttr(kL2FusionDynamicConvergeOp) &&
  720. !node_op_desc->HasAttr(kOpNoReuseMem) &&
  721. reuse_mem_flag &&
  722. is_op_reuse_mem &&
  723. (IsPreReuse(n, out_index));
  724. auto stream_id = node_op_desc->GetStreamId();
  725. if (is_reuse_memory && !continuous) {
  726. for (auto it = reusable_blocks_[stream_id].begin(); it != reusable_blocks_[stream_id].end(); ++it) {
  727. MemoryBlock *reusable_block = *it;
  728. if (!IsPostReuse(reusable_block)) {
  729. reusable_block->reuse_mem_ = false;
  730. GELOGI("Unreusable block.");
  731. continue;
  732. }
  733. // A node can reuse blocks of the same stream and preorder streams
  734. if (CanReuseBySize(reusable_block_counts_, *reusable_block, block_size, real_size, continuous)) {
  735. reusable_block->AddNodeTypeIndex({n, mem_type, out_index, false}, real_size, no_align_size);
  736. if (mem_type == kOutput) {
  737. auto iter = anchor_to_symbol_.find(NodeIndexIO(n, out_index, kOut).ToString());
  738. if (iter != anchor_to_symbol_.end()) {
  739. reusable_block->AddSymbol(iter->second);
  740. }
  741. }
  742. reusable_block->continuous_block_ = continuous;
  743. reusable_block->ref_count_++;
  744. ReduceReusableBlockCount(*reusable_block, reusable_block_counts_);
  745. reusable_blocks_[stream_id].erase(it);
  746. return reusable_block;
  747. }
  748. }
  749. }
  750. }
  751. auto block = new (std::nothrow) MemoryBlock(block_size, node_op_desc->GetStreamId(), is_reuse_memory);
  752. GE_CHK_BOOL_TRUE_EXEC_WITH_LOG(block == nullptr, return nullptr, "new an object failed.");
  753. // Data and netoutput need zero copy block
  754. block->is_zero_copy_ = IsZeroCopyBlock(n, continuous);
  755. block->Init(real_size, mem_type, n, out_index, no_align_size);
  756. block->stream_id_ = node_op_desc->GetStreamId();
  757. block->ref_count_++;
  758. block->continuous_block_ = continuous;
  759. if (mem_type == kOutput) {
  760. auto iter = anchor_to_symbol_.find(NodeIndexIO(n, out_index, kOut).ToString());
  761. if (iter != anchor_to_symbol_.end()) {
  762. block->AddSymbol(iter->second);
  763. }
  764. }
  765. memory_blocks_.emplace_back(block);
  766. // cause memory_blocks_ may reduce when swap after,
  767. // create blocks_store_ to assure blocks deleted finally
  768. blocks_store_.emplace_back(block);
  769. return block;
  770. }
  771. MemoryBlock *BlockMemAssigner::ApplyContinuousMemory(const NodePtr &n, const vector<int64_t> &ranges,
  772. const bool is_op_reuse_mem) {
  773. GE_CHK_BOOL_TRUE_EXEC_WITH_LOG(n == nullptr, return nullptr, "input node is null.");
  774. auto node_op_desc = n->GetOpDesc();
  775. GE_CHK_BOOL_TRUE_EXEC_WITH_LOG(node_op_desc == nullptr, return nullptr, "node_op_desc is null.");
  776. MemoryBlock *block = nullptr;
  777. int64_t total_size = 0;
  778. for (uint32_t index = 0; index < static_cast<uint32_t>(node_op_desc->GetOutputsSize()); index++) {
  779. auto output_op_desc = node_op_desc->GetOutputDescPtr(index);
  780. if (output_op_desc == nullptr) {
  781. return nullptr;
  782. }
  783. int64_t size = 0;
  784. if (ge::TensorUtils::GetSize(*output_op_desc, size) != SUCCESS) {
  785. GELOGI("Get size failed");
  786. return nullptr;
  787. }
  788. size_t align_size = static_cast<size_t>(size);
  789. AlignMemOffset(align_size);
  790. total_size += align_size;
  791. // only apply total size in first block
  792. if (index != 0) {
  793. zero_memory_list_.emplace_back(n, kOutput, index);
  794. }
  795. }
  796. auto block_size = GetBlockSize(total_size, ranges);
  797. GELOGI("Node[%s] continuous out memory size[%ld] block size[%zu]", node_op_desc->GetName().c_str(),
  798. total_size, block_size);
  799. vector<bool> workspace_reuse_flag;
  800. block = ApplyMemory(block_size, total_size, total_size, kOutput, n, 0, workspace_reuse_flag, is_op_reuse_mem, true);
  801. if (block != nullptr) {
  802. // hccl task need align header and tail
  803. block->first_continuous_block_ = true;
  804. block->last_continuous_block_ = true;
  805. }
  806. return block;
  807. }
  808. MemoryBlock *BlockMemAssigner::ApplyOutMemory(const NodePtr &n, uint32_t index, const vector<int64_t> &ranges,
  809. const bool is_op_reuse_mem, const bool continuous) {
  810. GE_CHK_BOOL_TRUE_EXEC_WITH_LOG(n == nullptr, return nullptr, "input node is null.");
  811. auto node_op_desc = n->GetOpDesc();
  812. GE_CHK_BOOL_TRUE_EXEC_WITH_LOG(node_op_desc == nullptr, return nullptr, "node_op_desc is null.");
  813. MemoryBlock *block = nullptr;
  814. NodeIndexIO node_index_io(n, index, kOut);
  815. int64_t size = 0;
  816. auto output_op_desc = node_op_desc->GetOutputDescPtr(index);
  817. if (output_op_desc != nullptr) {
  818. GE_IF_BOOL_EXEC(ge::TensorUtils::GetSize(*output_op_desc, size) != SUCCESS, GELOGI("Get size failed"));
  819. }
  820. size_t no_align_size = 0;
  821. GE_CHK_BOOL_TRUE_EXEC_WITH_LOG(GetNoAlignSize(*node_op_desc, index, no_align_size) != SUCCESS,
  822. return nullptr, "Get no align size failed");
  823. std::string symbol;
  824. if (IsSymbolExist(node_index_io, symbol)) {
  825. block = symbol_blocks_[symbol];
  826. block->AddNodeTypeIndex({n, kOutput, index, true}, size, no_align_size);
  827. block->ref_count_++;
  828. } else {
  829. int64_t max_size = size;
  830. auto iter1 = anchor_to_symbol_.find(node_index_io.ToString());
  831. if (iter1 != anchor_to_symbol_.end()) {
  832. auto iter2 = symbol_size_.find(iter1->second);
  833. if (iter2 != symbol_size_.end()) {
  834. max_size = iter2->second;
  835. }
  836. }
  837. auto block_size = GetBlockSize(max_size, ranges);
  838. vector<bool> workspace_reuse_flag;
  839. block = ApplyMemory(block_size, size, no_align_size, kOutput, n, index,
  840. workspace_reuse_flag, is_op_reuse_mem, continuous);
  841. }
  842. GE_CHK_BOOL_TRUE_EXEC_WITH_LOG(block == nullptr, return nullptr, "Block is nullptr.");
  843. int out_count_reuse_input = block->ref_count_;
  844. int out_count = 0;
  845. GE_IF_BOOL_EXEC(index >= n->GetAllOutDataAnchors().size(), GELOGE(FAILED, "index is out of range."); return nullptr);
  846. auto out_data_anchor = n->GetOutDataAnchor(index);
  847. GE_IF_BOOL_EXEC(out_data_anchor == nullptr, GELOGE(FAILED, "Out data anchor is nullptr."); return nullptr);
  848. for (const auto &in_anchor : out_data_anchor->GetPeerInDataAnchors()) {
  849. auto owner_node = in_anchor->GetOwnerNode();
  850. auto op_desc = owner_node->GetOpDesc();
  851. GE_IF_BOOL_EXEC(op_desc == nullptr, continue);
  852. Params *instance = Params::Instance();
  853. GE_CHK_BOOL_TRUE_EXEC_WITH_LOG(instance == nullptr, return nullptr, "Params instance is nullptr.");
  854. if (!((instance->GetTarget() == TARGET_TYPE_TINY) && (op_desc->GetType() == NETOUTPUT))) {
  855. out_count++;
  856. }
  857. }
  858. bool reuse_input = false;
  859. for (const auto &in_anchor : out_data_anchor->GetPeerInDataAnchors()) {
  860. auto owner_node = in_anchor->GetOwnerNode();
  861. GE_IF_BOOL_EXEC(owner_node == nullptr, continue);
  862. auto op_desc = owner_node->GetOpDesc();
  863. GE_IF_BOOL_EXEC(op_desc == nullptr, continue);
  864. for (uint32_t i = 0; i < static_cast<uint32_t>(op_desc->GetOutputsSize()); i++) {
  865. bool dst_reuse_input = false;
  866. uint32_t dst_reuse_input_index = 0;
  867. auto owner_node_op_desc = op_desc->GetOutputDescPtr(i);
  868. GE_IF_BOOL_EXEC(owner_node_op_desc == nullptr, continue);
  869. GE_IF_BOOL_EXEC(ge::TensorUtils::GetReuseInput(*owner_node_op_desc, dst_reuse_input) != SUCCESS,
  870. GELOGI("Get dst_reuse_input failed"));
  871. GE_IF_BOOL_EXEC(ge::TensorUtils::GetReuseInputIndex(*owner_node_op_desc, dst_reuse_input_index) != SUCCESS,
  872. GELOGI("Get dst_reuse_input_index failed"));
  873. if (dst_reuse_input && (dst_reuse_input_index == static_cast<uint32_t>(in_anchor->GetIdx()))) {
  874. block->AddNodeTypeIndex({owner_node, kOutput, i, true}, block->Size(), block->Size());
  875. out_count_reuse_input += 1;
  876. reuse_input = true;
  877. }
  878. }
  879. }
  880. block->ref_count_ = reuse_input ? out_count_reuse_input + out_count - 1 : out_count;
  881. return block;
  882. }
  883. bool IsOutputBlock(const ge::InDataAnchorPtr &in_data_anchor) {
  884. auto peer_out_anchor = in_data_anchor->GetPeerOutAnchor();
  885. GE_IF_BOOL_EXEC(peer_out_anchor == nullptr, GELOGE(FAILED, "Peer out anchor is nullptr."); return false);
  886. auto src = peer_out_anchor->GetOwnerNode();
  887. int32_t index = peer_out_anchor->GetIdx();
  888. auto iter = GetLocalOmgContext().out_nodes_map.find(src->GetName());
  889. if (iter != GetLocalOmgContext().out_nodes_map.end()) {
  890. for (auto id : iter->second) {
  891. if (index == id) {
  892. return true;
  893. }
  894. }
  895. }
  896. return false;
  897. }
  898. // atomic out memory will be reassigned
  899. bool IsAtomicOutputMemory(const ge::NodePtr &node, uint32_t output_index, bool is_atomic,
  900. bool out_node_set_continuous_input) {
  901. auto op_desc = node->GetOpDesc();
  902. if (op_desc == nullptr) {
  903. return false;
  904. }
  905. vector<int64_t> atomic_output_index;
  906. // If GetListInt fail, atomic_output_index is empty.
  907. (void)ge::AttrUtils::GetListInt(op_desc, ATOMIC_ATTR_OUTPUT_INDEX, atomic_output_index);
  908. if (!out_node_set_continuous_input && is_atomic) {
  909. for (auto &index : atomic_output_index) {
  910. if (static_cast<uint32_t>(index) == output_index) {
  911. if (node->GetOwnerComputeGraph() != nullptr) {
  912. string graph_name = node->GetOwnerComputeGraph()->GetName();
  913. GELOGD("[IMAS]Atomic no assign %s name[%s] output[%d] streamid[%ld].", graph_name.c_str(),
  914. op_desc->GetName().c_str(), index, op_desc->GetStreamId());
  915. }
  916. return true;
  917. }
  918. }
  919. }
  920. return false;
  921. }
  922. bool IsKnownSubgraphData(const NodePtr &node) {
  923. if (NodeUtils::IsDynamicShape(node)) {
  924. return false;
  925. }
  926. return node->GetOpDesc()->HasAttr(ATTR_NAME_PARENT_NODE_INDEX);
  927. }
  928. void BlockMemAssigner::ReleaseMemory(MemoryBlock *to_release, vector<MemoryBlock *> &reusable_memory) {
  929. GE_CHK_BOOL_TRUE_EXEC_WITH_LOG(to_release == nullptr, return, "Input parameter to_release is null.");
  930. GE_CHK_TRUE_EXEC_INFO(to_release->ref_count_ <= 0, return, "Release memory");
  931. GE_CHK_TRUE_EXEC_INFO(!to_release->reuse_mem_, return, "doesn't reuse memory");
  932. --to_release->ref_count_;
  933. if (to_release->ref_count_ == 0) {
  934. to_release->SetLifeTimeEnd(life_time_);
  935. reusable_memory.emplace_back(to_release);
  936. AddReusableBlockCount(*to_release, reusable_block_counts_);
  937. }
  938. }
  939. void BlockMemAssigner::ReleaseMemorys(const vector<MemoryBlock *> &to_releases,
  940. vector<MemoryBlock *> &reusable_memory) {
  941. for (auto mem_block : to_releases) {
  942. ReleaseMemory(mem_block, reusable_memory);
  943. }
  944. }
  945. void BlockMemAssigner::ReleaseInputNodeOutMemory(const unordered_map<string, vector<MemoryBlock *>> &node_out_blocks,
  946. vector<MemoryBlock *> &reusable_memory, NodePtr &node) {
  947. for (const auto &in_anchor : node->GetAllInDataAnchors()) {
  948. if ((in_anchor->GetPeerOutAnchor() == nullptr) ||
  949. (in_anchor->GetPeerOutAnchor()->GetOwnerNode()->GetOpDesc() == nullptr) || (node->GetOpDesc() == nullptr)) {
  950. return;
  951. }
  952. GE_IF_BOOL_EXEC(IsOutputBlock(in_anchor), continue);
  953. auto node_name = in_anchor->GetPeerOutAnchor()->GetOwnerNode()->GetName();
  954. GE_IF_BOOL_EXEC((in_anchor->GetPeerOutAnchor()->GetOwnerNode()->GetType() == CONSTANT) ||
  955. (in_anchor->GetPeerOutAnchor()->GetOwnerNode()->GetType() == FASTRCNNPREDICTIONS) ||
  956. (in_anchor->GetPeerOutAnchor()->GetOwnerNode()->GetType() == CONSTANTOP),
  957. continue);
  958. auto it = node_out_blocks.find(node_name);
  959. if (it == node_out_blocks.end()) {
  960. continue;
  961. }
  962. for (auto block : it->second) {
  963. const vector<NodeTypeIndex> &node_type_indexs = block->NodeTypeIndexList();
  964. if (node_type_indexs.empty()) {
  965. continue;
  966. }
  967. GELOGD("node_type_indexs: %d, %s", node_type_indexs.back().index,
  968. node_type_indexs.back().node->GetName().c_str());
  969. if ((node_type_indexs.back().node == in_anchor->GetPeerOutAnchor()->GetOwnerNode()) &&
  970. (node_type_indexs.back().index == static_cast<uint32_t>(in_anchor->GetPeerOutAnchor()->GetIdx())) &&
  971. (node->GetOpDesc()->GetStreamId() == block->stream_id_)) {
  972. ReleaseMemory(block, reusable_memory);
  973. if (block->ref_count_ == 0) {
  974. SetLastUsedInputMemAttr(node, in_anchor->GetIdx());
  975. }
  976. }
  977. }
  978. }
  979. }
  980. void SplitStringByComma(const string &str, vector<string> &sub_str_vec) {
  981. std::string tmp_string = str + ",";
  982. std::string::size_type start_pos = 0;
  983. std::string::size_type cur_pos = tmp_string.find(',', 0);
  984. while (cur_pos != std::string::npos) {
  985. std::string sub_str = tmp_string.substr(start_pos, cur_pos - start_pos);
  986. if (!sub_str.empty()) {
  987. vector<string>::iterator ret = std::find(sub_str_vec.begin(), sub_str_vec.end(), sub_str);
  988. if (ret == sub_str_vec.end()) {
  989. sub_str_vec.push_back(sub_str);
  990. }
  991. }
  992. start_pos = cur_pos + 1;
  993. cur_pos = tmp_string.find(',', start_pos);
  994. }
  995. }
  996. void CheckAndGetOpReuseEnv(const string &env, vector<string> &env_vec, bool &op_reuse_env_valid) {
  997. string env_str;
  998. env_str = string(env);
  999. if (env_str.size() > kReuseMaxCharNum) {
  1000. GELOGE(FAILED, "The OP_NO_REUSE_MEM has more than %d characters.", kReuseMaxCharNum);
  1001. return;
  1002. }
  1003. SplitStringByComma(env_str, env_vec);
  1004. if (env_vec.size() > kReuseMaxOpNum) {
  1005. GELOGE(FAILED, "The OP_NO_REUSE_MEM has more than %d nodes.", kReuseMaxOpNum);
  1006. return;
  1007. }
  1008. op_reuse_env_valid = true;
  1009. return;
  1010. }
  1011. Status BlockMemAssigner::AssignOutputMemoryWithReuse(const NodePtr &node, vector<int64_t> &ranges) {
  1012. auto op_desc = node->GetOpDesc();
  1013. int64_t stream_id = op_desc->GetStreamId();
  1014. vector<int64_t> memorys_type;
  1015. bool has_mem_type_attr = ge::AttrUtils::GetListInt(op_desc, ATTR_NAME_OUTPUT_MEM_TYPE_LIST, memorys_type);
  1016. GELOGI("Assign memory node[%s], output size[%d], output memory type size[%d]", op_desc->GetName().c_str(),
  1017. op_desc->GetOutputsSize(), memorys_type.size());
  1018. if (has_mem_type_attr && (memorys_type.size() != op_desc->GetOutputsSize())) {
  1019. GELOGE(INTERNAL_ERROR, "fusion: node[%s], output memory size err[outputsize:%zu, memorysize:%zu]",
  1020. op_desc->GetName().c_str(), op_desc->GetOutputsSize(), memorys_type.size());
  1021. return INTERNAL_ERROR;
  1022. }
  1023. is_op_reuse_mem_ = true;
  1024. if (op_reuse_env_valid_ == true) {
  1025. vector<string>::iterator it_name =
  1026. std::find(op_no_reuse_mem_vec_.begin(), op_no_reuse_mem_vec_.end(), op_desc->GetName());
  1027. vector<string>::iterator it_type =
  1028. std::find(op_no_reuse_mem_vec_.begin(), op_no_reuse_mem_vec_.end(), op_desc->GetType());
  1029. GE_IF_BOOL_EXEC(it_name != op_no_reuse_mem_vec_.end() || it_type != op_no_reuse_mem_vec_.end(),
  1030. is_op_reuse_mem_ = false;);
  1031. }
  1032. bool is_atomic = false;
  1033. // If GetBool fail, is_atomic is false.
  1034. (void)ge::AttrUtils::GetBool(op_desc, ATOMIC_ATTR_IS_ATOMIC_NODE, is_atomic);
  1035. // Allocate memory for the current node and release node memory of the same size in the workspace
  1036. GE_IF_BOOL_EXEC(ge_disable_reuse_mem_env_ != "1",
  1037. ReleaseMemorys(stream_workspace_blocks_[stream_id], reusable_blocks_[stream_id]));
  1038. if (IsContinuousOutput(node)) {
  1039. (void)ApplyContinuousMemory(node, ranges, is_op_reuse_mem_);
  1040. return SUCCESS;
  1041. }
  1042. for (uint32_t i = 0; i < static_cast<uint32_t>(op_desc->GetOutputsSize()); i++) {
  1043. int64_t size = 0;
  1044. auto output_op_desc = op_desc->GetOutputDescPtr(i);
  1045. if (output_op_desc != nullptr) {
  1046. GE_IF_BOOL_EXEC(ge::TensorUtils::GetSize(*output_op_desc, size) != SUCCESS, GELOGI("Get size failed"));
  1047. }
  1048. // fusion: other type's size not means malloc HBM memory
  1049. bool l1_flag = has_mem_type_attr && memorys_type[i] == RT_MEMORY_L1;
  1050. if (l1_flag) {
  1051. GELOGI("fusion: node[%s], output[%s], output memory type [%d]",
  1052. op_desc->GetName().c_str(), op_desc->GetOutputNameByIndex(i).c_str(), memorys_type[i]);
  1053. size = 0;
  1054. }
  1055. std::string peer_name;
  1056. uint32_t peer_input_index = 0;
  1057. bool out_node_set_continuous_input = false;
  1058. bool no_need_assign_memory = ((size == 0) || CheckIsZeroMemNodeType(node->GetType()));
  1059. if (!no_need_assign_memory) {
  1060. out_node_set_continuous_input =
  1061. IsOutNodeSetContinuousInput(node, i, peer_name, peer_input_index, no_need_assign_memory);
  1062. GE_IF_BOOL_EXEC(!no_need_assign_memory,
  1063. no_need_assign_memory = IsAtomicOutputMemory(node, i, is_atomic, out_node_set_continuous_input););
  1064. }
  1065. no_need_assign_memory = (no_need_assign_memory || IsKnownSubgraphData(node));
  1066. if (no_need_assign_memory) {
  1067. zero_memory_list_.emplace_back(node, kOutput, i, false);
  1068. continue;
  1069. }
  1070. // atomic can't be reused
  1071. bool need_change = is_op_reuse_mem_ && out_node_set_continuous_input && is_atomic;
  1072. if (need_change) {
  1073. is_op_reuse_mem_ = false;
  1074. }
  1075. MemoryBlock *mem_block = ApplyOutMemory(node, i, ranges, is_op_reuse_mem_, out_node_set_continuous_input);
  1076. if (mem_block != nullptr) {
  1077. node_out_blocks_[node->GetName()].emplace_back(mem_block);
  1078. if (out_node_set_continuous_input) {
  1079. node_continuous_input_blocks_[peer_name][peer_input_index] = mem_block;
  1080. }
  1081. NodeIndexIO node_index_io(node, i, kOut);
  1082. auto iter = anchor_to_symbol_.find(node_index_io.ToString());
  1083. if (iter == anchor_to_symbol_.end()) {
  1084. continue;
  1085. }
  1086. symbol_blocks_[iter->second] = mem_block;
  1087. }
  1088. }
  1089. return SUCCESS;
  1090. }
  1091. ///
  1092. /// @ingroup domi
  1093. /// @brief traverse all nodes outputs and workspace in need, apply memory block considering memory reuse
  1094. /// @param [in/out] ranges memory size provided
  1095. /// @return Status result
  1096. ///
  1097. void BlockMemAssigner::AssignMemoryWithReuse(vector<int64_t> &ranges) {
  1098. (void)ge::GetContext().GetOption(OPTION_EXEC_DISABLE_REUSED_MEMORY, ge_disable_reuse_mem_env_);
  1099. GEEVENT("Reuse memory %s", ge_disable_reuse_mem_env_ == "1" ? "close" : "open");
  1100. string op_no_reuse_mem_str;
  1101. const char *op_no_reuse_mem = std::getenv(OP_NO_REUSE_MEM);
  1102. GE_IF_BOOL_EXEC(op_no_reuse_mem != nullptr, op_no_reuse_mem_str = string(op_no_reuse_mem);
  1103. CheckAndGetOpReuseEnv(op_no_reuse_mem_str, op_no_reuse_mem_vec_, op_reuse_env_valid_););
  1104. for (NodePtr &n : compute_graph_->GetAllNodes()) {
  1105. auto node_op_desc = n->GetOpDesc();
  1106. GE_IF_BOOL_EXEC(node_op_desc == nullptr, continue);
  1107. life_time_ = node_op_desc->GetId();
  1108. int64_t stream_id = node_op_desc->GetStreamId();
  1109. if (AssignOutputMemoryWithReuse(n, ranges) != SUCCESS) {
  1110. return;
  1111. }
  1112. stream_workspace_blocks_[stream_id].clear();
  1113. vector<int64_t> temp;
  1114. GetNodeWorkSpaceSize(n, temp);
  1115. vector<int64_t> workspace_bytes;
  1116. vector<int64_t> workspace_memory_type;
  1117. bool has_workspace_mem_type_attr =
  1118. ge::AttrUtils::GetListInt(node_op_desc, TVM_ATTR_NAME_WORKSPACE_TYPE, workspace_memory_type);
  1119. vector<bool> workspace_reuse_flag;
  1120. GE_IF_BOOL_EXEC(!ge::AttrUtils::GetListBool(node_op_desc, kAttrNameWorkspaceReuseFlag, workspace_reuse_flag),
  1121. GELOGD("OP %s get workspace_reuse_flag attr failed", node_op_desc->GetName().c_str()));
  1122. GELOGI("Assign memory node[%s], size [temp:%zu, memory type size:%zu]", node_op_desc->GetName().c_str(),
  1123. temp.size(), workspace_memory_type.size());
  1124. if (has_workspace_mem_type_attr && (temp.size() != workspace_memory_type.size())) {
  1125. GELOGE(INTERNAL_ERROR, "fusion: node[%s], workspace_memory size err![v_temp:%zu, workspace:%zu]",
  1126. n->GetName().c_str(), temp.size(), workspace_memory_type.size());
  1127. return;
  1128. }
  1129. for (size_t i = 0; i < temp.size(); i++) {
  1130. // fusion: other type's size not means malloc HBM memory
  1131. bool workspace_skip_flag = false;
  1132. if (has_workspace_mem_type_attr && workspace_memory_type[i] == RT_MEMORY_L1) {
  1133. GELOGI(
  1134. "fusion: node[%s]workspace index[%d] is not hbm type, add to zero_memory_list, workspace memory type [%ld]",
  1135. node_op_desc->GetName().c_str(), i, workspace_memory_type[i]);
  1136. workspace_skip_flag = true;
  1137. }
  1138. if (temp[i] == 0 || workspace_skip_flag) {
  1139. zero_memory_list_.emplace_back(n, kWorkspace, static_cast<uint32_t>(i), false);
  1140. continue;
  1141. }
  1142. MemoryBlock *mem_block = ApplyMemory(GetBlockSize(static_cast<size_t>(temp[i]), ranges),
  1143. static_cast<size_t>(temp[i]), static_cast<size_t>(temp[i]),
  1144. kWorkspace, n, static_cast<uint32_t>(i), workspace_reuse_flag,
  1145. is_op_reuse_mem_, false);
  1146. GE_CHK_BOOL_TRUE_EXEC_WITH_LOG(mem_block == nullptr, continue, "failed to apply memory block.");
  1147. CheckWorkspaceReuse(workspace_reuse_flag, i, stream_id, mem_block);
  1148. }
  1149. ReleaseInputNodeOutMemory(node_out_blocks_, reusable_blocks_[stream_id], n);
  1150. }
  1151. GELOGD("Assigned memory blocks:");
  1152. for (auto mem_block : memory_blocks_) {
  1153. GELOGD("%s", mem_block->String().c_str());
  1154. (void)mem_block; // Fix warning
  1155. }
  1156. bool merge_dynamic_batch = false;
  1157. GE_IF_BOOL_EXEC(!(ge_disable_reuse_mem_env_ == "1"), merge_dynamic_batch = MergeDynamicBatchBlocks());
  1158. GE_IF_BOOL_EXEC((!(ge_disable_reuse_mem_env_ == "1") && !merge_dynamic_batch), ReuseBlocksByLifeTime(ranges.size()));
  1159. AssignContinuousBlocks();
  1160. ResizeMemoryBlocks();
  1161. GELOGD("Memory blocks after resize:");
  1162. for (auto mem_block : memory_blocks_) {
  1163. GELOGD("%s", mem_block->String().c_str());
  1164. (void)mem_block; // Fix warning
  1165. }
  1166. }
  1167. void BlockMemAssigner::CheckWorkspaceReuse(const vector<bool> &workspace_reuse_flag, uint32_t index, int64_t stream_id,
  1168. MemoryBlock *mem_block) {
  1169. bool reuse_mem_flag =
  1170. ((workspace_reuse_flag.size() > index) && (workspace_reuse_flag[index] == false)) ? false : true;
  1171. if (reuse_mem_flag) {
  1172. stream_workspace_blocks_[stream_id].emplace_back(mem_block);
  1173. }
  1174. }
  1175. void BlockMemAssigner::GetNodeWorkSpaceSize(const NodePtr &node, vector<int64_t> &workspace_memory) {
  1176. GE_CHK_BOOL_TRUE_EXEC_WITH_LOG(node->GetOpDesc() == nullptr, return, "Op desc is null.");
  1177. vector<int64_t> workspace_byte_nums = node->GetOpDesc()->GetWorkspaceBytes();
  1178. GELOGD("node[%s] size:%zu", node->GetOpDesc()->GetName().c_str(), workspace_byte_nums.size());
  1179. for (int64_t byte_size : workspace_byte_nums) {
  1180. workspace_memory.emplace_back(byte_size);
  1181. GELOGD("push back size:%ld", byte_size);
  1182. }
  1183. }
  1184. // descending order
  1185. static bool CompareBlockMaxSize(MemoryBlock *left, MemoryBlock *right) {
  1186. if (left == nullptr || right == nullptr) {
  1187. return false;
  1188. }
  1189. auto left_max_size = std::max_element(left->RealSizeList().begin(), left->RealSizeList().end());
  1190. if (left_max_size != left->RealSizeList().end()) {
  1191. auto right_max_size = std::max_element(right->RealSizeList().begin(), right->RealSizeList().end());
  1192. if (right_max_size == right->RealSizeList().end() || (*left_max_size > *right_max_size)) {
  1193. return true;
  1194. }
  1195. }
  1196. return false;
  1197. }
  1198. void MergeBlocks(std::vector<MemoryBlock *> &dest, std::vector<MemoryBlock *> &src) {
  1199. for (size_t i = 0; i < dest.size(); ++i) {
  1200. if (i >= src.size()) {
  1201. return;
  1202. }
  1203. if (dest[i] != nullptr && src[i] != nullptr) {
  1204. if (!dest[i]->reuse_mem_ || !src[i]->reuse_mem_) {
  1205. GELOGD("Diff batch's workspace can't be reused, i: %zu, dest[i]: %s, stream: %ld, src[i]: %s, stream: %ld.",
  1206. i, dest[i]->String().c_str(), dest[i]->stream_id_, src[i]->String().c_str(), src[i]->stream_id_);
  1207. continue;
  1208. }
  1209. for (auto &symbol : src[i]->SymbolList()) {
  1210. dest[i]->AddSymbol(symbol);
  1211. }
  1212. for (size_t j = 0; j < src[i]->NodeTypeIndexList().size(); ++j) {
  1213. dest[i]->AddNodeTypeIndex(src[i]->NodeTypeIndexList()[j],
  1214. src[i]->RealSizeList()[j],
  1215. src[i]->NoAlignSizeList()[j]);
  1216. src[i]->deleted_block_ = true;
  1217. }
  1218. }
  1219. }
  1220. }
  1221. bool BlockMemAssigner::MergeDynamicBatchBlocks() {
  1222. bool merged = false;
  1223. std::map<std::string, std::vector<MemoryBlock *>> dynamic_batch_blocks;
  1224. for (auto block : memory_blocks_) {
  1225. if (block == nullptr) {
  1226. continue;
  1227. }
  1228. std::string batch_label;
  1229. if (block->IsSameLabel(batch_label)) {
  1230. dynamic_batch_blocks[batch_label].emplace_back(block);
  1231. }
  1232. }
  1233. auto it = dynamic_batch_blocks.begin();
  1234. auto it_max = it;
  1235. // find max block counts
  1236. for (; it != dynamic_batch_blocks.end(); ++it) {
  1237. if (it->second.size() > it_max->second.size()) {
  1238. it_max = it;
  1239. }
  1240. std::sort(it->second.begin(), it->second.end(), CompareBlockMaxSize);
  1241. }
  1242. if (it_max != dynamic_batch_blocks.end()) {
  1243. GELOGD("MergeDynamicBatch %s block counts %zu", it_max->first.c_str(), it_max->second.size());
  1244. }
  1245. for (it = dynamic_batch_blocks.begin(); it != dynamic_batch_blocks.end(); ++it) {
  1246. if (it != it_max) {
  1247. GELOGD("MergeDynamicBatch from %s to %s", it->first.c_str(), it_max->first.c_str());
  1248. MergeBlocks(it_max->second, it->second);
  1249. merged = true;
  1250. }
  1251. }
  1252. return merged;
  1253. }
  1254. // asending order
  1255. static bool CompareBlockIndex(MemoryBlock *left, MemoryBlock *right) {
  1256. if (left == nullptr || right == nullptr) {
  1257. return false;
  1258. }
  1259. if (left->input_index_ < right->input_index_) {
  1260. return true;
  1261. }
  1262. return false;
  1263. }
  1264. ///
  1265. /// @ingroup domi
  1266. /// @brief order blocks by continuous input index
  1267. /// @param [in] blocks need be processed
  1268. /// @param [in] input blocks need continuous
  1269. /// @param [out] blocks after continuous order
  1270. /// @param [in/out] blocks ordered
  1271. /// @param [in] input or output
  1272. ///
  1273. void ReAssignContinuousBlocks(const std::vector<MemoryBlock *> &org_blocks,
  1274. const std::map<MemoryBlock *, uint32_t> block_map,
  1275. std::vector<MemoryBlock *> &dest_blocks, std::vector<MemoryBlock *> &continuous_blocks,
  1276. const std::string &type) {
  1277. for (auto &memory_block : org_blocks) {
  1278. if (memory_block == nullptr || memory_block->deleted_block_) {
  1279. continue;
  1280. }
  1281. if (block_map.find(memory_block) != block_map.end()) {
  1282. continue;
  1283. }
  1284. dest_blocks.emplace_back(memory_block);
  1285. }
  1286. // add continuous block
  1287. std::sort(continuous_blocks.begin(), continuous_blocks.end(), CompareBlockIndex);
  1288. size_t count = 0;
  1289. for (auto &memory_block : continuous_blocks) {
  1290. GE_IF_BOOL_EXEC(memory_block == nullptr, continue);
  1291. GELOGI("Block continuous %s index:%d", type.c_str(), memory_block->input_index_);
  1292. count++;
  1293. if (count == 1) {
  1294. memory_block->first_continuous_block_ = true;
  1295. }
  1296. if (count == continuous_blocks.size()) {
  1297. memory_block->last_continuous_block_ = true;
  1298. }
  1299. dest_blocks.emplace_back(memory_block);
  1300. }
  1301. }
  1302. void BlockMemAssigner::AssignContinuousBlocks() {
  1303. for (auto &block_map : node_continuous_input_blocks_) {
  1304. std::vector<MemoryBlock *> dest_memory_blocks;
  1305. std::map<MemoryBlock *, uint32_t> continuous_block_map;
  1306. std::vector<MemoryBlock *> continuous_blocks;
  1307. auto it = node_continuous_input_counts_.find(block_map.first);
  1308. GE_IF_BOOL_EXEC(it == node_continuous_input_counts_.end(), continue);
  1309. GELOGI("Node:%s continuous input block count:%zu input count:%u", block_map.first.c_str(), block_map.second.size(),
  1310. it->second);
  1311. GE_IF_BOOL_EXEC(it->second != block_map.second.size(), continue);
  1312. for (auto &it : block_map.second) {
  1313. if (it.second != nullptr) {
  1314. continuous_block_map[it.second] = it.first;
  1315. it.second->input_index_ = it.first;
  1316. continuous_blocks.emplace_back(it.second);
  1317. }
  1318. }
  1319. if (continuous_block_map.size() != continuous_blocks.size()) {
  1320. GELOGW("Node:%s continuous input map size:%zu vector size:%zu", block_map.first.c_str(),
  1321. continuous_block_map.size(), continuous_blocks.size());
  1322. continue;
  1323. }
  1324. ReAssignContinuousBlocks(memory_blocks_, continuous_block_map, dest_memory_blocks, continuous_blocks, "input");
  1325. memory_blocks_.swap(dest_memory_blocks);
  1326. }
  1327. }
  1328. void BlockMemAssigner::ReuseBlocksByLifeTime(size_t range_size) {
  1329. // 1 means block size is same so no need to do this
  1330. if (range_size <= 1) {
  1331. return;
  1332. }
  1333. for (size_t i = 0; i < memory_blocks_.size(); ++i) {
  1334. auto parent = memory_blocks_[i];
  1335. if (parent == nullptr || parent->deleted_block_ || parent->continuous_block_) {
  1336. continue;
  1337. }
  1338. if (parent->reuse_mem_ && !IsPostReuse(parent)) {
  1339. parent->reuse_mem_ = false;
  1340. }
  1341. for (size_t j = i + 1; j < memory_blocks_.size(); ++j) {
  1342. auto child = memory_blocks_[j];
  1343. if (child == nullptr) {
  1344. continue;
  1345. }
  1346. // If node is before atomic_addr_clean node, the continus memory can't be reused.
  1347. if (!parent->NodeTypeIndexList().empty() && child->continuous_block_) {
  1348. auto node = parent->NodeTypeIndexList()[0].node;
  1349. if (node == nullptr || node->GetOpDesc() == nullptr || (node->GetOpDesc()->GetId() < GetAtomicAddrCleanId())) {
  1350. continue;
  1351. }
  1352. }
  1353. parent->AddLifeReuseBlock(child, total_node_depend_stream_life_);
  1354. }
  1355. }
  1356. }
  1357. ///
  1358. /// @ingroup domi_omg
  1359. /// @brief traverse memory size, resize, calculate offset
  1360. /// @param [in&out] memory_blocks_ memory block, after calculating offset
  1361. ///
  1362. void BlockMemAssigner::ResizeMemoryBlocks() {
  1363. for (auto &memory_block : memory_blocks_) {
  1364. if (memory_block == nullptr || memory_block->deleted_block_ || memory_block->is_zero_copy_) {
  1365. continue;
  1366. }
  1367. if (memory_block->first_continuous_block_) {
  1368. mem_offset_ += MEM_ALIGN_SIZE;
  1369. }
  1370. memory_block->Resize();
  1371. memory_block->SetHeadOffset(mem_offset_);
  1372. mem_offset_ += memory_block->Size();
  1373. memory_block->SetTailOffset(mem_offset_ - 1);
  1374. }
  1375. GELOGI("mem_offset_ exclude zero_copy_memory is %zu.", mem_offset_);
  1376. }
  1377. ///
  1378. /// @ingroup domi
  1379. /// @brief given NodeTypeIndex, set offset in Op's OpDef
  1380. /// @param [in&out] node_type_index <node, memory type, id>
  1381. /// @param [in] offset offset to be set
  1382. /// @param [in] size memory size
  1383. /// @param [in] real_size memory size in need
  1384. /// @return Status result
  1385. ///
  1386. void SetOffsetSize(const NodeTypeIndex &node_type, const MemoryBlock *block,
  1387. size_t real_size, size_t no_align_size, bool child_block) {
  1388. ge::OpDescPtr op_desc = node_type.node->GetOpDesc();
  1389. GE_CHK_BOOL_TRUE_EXEC_WITH_LOG(op_desc == nullptr, return, "op_desc is null.");
  1390. string graph_name = node_type.node->GetOwnerComputeGraph()->GetName();
  1391. vector<int64_t> memorys_type;
  1392. int64_t offset = block->HeadOffset();
  1393. size_t end = node_type.life_time_end;
  1394. bool has_mem_type_attr = ge::AttrUtils::GetListInt(op_desc, ATTR_NAME_OUTPUT_MEM_TYPE_LIST, memorys_type);
  1395. if (node_type.mem_type == kOutput) {
  1396. vector<int64_t> output_list = op_desc->GetOutputOffset();
  1397. for (auto i = static_cast<uint32_t>(output_list.size()); i < node_type.index + 1; i++) {
  1398. output_list.emplace_back(kInvalidOffset);
  1399. }
  1400. if (output_list.empty()) {
  1401. GELOGW("Empty output");
  1402. return;
  1403. }
  1404. static const set<string> kSetOffsetTypes = { DATA_TYPE, AIPP_DATA_TYPE, MULTISHAPE, NETOUTPUT };
  1405. if ((kSetOffsetTypes.count(op_desc->GetType()) > 0) && !IsKnownSubgraphData(node_type.node)) {
  1406. if ((output_list[node_type.index] == kInvalidOffset) || (output_list[node_type.index] < offset)) {
  1407. output_list.at(node_type.index) = offset;
  1408. }
  1409. } else {
  1410. // fusion: keep the original other type offset value from op_desc
  1411. bool set_out_offset = (!has_mem_type_attr) ||
  1412. (memorys_type.size() > node_type.index && memorys_type[node_type.index] != RT_MEMORY_L1);
  1413. if (set_out_offset) {
  1414. output_list.at(node_type.index) = offset;
  1415. }
  1416. }
  1417. op_desc->SetOutputOffset(output_list);
  1418. } else if (node_type.mem_type == kWorkspace) {
  1419. vector<int64_t> workspace_list;
  1420. workspace_list = op_desc->GetWorkspace();
  1421. for (auto i = static_cast<uint32_t>(workspace_list.size()); i < node_type.index + 1; i++) {
  1422. workspace_list.emplace_back(kInvalidOffset);
  1423. }
  1424. vector<int64_t> workspace_mem_type;
  1425. bool has_workspace_mem_type = ge::AttrUtils::GetListInt(op_desc, TVM_ATTR_NAME_WORKSPACE_TYPE, workspace_mem_type);
  1426. // fusion: keep the original other type offset value from op_desc
  1427. bool set_workspace_offset = (!has_workspace_mem_type) ||
  1428. (workspace_mem_type.size() > node_type.index && workspace_mem_type[node_type.index] != RT_MEMORY_L1);
  1429. if (set_workspace_offset) {
  1430. workspace_list.at(node_type.index) = offset;
  1431. }
  1432. op_desc->SetWorkspace(workspace_list);
  1433. }
  1434. GELOGI("[IMAS]Set %s name[%s] %s[%u] offset to [%ld] streamid[%ld] size[%zu] realsize[%zu]"
  1435. " noalignsize[%zu] life time begin[%zu] life time end[%zu] child[%d:%d:%d:%d] isref[%d].", graph_name.c_str(),
  1436. op_desc->GetName().c_str(), node_type.GetMemType().c_str(), node_type.index, offset, op_desc->GetStreamId(),
  1437. block->Size(), real_size, no_align_size, op_desc->GetId(), end, child_block, block->reuse_mem_,
  1438. block->continuous_block_, block->deleted_block_, node_type.ref_input);
  1439. }
  1440. void SetBlockOpMemOffset(MemoryBlock *block, bool child_block) {
  1441. if (block == nullptr) {
  1442. return;
  1443. }
  1444. size_t index = 0;
  1445. size_t real_size = 0;
  1446. size_t no_align_size = 0;
  1447. auto real_size_list_size = block->RealSizeList().size();
  1448. for (const NodeTypeIndex &node_type_index : block->NodeTypeIndexList()) {
  1449. if (index < real_size_list_size) {
  1450. real_size = block->RealSizeList()[index];
  1451. no_align_size = block->NoAlignSizeList()[index];
  1452. }
  1453. SetOffsetSize(node_type_index, block, real_size, no_align_size, child_block);
  1454. index++;
  1455. }
  1456. }
  1457. void BlockMemAssigner::SetOpMemOffset(bool is_zero_copy) {
  1458. for (MemoryBlock *memory_block : memory_blocks_) {
  1459. if (memory_block == nullptr || memory_block->deleted_block_) {
  1460. continue;
  1461. }
  1462. if ((is_zero_copy && !memory_block->is_zero_copy_) || (!is_zero_copy && memory_block->is_zero_copy_)) {
  1463. continue;
  1464. }
  1465. SetBlockOpMemOffset(memory_block, false);
  1466. for (MemoryBlock *child_block : memory_block->ChildBlockList()) {
  1467. SetBlockOpMemOffset(child_block, true);
  1468. }
  1469. }
  1470. if (!is_zero_copy) {
  1471. for (const NodeTypeIndex &node_type_index : zero_memory_list_) {
  1472. MemoryBlock block(0, 0);
  1473. SetOffsetSize(node_type_index, &block, 0, 0, false);
  1474. }
  1475. }
  1476. }
  1477. Status BlockMemAssigner::Assign() {
  1478. vector<int64_t> ranges;
  1479. if (GetMemoryRanges(ranges) != SUCCESS) {
  1480. GELOGE(FAILED, "GetMemoryRanges Fail!");
  1481. return FAILED;
  1482. }
  1483. GE_IF_BOOL_EXEC(ranges.empty(), return SUCCESS);
  1484. AssignMemoryWithReuse(ranges);
  1485. SetOpMemOffset(false);
  1486. return SUCCESS;
  1487. }
  1488. bool BlockMemAssigner::CheckIsZeroMemNodeType(const string &node_type) const {
  1489. return (node_type == VARIABLE) || (node_type == CONSTANT) || (node_type == MULTISHAPE) ||
  1490. (node_type == HCOMBROADCAST) || (node_type == CONSTANTOP) ||
  1491. (node_type == ASSIGNADD) || (node_type == ASSIGNSUB) || (node_type == ASSIGN) || (node_type == HVDWAIT) ||
  1492. (node_type == HVDCALLBACKBROADCAST);
  1493. }
  1494. } // namespace ge

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