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.

step_parallel.cc 94 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346
  1. /**
  2. * Copyright 2019-2020 Huawei Technologies Co., Ltd
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #include "parallel/step_parallel.h"
  17. #include <inttypes.h>
  18. #include <sys/time.h>
  19. #include <algorithm>
  20. #include <map>
  21. #include <memory>
  22. #include <set>
  23. #include <string>
  24. #include <unordered_map>
  25. #include <utility>
  26. #include "ir/tensor.h"
  27. #include "ir/param_value_py.h"
  28. #include "operator/ops.h"
  29. #include "optimizer/optimizer.h"
  30. #include "parallel/auto_parallel/graph_costmodel.h"
  31. #include "parallel/context.h"
  32. #include "parallel/device_manager.h"
  33. #include "parallel/dynamic_creator.h"
  34. #include "parallel/graph_util/generate_graph.h"
  35. #include "parallel/graph_util/graph_info.h"
  36. #include "parallel/graph_util/node_info.h"
  37. #include "parallel/node_check.h"
  38. #include "parallel/ops_info/matmul_info.h"
  39. #include "parallel/strategy_checkpoint/parallel_strategy_checkpoint.h"
  40. #include "utils/comm_manager.h"
  41. #include "utils/symbolic.h"
  42. using mindspore::tensor::Tensor;
  43. namespace mindspore {
  44. namespace parallel {
  45. static const std::set<std::string> COMMUNICATION_OPS = {ALL_REDUCE, ALL_GATHER, ALL_TO_ALL, REDUCE_SCATTER};
  46. static const std::set<std::string> INVALID_LOSS_OPS = {GET_NEXT, VIRTUALLOSS};
  47. // g_RefMap, for CNode B input i is a RefKey[Parameter C],
  48. // it will be one item in map with key: C, and value: (B, i)
  49. static std::map<AnfNodePtr, std::pair<AnfNodePtr, int>> g_RefMap;
  50. void SetCommunicationOpGroupLabel(std::vector<AnfNodePtr> new_node_input) {
  51. if (new_node_input.empty()) {
  52. return;
  53. }
  54. ValueNodePtr prim_anf_node = new_node_input[0]->cast<ValueNodePtr>();
  55. PrimitivePtr prim = GetValueNode<PrimitivePtr>(prim_anf_node);
  56. MS_EXCEPTION_IF_NULL(prim);
  57. auto attrs = prim->attrs();
  58. auto iter = attrs.find(GROUP);
  59. if (iter != attrs.end()) {
  60. auto value = iter->second;
  61. MS_EXCEPTION_IF_NULL(value);
  62. if (value->isa<StringImm>()) {
  63. std::string hash_name = value->cast<StringImmPtr>()->value();
  64. MS_EXCEPTION_IF_NULL(g_device_manager);
  65. std::string rank_list_name = g_device_manager->FindRankListNameByHashName(hash_name);
  66. (void)prim->AddAttr(GROUP_RANKS, MakeValue(rank_list_name));
  67. }
  68. }
  69. }
  70. std::vector<AnfNodePtr> CreateInput(const Operator &op, const AnfNodePtr &node, const std::string &instance_name) {
  71. MS_EXCEPTION_IF_NULL(node);
  72. OperatorArgs arg_forward = op.second;
  73. ValuePtr pyop_instance = CreatOpInstance(arg_forward.first, op.first, instance_name);
  74. MS_EXCEPTION_IF_NULL(pyop_instance);
  75. OperatorParams params = arg_forward.second;
  76. std::vector<AnfNodePtr> new_node_input = {NewValueNode(pyop_instance), node};
  77. if (!params.empty()) {
  78. for (auto &param : params) {
  79. AnfNodePtr val = NewValueNode(param.first.second);
  80. MS_EXCEPTION_IF_NULL(val);
  81. int32_t position = param.second;
  82. (void)new_node_input.insert(new_node_input.begin() + position, val);
  83. }
  84. }
  85. // if the op have 'group' attr, set the rank list name for the op
  86. SetCommunicationOpGroupLabel(new_node_input);
  87. return new_node_input;
  88. }
  89. void InsertNode(const Operator &op, const CNodePtr &node, size_t index, const AnfNodePtr &pre_node,
  90. const FuncGraphPtr &func_graph, const std::string &instance_name) {
  91. // insert new node before the node
  92. FuncGraphManagerPtr manager = func_graph->manager();
  93. MS_EXCEPTION_IF_NULL(manager);
  94. ScopePtr scope = node->scope();
  95. MS_EXCEPTION_IF_NULL(scope);
  96. std::vector<AnfNodePtr> node_input = CreateInput(op, pre_node, instance_name);
  97. CNodePtr new_node = func_graph->NewCNode(node_input);
  98. MS_EXCEPTION_IF_NULL(new_node);
  99. if (instance_name.find(SPLIT_SENS) == std::string::npos) {
  100. new_node->set_in_forward_flag(true); // mark forward flag
  101. }
  102. auto new_node_value = node_input[0]->cast<ValueNodePtr>();
  103. MS_EXCEPTION_IF_NULL(new_node_value);
  104. PrimitivePtr new_node_prim = new_node_value->value()->cast<PrimitivePtr>();
  105. new_node_prim->set_instance_name(instance_name);
  106. new_node_prim->set_attr("keep_value_node_input", MakeValue(true));
  107. new_node->set_scope(scope);
  108. node_input[0]->set_scope(scope);
  109. manager->SetEdge(node, SizeToInt(index), new_node);
  110. }
  111. std::string CreateInstanceName(const CNodePtr &node, size_t index) {
  112. MS_EXCEPTION_IF_NULL(node);
  113. if (!IsValueNode<Primitive>(node->input(0))) {
  114. MS_LOG(EXCEPTION) << "CreateInstanceName: " << node->ToString() << " doesn't have primitive";
  115. }
  116. std::string name_base = node->fullname_with_scope();
  117. std::string name = name_base + "_" + std::to_string(index);
  118. std::string instance_name = HashInstanceName(name);
  119. return instance_name;
  120. }
  121. void ForwardCommunication(OperatorVector forward_op, const CNodePtr &node) {
  122. MS_EXCEPTION_IF_NULL(node);
  123. // step1:get graph manager distribute_operator
  124. FuncGraphPtr func_graph = node->func_graph();
  125. MS_EXCEPTION_IF_NULL(func_graph);
  126. FuncGraphManagerPtr manager = func_graph->manager();
  127. MS_EXCEPTION_IF_NULL(manager);
  128. auto uses_set = manager->node_users()[node];
  129. CNodePtr node_to_insert = node;
  130. for (auto &uses_pair : uses_set) {
  131. auto uses_cnode = uses_pair.first->cast<CNodePtr>();
  132. MS_EXCEPTION_IF_NULL(uses_cnode);
  133. if (!IsValueNode<Primitive>(uses_cnode->input(0))) {
  134. break;
  135. }
  136. PrimitivePtr value_node_prim = GetValueNode<PrimitivePtr>(uses_cnode->input(0));
  137. MS_EXCEPTION_IF_NULL(value_node_prim);
  138. if (value_node_prim->name() == TUPLE_GETITEM) {
  139. if (uses_set.size() > 1) {
  140. MS_LOG(EXCEPTION) << "Now only support one output, but got " << uses_set.size();
  141. }
  142. node_to_insert = uses_cnode;
  143. }
  144. }
  145. MS_EXCEPTION_IF_NULL(node_to_insert);
  146. std::reverse(forward_op.begin(), forward_op.end());
  147. // step2:traverse op_list and insert node
  148. for (size_t index = 0; index < forward_op.size(); ++index) {
  149. std::string instance_name_base = FORWARD_OP;
  150. std::string instance_name = instance_name_base + "_" + CreateInstanceName(node, index);
  151. std::vector<AnfNodePtr> forward_input = CreateInput(forward_op[index], node_to_insert, instance_name);
  152. CNodePtr forward_node = func_graph->NewCNode(forward_input); // using NewCNode to creat anfnode
  153. MS_EXCEPTION_IF_NULL(forward_node);
  154. ScopePtr scope = node->scope();
  155. MS_EXCEPTION_IF_NULL(scope);
  156. forward_node->set_scope(scope);
  157. forward_node->set_in_forward_flag(true);
  158. forward_input[0]->set_scope(scope);
  159. (void)manager->Replace(node_to_insert, forward_node); // using Replace function to insert node
  160. }
  161. }
  162. CNodePtr InsertMakeTuple(const AnfNodePtr &prev, uint32_t num, const FuncGraphPtr &func_graph) {
  163. MS_EXCEPTION_IF_NULL(prev);
  164. MS_EXCEPTION_IF_NULL(func_graph);
  165. std::vector<AnfNodePtr> make_tuple_inputs;
  166. make_tuple_inputs.push_back(NewValueNode(prim::kPrimMakeTuple));
  167. for (uint32_t i = 0; i < num; i++) {
  168. std::vector<AnfNodePtr> tuple_get_item_inputs{NewValueNode(prim::kPrimTupleGetItem), prev,
  169. CreatInt32Imm(UintToInt(i))};
  170. auto tuple_get_item = func_graph->NewCNode(tuple_get_item_inputs);
  171. MS_EXCEPTION_IF_NULL(tuple_get_item);
  172. make_tuple_inputs.push_back(tuple_get_item);
  173. }
  174. auto make_tuple = func_graph->NewCNode(make_tuple_inputs);
  175. MS_EXCEPTION_IF_NULL(make_tuple);
  176. FuncGraphManagerPtr manager = func_graph->manager();
  177. MS_EXCEPTION_IF_NULL(manager);
  178. (void)manager->Replace(prev, make_tuple);
  179. return make_tuple;
  180. }
  181. void InsertRedistribution(const RedistributionOpListPtr &redistribution_oplist_ptr, const CNodePtr &node,
  182. const FuncGraphPtr &func_graph, int pos, const CNodePtr &pre_node) {
  183. MS_EXCEPTION_IF_NULL(node);
  184. MS_EXCEPTION_IF_NULL(pre_node);
  185. MS_EXCEPTION_IF_NULL(func_graph);
  186. FuncGraphManagerPtr manager = func_graph->manager();
  187. MS_EXCEPTION_IF_NULL(manager);
  188. if ((redistribution_oplist_ptr->first).size() != (redistribution_oplist_ptr->second).size()) {
  189. MS_LOG(EXCEPTION) << "size of OperatorVector and OutPutInfoVector must be the same!";
  190. }
  191. for (size_t index = 0; index < (redistribution_oplist_ptr->first).size(); ++index) {
  192. if (pos >= SizeToInt(node->inputs().size())) {
  193. MS_LOG(EXCEPTION) << "InsertRedistribution:pos can't be larger than node's inputs'size";
  194. }
  195. // Creat new node
  196. AnfNodePtr target_node = node->input(IntToSize(pos));
  197. MS_EXCEPTION_IF_NULL(target_node);
  198. // Creat instance_name
  199. auto op = (redistribution_oplist_ptr->first)[index];
  200. std::string op_name = (redistribution_oplist_ptr->first)[index].first;
  201. std::string instance_name_base = REDISTRIBUTION_OP;
  202. std::string instance_name = instance_name_base + "_" + CreateInstanceName(pre_node, index) + op_name;
  203. InsertNode(op, node, IntToSize(pos), target_node, func_graph, instance_name);
  204. if ((redistribution_oplist_ptr->second)[index].first) {
  205. target_node = node->input(IntToSize(pos));
  206. MS_EXCEPTION_IF_NULL(target_node);
  207. (void)InsertMakeTuple(target_node, (redistribution_oplist_ptr->second)[index].second, func_graph);
  208. }
  209. }
  210. }
  211. void InsertGetTensorSliceOp(const Operator &op, const CNodePtr &node, const FuncGraphPtr &func_graph, int pos,
  212. const std::string &instance_name) {
  213. if (func_graph == nullptr) {
  214. MS_LOG(EXCEPTION) << "InsertGetTensorSliceOp: the graph is null, the instance name is " << instance_name;
  215. }
  216. FuncGraphManagerPtr manager = func_graph->manager();
  217. MS_EXCEPTION_IF_NULL(manager);
  218. if (pos >= SizeToInt(node->inputs().size())) {
  219. MS_LOG(EXCEPTION) << "InsertGetTensorSliceOp: pos can't be larger than node's inputs'size, the instance name is "
  220. << instance_name;
  221. }
  222. // Creat new node
  223. AnfNodePtr pre_node = node->input(IntToSize(pos));
  224. MS_EXCEPTION_IF_NULL(pre_node);
  225. InsertNode(op, node, IntToSize(pos), pre_node, func_graph, instance_name);
  226. }
  227. TensorLayout GetTensorInLayout(const CNodePtr &middle_node, const PrimitivePtr &middle_prim,
  228. const OperatorInfoPtr &distribute_operator) {
  229. TensorInfo tensorinfo_in;
  230. if (middle_prim->name() == TUPLE_GETITEM) {
  231. auto value_node = middle_node->input(2)->cast<ValueNodePtr>();
  232. MS_EXCEPTION_IF_NULL(value_node);
  233. size_t index_s = IntToSize(GetValue<int>(value_node->value()));
  234. if (index_s >= distribute_operator->outputs_tensor_info().size()) {
  235. MS_LOG(EXCEPTION) << "The index out of range, index: " << index_s
  236. << ", vector size: " << distribute_operator->outputs_tensor_info().size();
  237. }
  238. tensorinfo_in = distribute_operator->outputs_tensor_info()[index_s];
  239. } else {
  240. if (distribute_operator->outputs_tensor_info().empty()) {
  241. MS_LOG(EXCEPTION) << "The outputs tensor info is empty";
  242. }
  243. tensorinfo_in = distribute_operator->outputs_tensor_info()[0];
  244. }
  245. return tensorinfo_in.tensor_layout();
  246. }
  247. OperatorInfoPtr GetDistributeOperator(const CNodePtr &node) {
  248. MS_EXCEPTION_IF_NULL(node);
  249. if (!IsParallelCareNode(node)) {
  250. return nullptr;
  251. }
  252. OperatorInfoPtr distribute_operator = node->operator_info();
  253. if (distribute_operator == nullptr) {
  254. MS_LOG(EXCEPTION) << "GetDistributeOperator:distribute_operator is nullptr";
  255. }
  256. return distribute_operator;
  257. }
  258. void Redistribution(const std::pair<AnfNodePtr, int> &node_pair, const OperatorInfoPtr &distribute_operator,
  259. const CNodePtr &middle_node, int index, TensorRedistribution tensor_redistribution,
  260. const CNodePtr &pre_node) {
  261. FuncGraphPtr func_graph = middle_node->func_graph();
  262. if (func_graph == nullptr) {
  263. MS_LOG(EXCEPTION) << "Redistribution:get graph failed";
  264. }
  265. CNodePtr next_node = node_pair.first->cast<CNodePtr>();
  266. MS_EXCEPTION_IF_NULL(next_node);
  267. auto middle_value = middle_node->input(0)->cast<ValueNodePtr>();
  268. MS_EXCEPTION_IF_NULL(middle_value);
  269. PrimitivePtr middle_prim = middle_value->value()->cast<PrimitivePtr>();
  270. MS_EXCEPTION_IF_NULL(middle_prim);
  271. OperatorInfoPtr next_distribute_operator = GetDistributeOperator(next_node);
  272. if (next_distribute_operator == nullptr) {
  273. MS_LOG(EXCEPTION) << "Failure: " << next_node->ToString() << " GetDistributeOperator failed";
  274. }
  275. RankList dev_list = distribute_operator->global_device_list();
  276. std::string next_prim_name = GetValueNode<PrimitivePtr>(next_node->input(0))->name();
  277. MS_LOG(DEBUG) << "Redistribution: middle_prim " << middle_prim->name() << " next_prim " << next_prim_name;
  278. MS_LOG(DEBUG) << "Redistribution: middle_node " << middle_node->ToString() << " next_node " << next_node->ToString();
  279. // extract tensor layout in and out
  280. if (distribute_operator->outputs_tensor_info().empty()) {
  281. MS_LOG(EXCEPTION) << "Failure:pre_node's tensorinfo_in is empty";
  282. }
  283. if (IntToSize(index - 1) >= next_distribute_operator->inputs_tensor_info().size()) {
  284. MS_LOG(EXCEPTION) << "The index is out of range, the index is " << index - 1 << ", the vector size is "
  285. << next_distribute_operator->inputs_tensor_info().size();
  286. }
  287. TensorInfo tensorinfo_out = next_distribute_operator->inputs_tensor_info()[IntToSize(index - 1)];
  288. TensorLayout tensorlayout_out = tensorinfo_out.tensor_layout();
  289. TensorLayout tensorlayout_in = GetTensorInLayout(middle_node, middle_prim, distribute_operator);
  290. if (tensor_redistribution.Init(tensorlayout_in, tensorlayout_out, dev_list) == FAILED) {
  291. MS_LOG(ERROR) << "Redistribution: middle_prim " << middle_prim->name() << " next_prim : " << next_prim_name;
  292. MS_LOG(ERROR) << "Redistribution: middle_node " << middle_node->ToString() << " next_node "
  293. << next_node->ToString();
  294. DumpGraph(func_graph, "redistribution_error");
  295. MS_LOG(EXCEPTION) << "Failure:tensor_redistribution init failed";
  296. }
  297. RedistributionOpListPtr redistribution_oplist_ptr = tensor_redistribution.InferTensorRedistributionOperatorList();
  298. if (redistribution_oplist_ptr == nullptr) {
  299. MS_LOG(EXCEPTION) << "Failure:InferTensorRedistribution failed";
  300. }
  301. MS_LOG(DEBUG) << "Redistribution size " << redistribution_oplist_ptr->first.size();
  302. if (!redistribution_oplist_ptr->first.empty()) {
  303. // insert node before next node
  304. InsertRedistribution(redistribution_oplist_ptr, next_node, func_graph, node_pair.second, pre_node);
  305. }
  306. }
  307. bool StrategyFound(std::unordered_map<std::string, ValuePtr> attrs) {
  308. auto iter = attrs.find(STRATEGY);
  309. return !((iter == attrs.end()) || (iter->second->type_name() == NONE));
  310. }
  311. bool HasStrategy(const FuncGraphPtr &root) {
  312. AnfNodePtr ret = root->get_return();
  313. MS_EXCEPTION_IF_NULL(ret);
  314. std::vector<AnfNodePtr> all_nodes = DeepScopedGraphSearch(ret);
  315. for (auto &node : all_nodes) {
  316. auto cnode = node->cast<CNodePtr>();
  317. if ((cnode == nullptr) || !IsValueNode<Primitive>(cnode->input(0))) {
  318. continue;
  319. }
  320. ValueNodePtr prim_anf_node = cnode->input(0)->cast<ValueNodePtr>();
  321. PrimitivePtr prim = GetValueNode<PrimitivePtr>(prim_anf_node);
  322. auto attrs = prim->attrs();
  323. if (StrategyFound(attrs)) {
  324. return true;
  325. }
  326. }
  327. return false;
  328. }
  329. bool IsCommunicationOp(const PrimitivePtr &prim) {
  330. MS_EXCEPTION_IF_NULL(prim);
  331. return (COMMUNICATION_OPS.find(prim->name()) != COMMUNICATION_OPS.end());
  332. }
  333. bool FindCommunicationOp(const std::vector<AnfNodePtr> &all_nodes) {
  334. for (auto &node : all_nodes) {
  335. MS_EXCEPTION_IF_NULL(node);
  336. if (!node->isa<CNode>()) {
  337. continue;
  338. }
  339. auto cnode = node->cast<CNodePtr>();
  340. if (!IsValueNode<Primitive>(cnode->input(0))) {
  341. continue;
  342. }
  343. ValueNodePtr prim_value_node = cnode->input(0)->cast<ValueNodePtr>();
  344. MS_EXCEPTION_IF_NULL(prim_value_node);
  345. PrimitivePtr prim = GetValueNode<PrimitivePtr>(prim_value_node);
  346. MS_EXCEPTION_IF_NULL(prim);
  347. if (IsCommunicationOp(prim) && cnode->in_forward_flag()) {
  348. MS_EXCEPTION_IF_NULL(prim_value_node->scope());
  349. MS_LOG(INFO) << "The graph contain communication op: " << prim->name() << ", scope name is "
  350. << prim_value_node->scope()->name();
  351. return true;
  352. }
  353. }
  354. return false;
  355. }
  356. bool IsParallelCareNode(const CNodePtr &cnode) {
  357. MS_EXCEPTION_IF_NULL(cnode);
  358. ValueNodePtr prim_node = cnode->input(0)->cast<ValueNodePtr>();
  359. if (prim_node == nullptr) {
  360. return false;
  361. }
  362. PrimitivePtr prim = prim_node->value()->cast<PrimitivePtr>();
  363. if (prim == nullptr) {
  364. return false;
  365. }
  366. if (IsInBlackList(prim)) {
  367. MS_LOG(INFO) << "Parallel don't care node: " << prim->name();
  368. return false;
  369. }
  370. // get_next is not in the forward graph, we need mark the get_next as the forward node
  371. if (prim->name() == GET_NEXT) {
  372. return true;
  373. }
  374. if ((prim->name() == CAST) && (cnode->operator_info() == nullptr)) {
  375. return false;
  376. }
  377. return cnode->in_forward_flag();
  378. }
  379. void StepRedistribution(const CNodePtr &node, const OperatorInfoPtr &distribute_operator, const CNodePtr &insert_node,
  380. const TensorRedistribution &tensor_redistribution, const CNodePtr &pre_node) {
  381. MS_EXCEPTION_IF_NULL(node->func_graph());
  382. FuncGraphManagerPtr manager = node->func_graph()->manager();
  383. MS_EXCEPTION_IF_NULL(manager);
  384. AnfNodeIndexSet node_set = manager->node_users()[node];
  385. CNodePtr insert_node_new;
  386. if (IsValueNode<Primitive>(node->input(0))) {
  387. auto current_value = node->input(0)->cast<ValueNodePtr>();
  388. MS_EXCEPTION_IF_NULL(current_value);
  389. PrimitivePtr current_prim = current_value->value()->cast<PrimitivePtr>();
  390. MS_EXCEPTION_IF_NULL(current_prim);
  391. insert_node_new = ((current_prim->name() == TUPLE_GETITEM) ? node : insert_node);
  392. } else {
  393. insert_node_new = insert_node;
  394. }
  395. MS_EXCEPTION_IF_NULL(insert_node_new);
  396. for (auto &node_pair : node_set) {
  397. CNodePtr use_cnode = node_pair.first->cast<CNodePtr>();
  398. MS_EXCEPTION_IF_NULL(use_cnode);
  399. if (!IsValueNode<Primitive>(use_cnode->input(0))) {
  400. StepRedistribution(use_cnode, distribute_operator, insert_node_new, tensor_redistribution, pre_node);
  401. } else {
  402. ValueNodePtr prim_anf_node = use_cnode->input(0)->cast<ValueNodePtr>();
  403. MS_EXCEPTION_IF_NULL(prim_anf_node);
  404. PrimitivePtr node_prim = prim_anf_node->value()->cast<PrimitivePtr>();
  405. MS_EXCEPTION_IF_NULL(node_prim);
  406. if (node_prim->name() == DEPEND && node_pair.second != 1) {
  407. continue;
  408. }
  409. if (IsParallelCareNode(use_cnode) && (use_cnode->operator_info() != nullptr)) {
  410. Redistribution(node_pair, distribute_operator, insert_node_new, node_pair.second, tensor_redistribution,
  411. pre_node);
  412. } else {
  413. StepRedistribution(use_cnode, distribute_operator, insert_node_new, tensor_redistribution, pre_node);
  414. }
  415. }
  416. }
  417. }
  418. void SplitTensor(const AnfNodePtr &node, const CNodePtr &next_node, int index) {
  419. MS_EXCEPTION_IF_NULL(node);
  420. MS_EXCEPTION_IF_NULL(next_node);
  421. OperatorInfoPtr op_info = next_node->operator_info();
  422. MS_EXCEPTION_IF_NULL(op_info);
  423. // If the shape of tensor is [] or [1], no need to split it.
  424. Shapes shapes = GetNodeShape(node);
  425. if (shapes.size() != 1) {
  426. MS_LOG(EXCEPTION) << "Split tensor for " << op_info->name()
  427. << ": GetNodeShape for tensor_node, output size is not 1";
  428. }
  429. Shape shape = shapes[0];
  430. std::string shape_str = ShapeToString(shape);
  431. if (shape.empty() || ((shape.size() == 1) && (shape[0] == 1))) {
  432. MS_LOG(INFO) << "Split tensor for " << op_info->name() << ": The shape is " << shape_str
  433. << ", no need to split it.";
  434. return;
  435. }
  436. MS_LOG(INFO) << "Split tensor for " << op_info->name() << ": The shape of tensor is " << shape_str;
  437. // extract tensor layout
  438. if (IntToSize(index - 1) >= op_info->inputs_tensor_info().size()) {
  439. MS_LOG(EXCEPTION) << "The index is out of range, index is " << index - 1 << ", vector size is "
  440. << op_info->inputs_tensor_info().size();
  441. }
  442. TensorInfo tensor_info = op_info->inputs_tensor_info()[IntToSize(index - 1)];
  443. TensorLayout tensor_layout = tensor_info.tensor_layout();
  444. // Use _GetTensorSlice operator to split the tensor
  445. FuncGraphPtr func_graph = next_node->func_graph(); // only cnode can get the graph
  446. MS_EXCEPTION_IF_NULL(func_graph);
  447. Operator op = CreateGetTensorSliceOp(tensor_layout);
  448. InsertGetTensorSliceOp(op, next_node, func_graph, index, SPLIT_TENSOR);
  449. if (!op_info->sub_ops().empty()) {
  450. auto sub_ops = op_info->sub_ops();
  451. for (size_t i = 0; i < sub_ops.size(); i++) {
  452. if (!sub_ops.at(i).empty()) {
  453. InsertGetTensorSliceOp(sub_ops.at(i).at(0), next_node, func_graph, index, SUB);
  454. }
  455. }
  456. }
  457. }
  458. void StepSplitTensor(const AnfNodePtr &node, const FuncGraphManagerPtr &manager) {
  459. MS_EXCEPTION_IF_NULL(node);
  460. MS_EXCEPTION_IF_NULL(manager);
  461. AnfNodeIndexSet node_set = manager->node_users()[node];
  462. for (auto &node_pair : node_set) {
  463. CNodePtr use_cnode = node_pair.first->cast<CNodePtr>();
  464. if (use_cnode == nullptr || !IsValueNode<Primitive>(use_cnode->input(0))) {
  465. continue;
  466. }
  467. ValueNodePtr prim_anf_node = use_cnode->input(0)->cast<ValueNodePtr>();
  468. MS_EXCEPTION_IF_NULL(prim_anf_node);
  469. PrimitivePtr use_cnode_prim = prim_anf_node->value()->cast<PrimitivePtr>();
  470. MS_EXCEPTION_IF_NULL(use_cnode_prim);
  471. if (use_cnode_prim->name() == DEPEND && node_pair.second != 1) {
  472. continue;
  473. }
  474. if (IsParallelCareNode(use_cnode)) {
  475. SplitTensor(node, use_cnode, node_pair.second);
  476. }
  477. }
  478. }
  479. std::vector<AnfNodePtr> ReplaceOpInput(const Operator &replace_op, const std::string &instance_name,
  480. const CNodePtr &node) {
  481. OperatorArgs arg_replace_op = replace_op.second;
  482. ValuePtr pyop_instance = CreatOpInstance(arg_replace_op.first, replace_op.first, instance_name);
  483. if (pyop_instance == nullptr) {
  484. MS_LOG(EXCEPTION) << "Failure: " << replace_op.first << " CreatOpInstance failed";
  485. }
  486. OperatorParams params = arg_replace_op.second;
  487. if (node->inputs().size() < 2) {
  488. // GetNext operator dose not has input
  489. if (node->inputs().size() == 1) {
  490. return {NewValueNode(pyop_instance)};
  491. }
  492. MS_LOG(EXCEPTION) << "Failure: " << node->ToString() << " size is smaller than 2";
  493. }
  494. std::vector<AnfNodePtr> replace_input = {NewValueNode(pyop_instance), node->input(1)};
  495. if (!params.empty()) {
  496. Param param_first = *(params.begin());
  497. int32_t first_position = param_first.second;
  498. if (first_position == 1) {
  499. replace_input.pop_back();
  500. }
  501. for (auto &param : params) {
  502. AnfNodePtr val = NewValueNode(param.first.second);
  503. if (val == nullptr) {
  504. MS_LOG(EXCEPTION) << "Failure:val is nullptr";
  505. }
  506. int32_t position = param.second;
  507. (void)replace_input.insert(replace_input.begin() + position, val);
  508. }
  509. }
  510. return replace_input;
  511. }
  512. void ReplaceOneOp(const Operator &replace_op, const CNodePtr &node) {
  513. FuncGraphPtr func_graph = node->func_graph();
  514. MS_EXCEPTION_IF_NULL(func_graph);
  515. FuncGraphManagerPtr manager = func_graph->manager();
  516. if (manager == nullptr) {
  517. MS_LOG(EXCEPTION) << "Failure:AddNode error since manager is nullptr";
  518. }
  519. std::string instance_name = CreateInstanceName(node, 0);
  520. std::vector<AnfNodePtr> replace_input;
  521. replace_input = ReplaceOpInput(replace_op, instance_name, node);
  522. CNodePtr replace_node = func_graph->NewCNode(replace_input);
  523. MS_EXCEPTION_IF_NULL(replace_node);
  524. ScopePtr scope = node->scope();
  525. MS_EXCEPTION_IF_NULL(scope);
  526. replace_node->set_scope(scope);
  527. replace_node->set_in_forward_flag(true);
  528. replace_input[0]->set_scope(scope);
  529. (void)manager->Replace(node, replace_node);
  530. }
  531. void StepReplaceOp(OperatorVector replace_op, const CNodePtr &node) {
  532. // step1:get graph manager distribute_operator
  533. OperatorInfoPtr distribute_operator = node->operator_info();
  534. if (distribute_operator == nullptr) {
  535. MS_LOG(EXCEPTION) << "Failure:AddNode error since distribute_operator is nullptr";
  536. }
  537. FuncGraphPtr func_graph = node->func_graph();
  538. MS_EXCEPTION_IF_NULL(func_graph);
  539. FuncGraphManagerPtr manager = func_graph->manager();
  540. if (manager == nullptr) {
  541. MS_LOG(EXCEPTION) << "Failure:AddNode error since manager is nullptr";
  542. }
  543. // step2:traverse op_list and insert node
  544. std::reverse(replace_op.begin(), replace_op.end());
  545. auto replace_op_info = distribute_operator->replace_op_info();
  546. std::reverse(replace_op_info.begin(), replace_op_info.end());
  547. if (!replace_op_info.empty() && replace_op_info.size() != replace_op.size()) {
  548. MS_LOG(EXCEPTION) << "replace_op_info is not empty and size not equal to replace_op!";
  549. }
  550. bool replace_op_info_flag = !replace_op_info.empty();
  551. for (size_t index = 0; index < replace_op.size(); ++index) {
  552. std::string instance_name = CreateInstanceName(node, index);
  553. std::vector<AnfNodePtr> replace_input;
  554. if (index != replace_op.size() - 1) {
  555. replace_input = CreateInput(replace_op[index], node, instance_name);
  556. } else {
  557. replace_input = ReplaceOpInput(replace_op[index], instance_name, node);
  558. }
  559. CNodePtr replace_node = func_graph->NewCNode(replace_input);
  560. MS_EXCEPTION_IF_NULL(replace_node);
  561. ScopePtr scope = node->scope();
  562. MS_EXCEPTION_IF_NULL(scope);
  563. replace_node->set_scope(scope);
  564. if (index == replace_op.size() - 1) {
  565. (void)replace_node->set_operator_info(node->operator_info());
  566. }
  567. replace_node->set_in_forward_flag(true);
  568. replace_input[0]->set_scope(scope);
  569. if (replace_op_info_flag && replace_op_info[index].first) {
  570. auto new_cnode = InsertMakeTuple(replace_node, replace_op_info[index].second, func_graph);
  571. (void)manager->Replace(node, new_cnode); // using Replace function to insert node
  572. } else {
  573. (void)manager->Replace(node, replace_node); // using Replace function to insert node
  574. }
  575. }
  576. MS_LOG(INFO) << "Insert ReplaceOp success for " << distribute_operator->name();
  577. }
  578. bool IsSomePrimitive(const CNodePtr &cnode, const std::string &name) {
  579. ValueNodePtr anf_node = cnode->input(0)->cast<ValueNodePtr>();
  580. MS_EXCEPTION_IF_NULL(anf_node);
  581. PrimitivePtr prim = anf_node->value()->cast<PrimitivePtr>();
  582. return (prim->name() == name);
  583. }
  584. void StepReplaceGraph(const ReplaceGraphPtr &replace_graph, const CNodePtr &node) {
  585. MS_EXCEPTION_IF_NULL(replace_graph);
  586. MS_EXCEPTION_IF_NULL(node);
  587. MS_EXCEPTION_IF_NULL(replace_graph->second);
  588. FuncGraphPtr func_graph = node->func_graph();
  589. MS_EXCEPTION_IF_NULL(func_graph);
  590. FuncGraphManagerPtr manager = func_graph->manager();
  591. if (manager == nullptr) {
  592. MS_LOG(EXCEPTION) << "Failure:AddNode error since manager is nullptr";
  593. }
  594. for (auto &replace_input : replace_graph->first) {
  595. auto pre_node = node->input(IntToSize(replace_input.second));
  596. manager->SetEdge(replace_input.first, 1, pre_node);
  597. }
  598. // "(void)manager->Replace(replace_graph->first, pre_node);" can not be called
  599. auto replace_output = replace_graph->second;
  600. MS_EXCEPTION_IF_NULL(replace_output);
  601. (void)manager->Replace(node, replace_output);
  602. }
  603. int32_t GetTupleGetItemIndex(const CNodePtr &cnode) {
  604. MS_EXCEPTION_IF_NULL(cnode);
  605. if (cnode->inputs().size() != 3) {
  606. MS_LOG(EXCEPTION) << cnode->ToString() << " size( " << cnode->inputs().size() << " ) is not 3";
  607. }
  608. if (!cnode->input(2)->isa<ValueNode>()) {
  609. MS_LOG(EXCEPTION) << "The index of tuple getitem is not a value node";
  610. }
  611. ValuePtr tuple_index_value = GetValueNode(cnode->input(2));
  612. MS_EXCEPTION_IF_NULL(tuple_index_value);
  613. if (!tuple_index_value->isa<Int32Imm>()) {
  614. MS_LOG(EXCEPTION) << "The index of tuple getitem is not int32";
  615. }
  616. return tuple_index_value->cast<Int32ImmPtr>()->value();
  617. }
  618. // Judge whether the node is a loss, and if there are multiple outputs,
  619. // get which output is a grad according to the tuple getitem.
  620. // Currently, it is not supported that the sens is a tuple.
  621. LossNodeInfo GetLossNodeInfo(const AnfNodePtr &loss_node) {
  622. MS_EXCEPTION_IF_NULL(loss_node);
  623. FuncGraphPtr sub_graph = loss_node->func_graph();
  624. MS_EXCEPTION_IF_NULL(sub_graph);
  625. CNodePtr return_node = sub_graph->get_return();
  626. MS_EXCEPTION_IF_NULL(return_node);
  627. if (return_node->inputs().size() < 2) {
  628. MS_LOG(EXCEPTION) << "Failure: " << return_node->ToString() << " size is smaller than 2";
  629. }
  630. AnfNodePtr pre_node = return_node->input(1);
  631. MS_EXCEPTION_IF_NULL(pre_node);
  632. LossNodeInfo node_info;
  633. // return -> cast
  634. auto pre_cnode = pre_node->cast<CNodePtr>();
  635. MS_EXCEPTION_IF_NULL(pre_cnode);
  636. auto pre_prim = GetValueNode<PrimitivePtr>(pre_cnode->input(0));
  637. if (pre_prim->name() == CAST && pre_cnode->operator_info() == nullptr) {
  638. pre_node = pre_cnode->input(1);
  639. }
  640. // return -> loss
  641. if (pre_node == loss_node) {
  642. node_info.has_tuple_getitem = false;
  643. node_info.dout_index = 0;
  644. return node_info;
  645. }
  646. // return -> tuple_getitem -> loss
  647. auto cnode = pre_node->cast<CNodePtr>();
  648. MS_EXCEPTION_IF_NULL(cnode);
  649. auto current_value = cnode->input(0)->cast<ValueNodePtr>();
  650. MS_EXCEPTION_IF_NULL(current_value);
  651. PrimitivePtr current_prim = current_value->value()->cast<PrimitivePtr>();
  652. MS_EXCEPTION_IF_NULL(current_prim);
  653. // size of common cnode is larger than 1
  654. if (cnode->inputs().size() < 2) {
  655. MS_LOG(EXCEPTION) << cnode->ToString() << " size( " << cnode->inputs().size() << " ) is smaller than 2";
  656. }
  657. if ((current_prim->name() == TUPLE_GETITEM) && (cnode->input(1) == loss_node)) {
  658. // size of tuple_getitem cnode is 3
  659. auto tuple_index = GetTupleGetItemIndex(cnode);
  660. node_info.has_tuple_getitem = true;
  661. node_info.dout_index = tuple_index;
  662. return node_info;
  663. }
  664. MS_LOG(EXCEPTION) << "Invalid loss";
  665. }
  666. void InsertVirtualDivOp(const VirtualDivOp &virtual_div_op, const CNodePtr &node) {
  667. MS_EXCEPTION_IF_NULL(node);
  668. size_t node_size = node->inputs().size();
  669. FuncGraphPtr func_graph = node->func_graph();
  670. MS_EXCEPTION_IF_NULL(func_graph);
  671. FuncGraphManagerPtr manager = func_graph->manager();
  672. MS_EXCEPTION_IF_NULL(manager);
  673. for (size_t index = 1; index < node_size; ++index) {
  674. AnfNodePtr input = node->input(index);
  675. MS_EXCEPTION_IF_NULL(input);
  676. if (!input->isa<CNode>() && !input->isa<Parameter>()) { // if it is not a tensor, continue
  677. MS_LOG(INFO) << "insert div op: the index " << index << " is not tensor, skip";
  678. continue;
  679. }
  680. for (size_t pos = 0; pos < virtual_div_op.size(); ++pos) {
  681. std::string instance_name = CreateInstanceName(node, pos);
  682. InsertNode(virtual_div_op[pos], node, index, node->input(index), func_graph, instance_name);
  683. }
  684. MS_LOG(INFO) << "insert div op for input index " << index << " of node";
  685. }
  686. }
  687. std::pair<AnfNodePtr, bool> FindParameter(const AnfNodePtr &node, const FuncGraphPtr &func_graph) {
  688. if (!node->isa<Parameter>() && !node->isa<CNode>() && !node->isa<ValueNode>()) {
  689. return std::make_pair(nullptr, false);
  690. } else if (node->isa<Parameter>()) {
  691. return std::make_pair(node, false);
  692. } else if (node->isa<ValueNode>()) {
  693. if (IsValueNode<RefKey>(node)) {
  694. std::vector<AnfNodePtr> param_v = FindParameterByRefKeyNode(node, func_graph);
  695. if (param_v.size() != 1) {
  696. MS_LOG(EXCEPTION) << "FindParameterByRefKeyNode failed, return vector size must be 1, real is "
  697. << param_v.size();
  698. }
  699. return std::make_pair(node, true);
  700. }
  701. return std::make_pair(nullptr, false);
  702. } else {
  703. CNodePtr cnode = node->cast<CNodePtr>();
  704. MS_EXCEPTION_IF_NULL(cnode);
  705. if (!IsValueNode<Primitive>(cnode->input(0))) {
  706. for (size_t index = 0; index < cnode->inputs().size(); ++index) {
  707. if (!FindParameter(cnode->input(index), func_graph).first) {
  708. continue;
  709. }
  710. return FindParameter(cnode->input(index), func_graph);
  711. }
  712. } else {
  713. if (IsParallelCareNode(cnode)) {
  714. return std::make_pair(nullptr, false);
  715. } else {
  716. ValueNodePtr prim_anf_node = cnode->input(0)->cast<ValueNodePtr>();
  717. MS_EXCEPTION_IF_NULL(prim_anf_node);
  718. for (size_t index = 0; index < cnode->inputs().size(); ++index) {
  719. PrimitivePtr prim = prim_anf_node->value()->cast<PrimitivePtr>();
  720. MS_EXCEPTION_IF_NULL(prim);
  721. if (prim->name() == DEPEND && index != 1) {
  722. continue;
  723. }
  724. if (!FindParameter(cnode->input(index), func_graph).first) {
  725. continue;
  726. }
  727. return FindParameter(cnode->input(index), func_graph);
  728. }
  729. }
  730. }
  731. }
  732. return std::make_pair(nullptr, false);
  733. }
  734. std::pair<bool, CNodePtr> FindCNode(const AnfNodePtr &anode, const std::string &name, const FuncGraphPtr &func_graph) {
  735. MS_EXCEPTION_IF_NULL(anode);
  736. MS_EXCEPTION_IF_NULL(anode->func_graph());
  737. FuncGraphManagerPtr manager = anode->func_graph()->manager();
  738. MS_EXCEPTION_IF_NULL(manager);
  739. AnfNodeIndexSet node_set = manager->node_users()[anode];
  740. bool result = false;
  741. CNodePtr cnode_return = nullptr;
  742. for (auto &node_pair : node_set) {
  743. CNodePtr use_apply = node_pair.first->cast<CNodePtr>();
  744. if (use_apply == nullptr || !IsValueNode<Primitive>(use_apply->input(0))) {
  745. continue;
  746. }
  747. ValueNodePtr prim_anf_node = use_apply->input(0)->cast<ValueNodePtr>();
  748. MS_EXCEPTION_IF_NULL(prim_anf_node);
  749. PrimitivePtr node_prim = prim_anf_node->value()->cast<PrimitivePtr>();
  750. MS_EXCEPTION_IF_NULL(node_prim);
  751. if (node_prim->name() == name && node_pair.second == 1) {
  752. if (use_apply->func_graph() == func_graph) {
  753. result = true;
  754. cnode_return = use_apply;
  755. MS_LOG(INFO) << "Find Primitive " << name << " in the same func_graph";
  756. continue;
  757. }
  758. MS_LOG(INFO) << "Find Primitive " << name << " in different func_graph";
  759. }
  760. }
  761. return std::make_pair(result, cnode_return);
  762. }
  763. bool IsCastBeforMirror(const CNodePtr &node, size_t index) {
  764. // only if cast_before_mirror is true, pre node is cast and type is not float32 return true
  765. if (!ParallelContext::GetInstance()->cast_before_mirror()) {
  766. return false;
  767. }
  768. auto pre_node = node->input(index);
  769. MS_EXCEPTION_IF_NULL(pre_node);
  770. auto cnode = pre_node->cast<CNodePtr>();
  771. if (cnode == nullptr || !IsValueNode<Primitive>(cnode->input(0))) {
  772. return false;
  773. }
  774. auto pre_value_node = cnode->input(0)->cast<ValueNodePtr>();
  775. MS_EXCEPTION_IF_NULL(pre_value_node);
  776. auto pre_prim = pre_value_node->value()->cast<PrimitivePtr>();
  777. MS_EXCEPTION_IF_NULL(pre_prim);
  778. if (pre_prim->name() != CAST) {
  779. return false;
  780. }
  781. auto node_type = pre_node->Type();
  782. MS_EXCEPTION_IF_NULL(node_type);
  783. if (!node_type->isa<mindspore::TensorType>()) {
  784. MS_LOG(EXCEPTION) << "Unknown type.";
  785. }
  786. auto input_element_type = node_type->cast<mindspore::TensorTypePtr>()->element();
  787. MS_EXCEPTION_IF_NULL(input_element_type);
  788. auto type_id = input_element_type->type_id();
  789. return (type_id != kNumberTypeFloat32);
  790. }
  791. void InsertMirrorOps(const MirrorOps &mirror_ops, const CNodePtr &node) {
  792. MS_EXCEPTION_IF_NULL(node);
  793. size_t node_size = node->inputs().size();
  794. FuncGraphPtr func_graph = node->func_graph();
  795. MS_EXCEPTION_IF_NULL(func_graph);
  796. FuncGraphManagerPtr manager = func_graph->manager();
  797. MS_EXCEPTION_IF_NULL(manager);
  798. if (mirror_ops.size() != node_size - 1) {
  799. MS_LOG(EXCEPTION) << "Failure:Mirrorops's size is wrong! mirror_ops size is " << mirror_ops.size()
  800. << ", node_size is " << node_size;
  801. }
  802. for (size_t index = 1; index < node_size; ++index) {
  803. OperatorVector backward_op = mirror_ops[index - 1];
  804. if (backward_op.empty()) {
  805. continue;
  806. }
  807. std::pair<AnfNodePtr, bool> param_node_pair = FindParameter(node->input(index), func_graph);
  808. if (!param_node_pair.first) {
  809. continue;
  810. }
  811. // not a RefKey
  812. if (!param_node_pair.second) {
  813. auto next_cnode = FindCNode(param_node_pair.first, MIRROR_OPERATOR, func_graph);
  814. // if there is already a MirrorOp in the same graph, use MirrorOp CNode as a input instead
  815. if (next_cnode.first) {
  816. MS_EXCEPTION_IF_NULL(next_cnode.second);
  817. manager->SetEdge(node, SizeToInt(index), next_cnode.second);
  818. continue;
  819. }
  820. }
  821. // if the parameter found is a RefKey, or no MirrorOp is found in the same graph, insert a new MirrorOp
  822. // only one MirrorOp in backward_op
  823. if (backward_op.size() != 1) {
  824. MS_LOG(EXCEPTION) << "backward_op size must be 1, real is " << backward_op.size();
  825. }
  826. std::string instance_name = MIRROR_OP;
  827. if (IsCastBeforMirror(node, index)) {
  828. for (auto &op : backward_op) {
  829. // insert new node before the node
  830. CNodePtr cnode = node->input(index)->cast<CNodePtr>();
  831. MS_EXCEPTION_IF_NULL(cnode);
  832. AnfNodePtr pre_node = cnode->input(1);
  833. InsertNode(op, cnode, size_t(1), pre_node, func_graph, instance_name);
  834. }
  835. } else {
  836. for (auto &op : backward_op) {
  837. AnfNodePtr pre_node = node->input(index);
  838. InsertNode(op, node, index, pre_node, func_graph, instance_name);
  839. }
  840. }
  841. }
  842. }
  843. void BackwardCommunication(const OperatorInfoPtr &distribute_operator, const CNodePtr &node,
  844. const std::vector<std::pair<CNodePtr, CNodePtr>> &sens_loss_pairs) {
  845. MS_EXCEPTION_IF_NULL(distribute_operator);
  846. MS_EXCEPTION_IF_NULL(node);
  847. bool is_loss_cnode =
  848. std::any_of(sens_loss_pairs.begin(), sens_loss_pairs.end(),
  849. [node](const std::pair<CNodePtr, CNodePtr> &element) { return element.second == node; });
  850. MirrorOps mirror_ops = distribute_operator->mirror_ops();
  851. VirtualDivOp virtual_div_op = distribute_operator->virtual_div_op();
  852. // insert mirror op
  853. if (!mirror_ops.empty()) {
  854. MS_LOG(INFO) << "insert mirror op for " << distribute_operator->name();
  855. InsertMirrorOps(mirror_ops, node);
  856. }
  857. // insert virtual div op
  858. if (!virtual_div_op.empty() && is_loss_cnode) {
  859. MS_LOG(INFO) << "insert virtual div op for " << distribute_operator->name();
  860. InsertVirtualDivOp(virtual_div_op, node);
  861. }
  862. }
  863. std::string GetDisOpName(const std::string &prim_name) {
  864. std::string op_name = prim_name;
  865. if (!prim_name.empty() && (prim_name[0] == '_')) {
  866. op_name = prim_name.substr(1);
  867. }
  868. return op_name + "Info";
  869. }
  870. OperatorInfoPtr OperatorInstanceByName(const std::string &name, const PrimitiveAttrs &attrs,
  871. const std::vector<Shapes> &shape_list) {
  872. if (shape_list.size() != 2) {
  873. MS_LOG(ERROR) << "The size of shape list is not 2";
  874. return nullptr;
  875. }
  876. if (name.length() == 0) {
  877. MS_LOG(EXCEPTION) << "Length of name is zero!";
  878. }
  879. std::string distribute_opname = GetDisOpName(name);
  880. if (name == GATHERV2) {
  881. distribute_opname = name + "PInfo";
  882. auto data_parallel_iter = attrs.find(DATA_PARALLEL);
  883. if (data_parallel_iter != attrs.end()) {
  884. MS_EXCEPTION_IF_NULL(data_parallel_iter->second);
  885. if (!data_parallel_iter->second->isa<BoolImm>()) {
  886. MS_LOG(EXCEPTION) << ": data_parallel flag's type is not a bool.";
  887. }
  888. bool data_parallel = data_parallel_iter->second->cast<BoolImmPtr>()->value();
  889. if (data_parallel) {
  890. distribute_opname = name + "Info";
  891. }
  892. }
  893. }
  894. OperatorInfoPtr operator_ =
  895. (OperatorInfoPtr)DynCreator::Instance().Creat(distribute_opname, shape_list[0], shape_list[1], attrs, TOTAL_OPS);
  896. if (operator_ == nullptr) {
  897. MS_LOG(INFO) << "Creat " << name << " failed";
  898. return nullptr;
  899. }
  900. std::string origin_name = operator_->name();
  901. operator_->set_name(origin_name + std::to_string(TOTAL_OPS));
  902. MS_LOG(INFO) << "Successfully created operator " << origin_name;
  903. ++TOTAL_OPS;
  904. return operator_;
  905. }
  906. OperatorInfoPtr OperatorInstance(const PrimitivePtr &prim, const PrimitiveAttrs &attrs,
  907. const std::vector<Shapes> &shape_list) {
  908. MS_EXCEPTION_IF_NULL(prim);
  909. OperatorInfoPtr operator_ = OperatorInstanceByName(prim->name(), attrs, shape_list);
  910. if (operator_ == nullptr) {
  911. MS_LOG(INFO) << "Creat " << prim->name() << " failed, use batch parallel";
  912. operator_ = OperatorInstanceByName(BATCH_PARALLEL, attrs, shape_list);
  913. MS_EXCEPTION_IF_NULL(operator_);
  914. }
  915. return operator_;
  916. }
  917. OperatorInfoPtr NewOperatorInstance(const PrimitivePtr &prim, const PrimitiveAttrs &attrs,
  918. std::vector<Shapes> shape_list) {
  919. OperatorInfoPtr operator_ = OperatorInstance(prim, attrs, shape_list);
  920. for (size_t i = 0; i < shape_list[0].size(); ++i) {
  921. MS_LOG(INFO) << "No: " << i << " input's shape: " << ShapeToString(shape_list[0][i]);
  922. }
  923. return operator_;
  924. }
  925. StrategyPtr ExtractStrategy(std::unordered_map<std::string, ValuePtr> attrs) {
  926. ValueTuplePtr var = attrs[STRATEGY]->cast<ValueTuplePtr>();
  927. StrategyPtr strategyPtr;
  928. MS_LOG(INFO) << "Extract information: strategy " << attrs[STRATEGY]->ToString();
  929. if (var == nullptr) {
  930. MS_LOG(EXCEPTION) << "Strategy value is nullptr";
  931. }
  932. if (var->size() > 0) {
  933. std::vector<ValuePtr> elements = var->value();
  934. std::vector<Dimensions> strategy;
  935. for (uint32_t index = 0; index < elements.size(); ++index) {
  936. Dimensions dim;
  937. if (elements[index]->isa<ValueSequeue>()) {
  938. ValueTuplePtr value_tuple = elements[index]->cast<ValueTuplePtr>();
  939. std::vector<ValuePtr> value_vector = value_tuple->value();
  940. (void)std::transform(value_vector.begin(), value_vector.end(), std::back_inserter(dim),
  941. [](const ValuePtr &value) { return static_cast<int32_t>(GetValue<int>(value)); });
  942. strategy.push_back(dim);
  943. } else {
  944. MS_LOG(EXCEPTION) << "Failure:Strategy's format is wrong! Need ValueSequeue";
  945. }
  946. }
  947. if (strategy.empty()) {
  948. MS_LOG(EXCEPTION) << "ExtractStrategy:failed to extract strategy";
  949. }
  950. strategyPtr = NewStrategy(0, strategy);
  951. }
  952. return strategyPtr;
  953. }
  954. Shapes GetNodeShape(const AnfNodePtr &node) {
  955. MS_EXCEPTION_IF_NULL(node);
  956. Shapes shapes;
  957. BaseShapePtr base_shape_ptr = node->Shape();
  958. if (node->isa<CNode>()) {
  959. auto cnode = node->cast<CNodePtr>();
  960. if (IsValueNode<Primitive>(cnode->input(0))) {
  961. PrimitivePtr prim = GetValueNode<PrimitivePtr>(cnode->input(0));
  962. MS_EXCEPTION_IF_NULL(prim);
  963. if (prim->name() == MAKEREF) {
  964. AnfNodePtr ref_node = cnode->input(1);
  965. auto func_graph = cnode->func_graph();
  966. MS_EXCEPTION_IF_NULL(ref_node);
  967. MS_EXCEPTION_IF_NULL(func_graph);
  968. return GetRefKeyNodeShape(ref_node, func_graph);
  969. }
  970. }
  971. if (cnode->input(0)->isa<CNode>()) {
  972. if (cnode->inputs().size() < 2) {
  973. MS_LOG(EXCEPTION) << "GetNodeShape: " << node->ToString() << " size is samller than 2";
  974. }
  975. base_shape_ptr = cnode->input(1)->Shape();
  976. }
  977. }
  978. if (base_shape_ptr == nullptr) {
  979. MS_LOG(EXCEPTION) << "GetNodeShape: " << node->ToString() << " shape_ptr is nullptr, full name is "
  980. << node->fullname_with_scope();
  981. }
  982. auto tuple_shape_ptr = dyn_cast<abstract::TupleShape>(base_shape_ptr);
  983. if (tuple_shape_ptr != nullptr) {
  984. auto tuple_shape = tuple_shape_ptr->shape();
  985. for (auto &shape : tuple_shape) {
  986. auto each_shape = dyn_cast<abstract::Shape>(shape);
  987. MS_EXCEPTION_IF_NULL(each_shape);
  988. shapes.push_back(each_shape->shape());
  989. }
  990. } else {
  991. auto shape_ptr = dyn_cast<abstract::Shape>(base_shape_ptr);
  992. MS_EXCEPTION_IF_NULL(shape_ptr);
  993. shapes.push_back(shape_ptr->shape());
  994. }
  995. return shapes;
  996. }
  997. std::vector<AnfNodePtr> FindParameterByRefKeyNode(const AnfNodePtr &node, const FuncGraphPtr &func_graph) {
  998. MS_EXCEPTION_IF_NULL(node);
  999. MS_EXCEPTION_IF_NULL(func_graph);
  1000. std::vector<AnfNodePtr> parameters;
  1001. if (!IsValueNode<RefKey>(node)) {
  1002. MS_LOG(ERROR) << "The node is not a ref key";
  1003. return parameters;
  1004. }
  1005. auto ref_key = GetValueNode<RefKeyPtr>(node);
  1006. MS_EXCEPTION_IF_NULL(ref_key);
  1007. auto name = ref_key->tag();
  1008. auto manager = func_graph->manager();
  1009. MS_EXCEPTION_IF_NULL(manager);
  1010. auto roots = manager->roots();
  1011. if (roots.size() != 1) {
  1012. MS_LOG(ERROR) << "The size of roots ( " << roots.size() << " ) is not 1";
  1013. return parameters;
  1014. }
  1015. FuncGraphPtr root_g = roots.back();
  1016. MS_EXCEPTION_IF_NULL(root_g);
  1017. for (auto &param_node : root_g->parameters()) {
  1018. auto param = param_node->cast<ParameterPtr>();
  1019. if (param && (name == param->name())) {
  1020. parameters.push_back(param_node);
  1021. MS_LOG(INFO) << "The name of ref key is: " << name;
  1022. return parameters;
  1023. }
  1024. }
  1025. MS_LOG(ERROR) << "The name of ref key is: " << name << ", but have not found the parameter";
  1026. return parameters;
  1027. }
  1028. Shapes GetRefKeyNodeShape(const AnfNodePtr &node, const FuncGraphPtr &func_graph) {
  1029. MS_EXCEPTION_IF_NULL(node);
  1030. MS_EXCEPTION_IF_NULL(func_graph);
  1031. std::vector<AnfNodePtr> parameters = FindParameterByRefKeyNode(node, func_graph);
  1032. if (parameters.size() != 1) {
  1033. MS_LOG(EXCEPTION) << "Find parameter by ref key node failed";
  1034. }
  1035. Shapes input_shapes;
  1036. input_shapes = GetNodeShape(parameters[0]);
  1037. if (input_shapes.size() != 1) {
  1038. MS_LOG(EXCEPTION) << "Get input shape failed";
  1039. }
  1040. MS_LOG(INFO) << "The parameter shape is " << ShapeToString(input_shapes[0]);
  1041. return input_shapes;
  1042. }
  1043. std::vector<Shapes> ExtractShape(const CNodePtr &node) {
  1044. MS_EXCEPTION_IF_NULL(node);
  1045. Shapes shape_inputs, shape_outputs;
  1046. std::vector<Shapes> shape_all;
  1047. std::vector<AnfNodePtr> all_inputs = node->inputs();
  1048. std::vector<AnfNodePtr> node_inputs{all_inputs.begin() + 1, all_inputs.end()};
  1049. size_t inputs_size = all_inputs.size();
  1050. for (size_t i = 1; i < inputs_size; ++i) {
  1051. Shapes input_shapes;
  1052. AnfNodePtr input = all_inputs[i];
  1053. if (IsValueNode<RefKey>(input)) {
  1054. auto func_graph = node->func_graph();
  1055. MS_EXCEPTION_IF_NULL(func_graph);
  1056. std::vector<AnfNodePtr> parameters = FindParameterByRefKeyNode(input, func_graph);
  1057. if (parameters.size() != 1) {
  1058. MS_LOG(EXCEPTION) << "Find parameter by ref key node failed";
  1059. }
  1060. std::pair<AnfNodePtr, int> node_pair = std::make_pair(node, SizeToInt(i));
  1061. g_RefMap[parameters[0]] = node_pair;
  1062. input_shapes = GetRefKeyNodeShape(input, func_graph);
  1063. } else if (IsValueNode<Tensor>(input) || input->isa<CNode>() || input->isa<Parameter>()) {
  1064. input_shapes = GetNodeShape(input);
  1065. } else {
  1066. continue;
  1067. }
  1068. if (input_shapes.size() != 1) {
  1069. MS_LOG(EXCEPTION) << "ExtractShape:Get input shape failed";
  1070. }
  1071. shape_inputs.push_back(input_shapes[0]);
  1072. }
  1073. shape_all.push_back(shape_inputs);
  1074. // extract out shape
  1075. shape_outputs = GetNodeShape(node);
  1076. shape_all.push_back(shape_outputs);
  1077. return shape_all;
  1078. }
  1079. std::pair<AnfNodePtr, int> FindParallelCareNode(const AnfNodePtr &node) {
  1080. MS_EXCEPTION_IF_NULL(node);
  1081. FuncGraphPtr func_graph = node->func_graph();
  1082. MS_EXCEPTION_IF_NULL(func_graph);
  1083. FuncGraphManagerPtr manager = func_graph->manager();
  1084. MS_EXCEPTION_IF_NULL(manager);
  1085. AnfNodeIndexSet node_set = manager->node_users()[node];
  1086. for (auto &node_pair : node_set) {
  1087. CNodePtr cnode = node_pair.first->cast<CNodePtr>();
  1088. MS_EXCEPTION_IF_NULL(cnode);
  1089. if (!IsValueNode<Primitive>(cnode->input(0))) {
  1090. continue;
  1091. }
  1092. ValueNodePtr prim_node_anf = cnode->input(0)->cast<ValueNodePtr>();
  1093. MS_EXCEPTION_IF_NULL(prim_node_anf);
  1094. PrimitivePtr node_prim = prim_node_anf->value()->cast<PrimitivePtr>();
  1095. MS_EXCEPTION_IF_NULL(node_prim);
  1096. if (node_prim->name() == DEPEND && node_pair.second != 1) {
  1097. continue;
  1098. }
  1099. if (IsParallelCareNode(cnode) && cnode->operator_info() != nullptr) {
  1100. return node_pair;
  1101. } else if (FindParallelCareNode(node_pair.first).first != nullptr) {
  1102. return FindParallelCareNode(node_pair.first);
  1103. }
  1104. }
  1105. return std::make_pair(nullptr, 0);
  1106. }
  1107. std::pair<AnfNodePtr, int> FindSubGraph(const FuncGraphPtr &graph, const AnfNodePtr &parameter) {
  1108. MS_EXCEPTION_IF_NULL(graph);
  1109. MS_EXCEPTION_IF_NULL(parameter);
  1110. FuncGraphManagerPtr manager = graph->manager();
  1111. MS_EXCEPTION_IF_NULL(manager);
  1112. std::pair<AnfNodePtr, int> prim_anf_node_pair = FindParallelCareNode(parameter);
  1113. if (prim_anf_node_pair.first != nullptr) {
  1114. return prim_anf_node_pair;
  1115. } else {
  1116. AnfNodeIndexSet param_sub_set = manager->node_users()[parameter];
  1117. for (auto &param_pair : param_sub_set) {
  1118. CNodePtr graph_cnode = param_pair.first->cast<CNodePtr>();
  1119. if ((graph_cnode == nullptr) || !graph_cnode->input(0)->isa<CNode>()) {
  1120. continue;
  1121. }
  1122. CNodePtr graph_cnode_inp0 = graph_cnode->input(0)->cast<CNodePtr>();
  1123. if (!IsValueNode<FuncGraph>(graph_cnode_inp0->input(1))) {
  1124. continue;
  1125. }
  1126. FuncGraphPtr graph_sub = GetValueNode<FuncGraphPtr>(graph_cnode_inp0->input(1));
  1127. auto parameters = graph_sub->parameters();
  1128. if (IntToSize(param_pair.second - 1) >= parameters.size()) {
  1129. MS_LOG(EXCEPTION) << "The index is out of range, index is " << param_pair.second - 1 << ", vector size is "
  1130. << parameters.size();
  1131. }
  1132. std::pair<AnfNodePtr, int> res = FindSubGraph(graph_sub, parameters[IntToSize(param_pair.second - 1)]);
  1133. if (res.first != nullptr) {
  1134. return res;
  1135. }
  1136. }
  1137. }
  1138. return std::make_pair(nullptr, 0);
  1139. }
  1140. void SetParallelShape(const AnfNodePtr &parameter, const std::pair<AnfNodePtr, int> &res) {
  1141. MS_EXCEPTION_IF_NULL(parameter);
  1142. AbstractBasePtr abstract = parameter->abstract();
  1143. MS_EXCEPTION_IF_NULL(abstract);
  1144. MS_LOG(DEBUG) << "SetParallelShape " << parameter->ToString() << " shape " << parameter->Shape()->ToString();
  1145. CNodePtr cnode = res.first->cast<CNodePtr>();
  1146. MS_EXCEPTION_IF_NULL(cnode);
  1147. OperatorInfoPtr distribute_operator = cnode->operator_info();
  1148. if (distribute_operator == nullptr) {
  1149. MS_LOG(EXCEPTION) << "Failure:node " << cnode->ToString() << " 's OperatorInfoPtr is nullptr";
  1150. }
  1151. if (IntToSize(res.second - 1) >= distribute_operator->inputs_tensor_info().size()) {
  1152. MS_LOG(EXCEPTION) << "The index is out of range, index is " << res.second - 1 << ", vector size is "
  1153. << distribute_operator->inputs_tensor_info().size();
  1154. }
  1155. TensorInfo tensorinfo_in = distribute_operator->inputs_tensor_info()[IntToSize(res.second - 1)];
  1156. Shape slice_shape = tensorinfo_in.slice_shape();
  1157. MS_LOG(DEBUG) << "SetParallelShape slice_shape " << parameter->ToString() << " shape "
  1158. << MakeValue(slice_shape)->ToString();
  1159. std::shared_ptr<abstract::BaseShape> parallel_shape = std::make_shared<abstract::Shape>(slice_shape);
  1160. MS_EXCEPTION_IF_NULL(parallel_shape);
  1161. // Don't modify it in-place as the pointer of this AbstractValue may used as cache key in StaticAnalysis.
  1162. auto cloned_abstract = abstract->Clone();
  1163. MS_EXCEPTION_IF_NULL(cloned_abstract);
  1164. cloned_abstract->set_shape(parallel_shape);
  1165. parameter->set_abstract(cloned_abstract);
  1166. TensorLayout tensor_layout = tensorinfo_in.tensor_layout();
  1167. ParameterPtr parameter_ptr = parameter->cast<ParameterPtr>();
  1168. MS_EXCEPTION_IF_NULL(parameter_ptr);
  1169. parameter_ptr->set_tensor_layout(std::make_shared<TensorLayout>(tensor_layout));
  1170. }
  1171. void CoverSliceShape(const FuncGraphPtr &root) {
  1172. MS_EXCEPTION_IF_NULL(root);
  1173. auto parameters = root->parameters();
  1174. for (auto &parameter : parameters) {
  1175. MS_EXCEPTION_IF_NULL(parameter->Shape());
  1176. auto iter = g_RefMap.find(parameter);
  1177. if (iter != g_RefMap.end()) {
  1178. SetParallelShape(parameter, g_RefMap[parameter]);
  1179. continue;
  1180. }
  1181. std::pair<AnfNodePtr, int> res = FindSubGraph(root, parameter);
  1182. if (res.first == nullptr) {
  1183. MS_LOG(INFO) << "Parameter " << parameter->ToString() << " don't need to set parallel shape";
  1184. } else {
  1185. SetParallelShape(parameter, res);
  1186. MS_LOG(DEBUG) << "Parameter " << parameter->ToString() << " shape " << parameter->Shape()->ToString();
  1187. }
  1188. }
  1189. g_RefMap.clear();
  1190. }
  1191. bool ParameterIsCloned(const FuncGraphPtr &root, const AnfNodePtr &parameter_node) {
  1192. MS_EXCEPTION_IF_NULL(root);
  1193. MS_EXCEPTION_IF_NULL(parameter_node);
  1194. FuncGraphManagerPtr manager = root->manager();
  1195. MS_EXCEPTION_IF_NULL(manager);
  1196. auto cloned_parameter = parameter_node->cast<ParameterPtr>();
  1197. MS_EXCEPTION_IF_NULL(cloned_parameter);
  1198. // find the clone parameter
  1199. if (!cloned_parameter->has_default()) {
  1200. return false;
  1201. }
  1202. auto param_value = std::dynamic_pointer_cast<ParamValuePy>(cloned_parameter->default_param());
  1203. py::object clone_info = parse::python_adapter::GetPyObjAttr(param_value->value(), CLONE_INFO);
  1204. bool cloned = py::cast<bool>(parse::python_adapter::GetPyObjAttr(clone_info, CLONED));
  1205. if (!cloned) {
  1206. return false;
  1207. }
  1208. MS_LOG(INFO) << "The parameter: " << cloned_parameter->name() << " is cloned";
  1209. return true;
  1210. }
  1211. void SetClonedTensorShapeForOptimizer(const FuncGraphPtr &root) {
  1212. MS_EXCEPTION_IF_NULL(root);
  1213. for (auto &cloned_parameter_node : root->parameters()) {
  1214. MS_EXCEPTION_IF_NULL(cloned_parameter_node);
  1215. auto cloned_parameter = cloned_parameter_node->cast<ParameterPtr>();
  1216. MS_EXCEPTION_IF_NULL(cloned_parameter);
  1217. if (!ParameterIsCloned(root, cloned_parameter_node)) {
  1218. continue;
  1219. }
  1220. // get the cloned index
  1221. auto param_value = std::dynamic_pointer_cast<ParamValuePy>(cloned_parameter->default_param());
  1222. py::object cloned_info = parse::python_adapter::GetPyObjAttr(param_value->value(), CLONE_INFO);
  1223. int32_t cloned_index = py::cast<int32_t>(parse::python_adapter::GetPyObjAttr(cloned_info, CLONED_INDEX));
  1224. // find the be cloned parameter
  1225. bool found_be_cloned_parameter = false;
  1226. ParameterPtr cloned_from_parameter = nullptr;
  1227. AnfNodePtr cloned_from_node = nullptr;
  1228. for (auto &be_cloned_parameter_node : root->parameters()) {
  1229. MS_EXCEPTION_IF_NULL(be_cloned_parameter_node);
  1230. auto be_cloned_parameter = be_cloned_parameter_node->cast<ParameterPtr>();
  1231. MS_EXCEPTION_IF_NULL(be_cloned_parameter);
  1232. if (!be_cloned_parameter->has_default()) {
  1233. continue;
  1234. }
  1235. auto param_value_cloned = std::dynamic_pointer_cast<ParamValuePy>(be_cloned_parameter->default_param());
  1236. py::object be_cloned_info = parse::python_adapter::GetPyObjAttr(param_value_cloned->value(), CLONE_INFO);
  1237. if (!py::cast<bool>(parse::python_adapter::GetPyObjAttr(be_cloned_info, BE_CLONED))) {
  1238. continue;
  1239. }
  1240. // get the be cloned index
  1241. py::list be_cloned_index = parse::python_adapter::GetPyObjAttr(be_cloned_info, BE_CLONED_INDEX);
  1242. for (auto &index : be_cloned_index) {
  1243. if (cloned_index == py::cast<int32_t>(index)) {
  1244. found_be_cloned_parameter = true;
  1245. cloned_from_parameter = be_cloned_parameter;
  1246. cloned_from_node = be_cloned_parameter_node;
  1247. break;
  1248. }
  1249. }
  1250. }
  1251. if (found_be_cloned_parameter) {
  1252. // set the shape and tensor layout for cloned parameter
  1253. cloned_parameter->set_tensor_layout(cloned_from_parameter->tensor_layout());
  1254. MS_EXCEPTION_IF_NULL(cloned_parameter_node->abstract());
  1255. MS_EXCEPTION_IF_NULL(cloned_from_node->abstract());
  1256. auto cloned_abstract = cloned_parameter_node->abstract()->Clone();
  1257. MS_EXCEPTION_IF_NULL(cloned_abstract);
  1258. cloned_abstract->set_shape(cloned_from_node->abstract()->GetShapeTrack());
  1259. cloned_parameter_node->set_abstract(cloned_abstract);
  1260. MS_LOG(INFO) << "The parameter: " << cloned_parameter->name()
  1261. << " is cloned, the be cloned parameter is: " << cloned_from_parameter->name()
  1262. << ", clone index is: " << cloned_index;
  1263. } else {
  1264. MS_LOG(EXCEPTION) << "The parameter: " << cloned_parameter->name() << " is cloned, cloned index is "
  1265. << cloned_index << ", but not found the be cloned parameter";
  1266. }
  1267. }
  1268. }
  1269. void SetVirtualDatasetStrategy(const CNodePtr &node) {
  1270. MS_EXCEPTION_IF_NULL(node);
  1271. PrimitivePtr prim = GetValueNode<PrimitivePtr>(node->input(0));
  1272. MS_EXCEPTION_IF_NULL(prim);
  1273. if (prim->name() == VIRTUAL_DATA_SET) {
  1274. CheckGlobalDeviceManager();
  1275. int32_t dev_num = SizeToInt(g_device_manager->GetDeviceListByStageId(0).size());
  1276. auto attrs_temp = prim->attrs();
  1277. std::vector<Shapes> shape_list = ExtractShape(node);
  1278. if (shape_list.empty()) {
  1279. MS_LOG(EXCEPTION) << "Failure:node " << node->ToString() << " failed to extract shape";
  1280. }
  1281. std::vector<ValuePtr> elements;
  1282. for (size_t i = 0; i < shape_list[0].size(); i++) {
  1283. if (shape_list[0][i].empty()) {
  1284. MS_LOG(EXCEPTION) << "shape_list[ " << i << " ].size() is zero";
  1285. }
  1286. std::vector<int32_t> input_strategy = {dev_num};
  1287. for (size_t j = 1; j < shape_list[0][i].size(); j++) {
  1288. input_strategy.push_back(1);
  1289. }
  1290. elements.push_back(MakeValue(input_strategy));
  1291. }
  1292. ValueTuplePtr strategy = std::make_shared<ValueTuple>(elements);
  1293. attrs_temp[STRATEGY] = strategy;
  1294. (void)prim->SetAttrs(attrs_temp);
  1295. }
  1296. }
  1297. void ExtractInformation(const std::vector<AnfNodePtr> &all_nodes) {
  1298. // load strategy map from checkpoint
  1299. StrategyMap stra_map;
  1300. if (StrategyCheckpoint::GetInstance().LoadCheckPointOn()) {
  1301. if (StrategyCheckpoint::GetInstance().Load(&stra_map) != SUCCESS) {
  1302. MS_LOG(EXCEPTION) << "Load strategy checkpoint failed";
  1303. }
  1304. }
  1305. for (auto &node : all_nodes) {
  1306. auto cnode = node->cast<CNodePtr>();
  1307. if ((cnode == nullptr) || !IsValueNode<Primitive>(cnode->input(0))) {
  1308. continue;
  1309. }
  1310. SetVirtualDatasetStrategy(cnode);
  1311. ValueNodePtr prim_anf_node = cnode->input(0)->cast<ValueNodePtr>();
  1312. PrimitivePtr prim = GetValueNode<PrimitivePtr>(prim_anf_node);
  1313. auto attrs = prim->attrs();
  1314. MS_LOG(INFO) << "extract information: node: " << node->ToString() << " prim " << prim->name();
  1315. if (IsParallelCareNode(cnode)) {
  1316. std::vector<Shapes> shape_list = ExtractShape(cnode);
  1317. if (shape_list.empty()) {
  1318. MS_LOG(EXCEPTION) << "Failure:node " << node->ToString() << " failed to extract shape";
  1319. }
  1320. OperatorInfoPtr operator_ = OperatorInstance(prim, attrs, shape_list);
  1321. if (operator_ == nullptr) {
  1322. MS_LOG(EXCEPTION) << "Failure:Primitive " << prim->name() << " OperatorInstance failed";
  1323. }
  1324. auto &inputs = cnode->inputs();
  1325. std::vector<ValuePtr> input_value;
  1326. for (size_t index = 1; index < inputs.size(); ++index) {
  1327. if (inputs[index]->isa<ValueNode>()) {
  1328. input_value.push_back(GetValueNode(inputs[index]));
  1329. } else {
  1330. input_value.emplace_back(nullptr);
  1331. }
  1332. }
  1333. StrategyPtr strategyPtr = nullptr;
  1334. (*operator_).set_input_value(input_value);
  1335. (*operator_).set_outputs_dtype(cnode->Type());
  1336. (*operator_).set_cnode(cnode);
  1337. if (prim->name() == RESHAPE) {
  1338. (void)cnode->set_operator_info(operator_);
  1339. continue;
  1340. }
  1341. // load strategy checkpoint
  1342. // key of strategy map
  1343. std::string strategy_key_name = NodeParameterName(cnode);
  1344. bool load_strategy_from_ckpt =
  1345. StrategyCheckpoint::GetInstance().LoadCheckPointOn() && stra_map.find(strategy_key_name) != stra_map.end();
  1346. if (!StrategyFound(attrs) && !load_strategy_from_ckpt) {
  1347. MS_LOG(INFO) << "ExtractInformation: the strategy of node " << node->ToString() << " prim " << prim->name()
  1348. << " is empty, using batch parallel";
  1349. std::shared_ptr<std::vector<Dimensions>> strategy_v_ptr = operator_->GenerateBatchStrategies();
  1350. if (strategy_v_ptr == nullptr) {
  1351. MS_LOG(EXCEPTION) << "Failure:Generate batch parallel strategy failed";
  1352. }
  1353. std::vector<ValuePtr> elements;
  1354. for (size_t i = 0; i < strategy_v_ptr->size(); i++) {
  1355. elements.push_back(MakeValue((*strategy_v_ptr)[i]));
  1356. }
  1357. ValueTuplePtr strategy = std::make_shared<ValueTuple>(elements);
  1358. // display the strategy generated by batch parallel
  1359. attrs[GEN_STRATEGY] = strategy;
  1360. (void)prim->SetAttrs(attrs);
  1361. MS_LOG(INFO) << "node " << node->ToString() << " prim " << prim->name() << " batch parallel strategy is "
  1362. << attrs[GEN_STRATEGY]->ToString();
  1363. strategyPtr = NewStrategy(0, *strategy_v_ptr);
  1364. } else if (load_strategy_from_ckpt) {
  1365. strategyPtr = stra_map[strategy_key_name];
  1366. } else {
  1367. strategyPtr = ExtractStrategy(attrs);
  1368. }
  1369. if (strategyPtr != nullptr) {
  1370. if (operator_->Init(strategyPtr) == FAILED) {
  1371. MS_LOG(EXCEPTION) << "Failure:operator " << prim->name() << " init failed";
  1372. }
  1373. (void)cnode->set_operator_info(operator_);
  1374. } else {
  1375. MS_LOG(EXCEPTION) << "ERROR:strategy_ptr is nullptr";
  1376. }
  1377. }
  1378. }
  1379. }
  1380. TensorLayout GetInputLayoutFromCNode(const std::pair<AnfNodePtr, int> &node_pair) {
  1381. CNodePtr cnode = node_pair.first->cast<CNodePtr>();
  1382. MS_EXCEPTION_IF_NULL(cnode);
  1383. OperatorInfoPtr distribute_operator = GetDistributeOperator(cnode);
  1384. MS_EXCEPTION_IF_NULL(distribute_operator);
  1385. int index = node_pair.second;
  1386. if (index > SizeToInt(distribute_operator->inputs_tensor_info().size())) {
  1387. MS_LOG(EXCEPTION) << "The index is out of range, the node_pair.second is " << index - 1 << ", the vector size is "
  1388. << distribute_operator->inputs_tensor_info().size();
  1389. }
  1390. TensorInfo tensorinfo_in = distribute_operator->inputs_tensor_info()[IntToSize(index - 1)];
  1391. TensorLayout tensorlayout_in = tensorinfo_in.tensor_layout();
  1392. return tensorlayout_in;
  1393. }
  1394. // if reshape's output connect to several primitive, return the first layout found
  1395. std::shared_ptr<TensorLayout> FindNextLayout(const CNodePtr &cnode) {
  1396. MS_EXCEPTION_IF_NULL(cnode);
  1397. MS_EXCEPTION_IF_NULL(cnode->func_graph());
  1398. FuncGraphManagerPtr manager = cnode->func_graph()->manager();
  1399. MS_EXCEPTION_IF_NULL(manager);
  1400. AnfNodeIndexSet node_set = manager->node_users()[cnode];
  1401. for (auto &node_pair : node_set) {
  1402. CNodePtr use_apply = node_pair.first->cast<CNodePtr>();
  1403. if (use_apply == nullptr || !IsValueNode<Primitive>(use_apply->input(0))) {
  1404. continue;
  1405. }
  1406. ValueNodePtr prim_anf_node = use_apply->input(0)->cast<ValueNodePtr>();
  1407. MS_EXCEPTION_IF_NULL(prim_anf_node);
  1408. PrimitivePtr node_prim = prim_anf_node->value()->cast<PrimitivePtr>();
  1409. MS_EXCEPTION_IF_NULL(node_prim);
  1410. MS_LOG(INFO) << "FindNextLayout prim " << node_prim->name();
  1411. if (node_prim->name() == DEPEND && node_pair.second != 1) {
  1412. continue;
  1413. }
  1414. if (IsParallelCareNode(use_apply) && (use_apply->operator_info() != nullptr)) {
  1415. MS_LOG(INFO) << "FindNextLayout success prim " << node_prim->name();
  1416. auto layout = GetInputLayoutFromCNode(node_pair);
  1417. return std::make_shared<TensorLayout>(layout);
  1418. }
  1419. MS_LOG(DEBUG) << "FindNextLayout failed prim " << node_prim->name() << " " << IsParallelCareNode(use_apply)
  1420. << " " << (use_apply->operator_info() != nullptr);
  1421. auto layout_ptr = FindNextLayout(use_apply);
  1422. if (layout_ptr) {
  1423. return layout_ptr;
  1424. }
  1425. }
  1426. MS_LOG(WARNING) << "FindNextLayout return nullptr, if reshape is not the last primitive, there must be some error";
  1427. return nullptr;
  1428. }
  1429. std::shared_ptr<TensorLayout> GetOutputLayoutFromCNode(const CNodePtr &cnode, size_t output_index) {
  1430. MS_EXCEPTION_IF_NULL(cnode);
  1431. OperatorInfoPtr distribute_operator = GetDistributeOperator(cnode);
  1432. MS_EXCEPTION_IF_NULL(distribute_operator);
  1433. if (distribute_operator->outputs_tensor_info().size() < output_index) {
  1434. MS_LOG(EXCEPTION) << "outputs_tensor_info size is " << distribute_operator->inputs_tensor_info().size()
  1435. << ", must be less than output_index " << output_index;
  1436. }
  1437. TensorInfo tensorinfo_out = distribute_operator->outputs_tensor_info()[output_index];
  1438. TensorLayout tensorlayout_out = tensorinfo_out.tensor_layout();
  1439. return std::make_shared<TensorLayout>(tensorlayout_out);
  1440. }
  1441. std::shared_ptr<TensorLayout> FindPrevParallelCareNodeLayout(const AnfNodePtr &node, size_t output_index) {
  1442. if (!node->isa<CNode>()) {
  1443. return nullptr;
  1444. }
  1445. CNodePtr cnode = node->cast<CNodePtr>();
  1446. if (!IsValueNode<Primitive>(cnode->input(0))) {
  1447. return nullptr;
  1448. }
  1449. if (IsParallelCareNode(cnode) && (cnode->operator_info() != nullptr)) {
  1450. auto layout_ptr = GetOutputLayoutFromCNode(cnode, output_index);
  1451. if (!layout_ptr) {
  1452. MS_LOG(EXCEPTION) << "Failure:GetLayoutFromCNode failed";
  1453. }
  1454. return layout_ptr;
  1455. }
  1456. return nullptr;
  1457. }
  1458. std::shared_ptr<TensorLayout> CreateParameterLayout(const AnfNodePtr &node) {
  1459. // Create DataParallel tensor layout for parameter(support WideDeep).
  1460. CheckGlobalDeviceManager();
  1461. int32_t dev_num = SizeToInt(g_device_manager->GetDeviceListByStageId(0).size());
  1462. TensorLayout input_tensor_layout;
  1463. // create input_shape
  1464. Shapes inputs_shape = GetNodeShape(node);
  1465. Shape input_shape_array = inputs_shape[0];
  1466. if (input_shape_array.empty()) {
  1467. MS_LOG(EXCEPTION) << "Don't support reshape a scalar parameter.";
  1468. }
  1469. // create tensor_map
  1470. size_t shape_size = input_shape_array.size();
  1471. TensorMap input_tensor_map_array(SizeToInt(shape_size) - 1, -1);
  1472. input_tensor_map_array.insert(input_tensor_map_array.begin(), 0);
  1473. // create dev_matrix
  1474. Shape dev_matrix_array = {dev_num};
  1475. if (input_tensor_layout.InitFromVector(dev_matrix_array, input_tensor_map_array, input_shape_array) != SUCCESS) {
  1476. MS_LOG(EXCEPTION) << "Create tensor layout for parameter failed.";
  1477. }
  1478. return std::make_shared<TensorLayout>(input_tensor_layout);
  1479. }
  1480. std::shared_ptr<TensorLayout> FindPrevLayout(const AnfNodePtr &node) {
  1481. if (node->isa<Parameter>()) {
  1482. return CreateParameterLayout(node);
  1483. }
  1484. if (!node->isa<CNode>()) {
  1485. return nullptr;
  1486. }
  1487. CNodePtr cnode = node->cast<CNodePtr>();
  1488. if (!IsValueNode<Primitive>(cnode->input(0))) {
  1489. return nullptr;
  1490. }
  1491. if (IsParallelCareNode(cnode) && (cnode->operator_info() != nullptr)) {
  1492. auto layout_ptr = GetOutputLayoutFromCNode(cnode, 0);
  1493. if (!layout_ptr) {
  1494. MS_LOG(EXCEPTION) << "Failure:GetLayoutFromCNode failed";
  1495. }
  1496. return layout_ptr;
  1497. }
  1498. ValueNodePtr prim_anf_node = cnode->input(0)->cast<ValueNodePtr>();
  1499. PrimitivePtr prim = prim_anf_node->value()->cast<PrimitivePtr>();
  1500. if (prim->name() == TUPLE_GETITEM) {
  1501. auto tuple_index = GetTupleGetItemIndex(cnode);
  1502. auto layout_ptr = FindPrevParallelCareNodeLayout(cnode->input(1), IntToSize(tuple_index));
  1503. if (!layout_ptr) {
  1504. MS_LOG(EXCEPTION)
  1505. << " Failure:FindPrevLayout failed, tuple_getitem before reshape, but there does not exit a parallel care node "
  1506. "before tuple_getitem!";
  1507. }
  1508. return layout_ptr;
  1509. }
  1510. for (size_t index = 0; index < cnode->inputs().size(); ++index) {
  1511. if (prim->name() == DEPEND && index != 1) {
  1512. continue;
  1513. }
  1514. auto layout_ptr = FindPrevLayout(cnode->inputs()[index]);
  1515. if (!layout_ptr) {
  1516. continue;
  1517. }
  1518. return layout_ptr;
  1519. }
  1520. MS_LOG(WARNING) << "FindPrevLayout return nullptr, if reshape is not the first primitive, there must be some error";
  1521. return nullptr;
  1522. }
  1523. void ReshapeInit(const std::vector<AnfNodePtr> &all_nodes) {
  1524. for (auto &node : all_nodes) {
  1525. auto cnode = node->cast<CNodePtr>();
  1526. if ((cnode == nullptr) || !IsValueNode<Primitive>(cnode->input(0))) {
  1527. continue;
  1528. }
  1529. ValueNodePtr prim_anf_node = cnode->input(0)->cast<ValueNodePtr>();
  1530. if (!IsParallelCareNode(cnode) || (cnode->operator_info() == nullptr)) {
  1531. continue;
  1532. }
  1533. PrimitivePtr prim = GetValueNode<PrimitivePtr>(prim_anf_node);
  1534. MS_EXCEPTION_IF_NULL(prim);
  1535. OperatorInfoPtr operator_info = cnode->operator_info();
  1536. if (operator_info == nullptr) {
  1537. MS_LOG(EXCEPTION) << "Failure:Primitive " << prim->ToString() << " OperatorInstance is nullptr";
  1538. }
  1539. if (prim->name() != RESHAPE) {
  1540. continue;
  1541. }
  1542. auto attrs = prim->attrs();
  1543. if (StrategyFound(attrs)) {
  1544. MS_LOG(EXCEPTION) << "Setting strategy for Reshape goes for nothing!";
  1545. }
  1546. MS_ASSERT(cnode->inputs().size() == 3);
  1547. auto prev_layout_ptr = FindPrevLayout(cnode->input(1));
  1548. if (prev_layout_ptr) {
  1549. auto reshape_info_ptr = std::dynamic_pointer_cast<ReshapeInfo>(operator_info);
  1550. reshape_info_ptr->SetInputLayout(*prev_layout_ptr);
  1551. }
  1552. auto next_layout_ptr = FindNextLayout(cnode);
  1553. if (next_layout_ptr) {
  1554. auto reshape_info_ptr = std::dynamic_pointer_cast<ReshapeInfo>(operator_info);
  1555. reshape_info_ptr->SetOutputLayout(*next_layout_ptr);
  1556. }
  1557. if (operator_info->Init(nullptr) == FAILED) {
  1558. MS_LOG(EXCEPTION) << "Failure:operator " << prim->ToString() << " init failed";
  1559. }
  1560. }
  1561. }
  1562. CNodePtr FindLossCNode(const FuncGraphPtr &func_graph) {
  1563. MS_EXCEPTION_IF_NULL(func_graph);
  1564. CNodePtr return_node = func_graph->get_return();
  1565. MS_EXCEPTION_IF_NULL(return_node);
  1566. if (return_node->size() < 2) {
  1567. MS_LOG(EXCEPTION) << "Failure: " << return_node->ToString() << " size is smaller than 2";
  1568. }
  1569. AnfNodePtr pre_node = return_node->input(1);
  1570. MS_EXCEPTION_IF_NULL(pre_node);
  1571. auto pre_cnode = pre_node->cast<CNodePtr>();
  1572. if (pre_cnode == nullptr) {
  1573. return nullptr;
  1574. }
  1575. auto current_prim = GetValueNode<PrimitivePtr>(pre_cnode->input(0));
  1576. // return -> cast
  1577. if (current_prim->name() == CAST && pre_cnode->operator_info() == nullptr) {
  1578. pre_cnode = pre_cnode->input(1)->cast<CNodePtr>();
  1579. MS_EXCEPTION_IF_NULL(pre_cnode);
  1580. current_prim = GetValueNode<PrimitivePtr>(pre_cnode->input(0));
  1581. }
  1582. // notice: the GetNext op has not input
  1583. if (INVALID_LOSS_OPS.find(current_prim->name()) != INVALID_LOSS_OPS.end()) {
  1584. MS_LOG(INFO) << "The loss is: " << current_prim->name();
  1585. return pre_cnode;
  1586. }
  1587. // size of common cnode is larger than 1
  1588. if (pre_cnode->size() < 2) {
  1589. MS_LOG(EXCEPTION) << pre_cnode->ToString() << " size( " << pre_cnode->inputs().size() << " ) is smaller than 2";
  1590. }
  1591. // return -> tuple_getitem -> loss
  1592. if (current_prim->name() == TUPLE_GETITEM) {
  1593. AnfNodePtr pre_pre_node = pre_cnode->input(1);
  1594. MS_EXCEPTION_IF_NULL(pre_pre_node);
  1595. auto pre_pre_cnode = pre_pre_node->cast<CNodePtr>();
  1596. auto value = pre_pre_cnode->input(0)->cast<ValueNodePtr>();
  1597. MS_EXCEPTION_IF_NULL(value);
  1598. PrimitivePtr prim = value->value()->cast<PrimitivePtr>();
  1599. MS_EXCEPTION_IF_NULL(prim);
  1600. MS_LOG(DEBUG) << "The loss name is " << prim->name();
  1601. return pre_pre_cnode;
  1602. }
  1603. // return -> make_tuple
  1604. if (current_prim->name() == MAKE_TUPLE) {
  1605. MS_LOG(EXCEPTION) << "The loss have make_tuple, it is not supported";
  1606. }
  1607. // return -> loss
  1608. MS_LOG(DEBUG) << "The loss name is " << current_prim->name();
  1609. return pre_cnode;
  1610. }
  1611. TensorLayouts GetLossNodeGradOutputLayout(const CNodePtr &loss_cnode) {
  1612. TensorLayouts ret;
  1613. MS_EXCEPTION_IF_NULL(loss_cnode);
  1614. AnfNodePtr node = loss_cnode->cast<AnfNodePtr>();
  1615. MS_EXCEPTION_IF_NULL(node);
  1616. LossNodeInfo node_info = GetLossNodeInfo(node);
  1617. ValueNodePtr prim_anf_node = loss_cnode->input(0)->cast<ValueNodePtr>();
  1618. MS_EXCEPTION_IF_NULL(prim_anf_node);
  1619. PrimitivePtr prim = prim_anf_node->value()->cast<PrimitivePtr>();
  1620. MS_EXCEPTION_IF_NULL(prim);
  1621. if (INVALID_LOSS_OPS.find(prim->name()) != INVALID_LOSS_OPS.end()) {
  1622. MS_LOG(WARNING) << "The loss name is: " << prim->name() << ", do nothing for split sens now";
  1623. return ret;
  1624. }
  1625. OperatorInfoPtr operator_info = loss_cnode->operator_info();
  1626. MS_EXCEPTION_IF_NULL(operator_info);
  1627. TensorInfo loss_grad_tensor_info;
  1628. size_t op_output_size = operator_info->outputs_tensor_info().size();
  1629. MS_LOG(INFO) << "The loss name is " << operator_info->name() << ", the has tuple item is "
  1630. << node_info.has_tuple_getitem << ", the output size is " << op_output_size << ", the dout_index is "
  1631. << node_info.dout_index;
  1632. if ((op_output_size == 0) || (op_output_size <= IntToSize(node_info.dout_index))) {
  1633. MS_LOG(EXCEPTION) << "The index is " << node_info.dout_index << ", but the size of outputs is " << op_output_size;
  1634. }
  1635. if (!node_info.has_tuple_getitem && (op_output_size > 1)) {
  1636. MS_LOG(EXCEPTION) << "Currently, it is not supported that the sens is a tuple.";
  1637. }
  1638. loss_grad_tensor_info = operator_info->outputs_tensor_info()[IntToSize(node_info.dout_index)];
  1639. ret.push_back(loss_grad_tensor_info.tensor_layout());
  1640. return ret;
  1641. }
  1642. void SplitSens(const CNodePtr &grad_sens_node, const TensorLayout &loss_grad_layout) {
  1643. MS_EXCEPTION_IF_NULL(grad_sens_node);
  1644. if (grad_sens_node->size() <= 1) {
  1645. MS_LOG(EXCEPTION) << "The size of grad sens node is smaller than 2";
  1646. }
  1647. AnfNodePtr sens_tensor_node = grad_sens_node->input(1);
  1648. MS_EXCEPTION_IF_NULL(sens_tensor_node);
  1649. Shapes sens_shapes = GetNodeShape(sens_tensor_node);
  1650. if (sens_shapes.size() != 1) {
  1651. MS_LOG(EXCEPTION) << "GetNodeShape for sens_tensor_node, output size is not 1";
  1652. }
  1653. // If the shape of sens tensor is [] or [1], no need to split it.
  1654. Shape sens_shape = sens_shapes[0];
  1655. if (sens_shape.empty() || ((sens_shape.size() == 1) && (sens_shape[0] == 1))) {
  1656. if (sens_tensor_node->isa<Parameter>()) {
  1657. auto sens_tensor_param = sens_tensor_node->cast<ParameterPtr>();
  1658. MS_LOG(DEBUG) << "loss layout " << loss_grad_layout.ToString();
  1659. sens_tensor_param->set_tensor_layout(std::make_shared<TensorLayout>(loss_grad_layout));
  1660. }
  1661. MS_LOG(INFO) << "The shape of sens is " << ShapeToString(sens_shape) << ", no need to split sens";
  1662. return;
  1663. }
  1664. auto loss_shape = loss_grad_layout.tensor_shape().array();
  1665. if (loss_shape != sens_shape) {
  1666. MS_LOG(EXCEPTION) << "The shape of sens is not equal to loss output, it is unsupported now. Sens shape is "
  1667. << ShapeToString(sens_shape) << ", loss shape is " << ShapeToString(loss_shape);
  1668. }
  1669. MS_LOG(INFO) << "The shape of sens is " << ShapeToString(sens_shape) << ", split it.";
  1670. if (!IsValueNode<Tensor>(sens_tensor_node)) {
  1671. if (sens_tensor_node->isa<Parameter>()) {
  1672. MS_LOG(DEBUG) << "loss layout " << loss_grad_layout.ToString();
  1673. AbstractBasePtr abstract = sens_tensor_node->abstract();
  1674. MS_EXCEPTION_IF_NULL(abstract);
  1675. auto slice_shape = loss_grad_layout.slice_shape().array();
  1676. std::shared_ptr<abstract::BaseShape> parallel_shape = std::make_shared<abstract::Shape>(slice_shape);
  1677. MS_EXCEPTION_IF_NULL(parallel_shape);
  1678. auto cloned_abstract = abstract->Clone();
  1679. MS_EXCEPTION_IF_NULL(cloned_abstract);
  1680. cloned_abstract->set_shape(parallel_shape);
  1681. sens_tensor_node->set_abstract(cloned_abstract);
  1682. auto sens_tensor_param = sens_tensor_node->cast<ParameterPtr>();
  1683. sens_tensor_param->set_tensor_layout(std::make_shared<TensorLayout>(loss_grad_layout));
  1684. return;
  1685. }
  1686. MS_LOG(EXCEPTION) << "The type of sens node is not Tensor or Parameter, it is unsupported now.";
  1687. }
  1688. // Use _GetTensorSlice operator to split the sens tensor
  1689. FuncGraphPtr func_graph = grad_sens_node->func_graph(); // only cnode can get the graph
  1690. MS_EXCEPTION_IF_NULL(func_graph);
  1691. Operator op = CreateGetTensorSliceOp(loss_grad_layout);
  1692. InsertGetTensorSliceOp(op, grad_sens_node, func_graph, 1, SPLIT_SENS);
  1693. }
  1694. void InsertForwardOps(const OperatorInfoPtr &distribute_operator, const CNodePtr &cnode) {
  1695. MS_EXCEPTION_IF_NULL(distribute_operator);
  1696. MS_EXCEPTION_IF_NULL(cnode);
  1697. OperatorVector forward_op = distribute_operator->forward_op();
  1698. if (!forward_op.empty()) {
  1699. MS_LOG(INFO) << "Insert forward op for " << distribute_operator->name();
  1700. ForwardCommunication(forward_op, cnode);
  1701. }
  1702. }
  1703. void StepReplace(const OperatorInfoPtr &distribute_operator, const CNodePtr &cnode) {
  1704. MS_EXCEPTION_IF_NULL(distribute_operator);
  1705. MS_EXCEPTION_IF_NULL(cnode);
  1706. // StepReplaceOp
  1707. OperatorVector replace_op = distribute_operator->replace_op();
  1708. if (!replace_op.empty()) {
  1709. MS_LOG(INFO) << "StepReplaceOp " << cnode->ToString();
  1710. StepReplaceOp(replace_op, cnode);
  1711. }
  1712. // StepReplaceGraph: after calling StepReplaceGraph, cnode can not be used anymore.
  1713. ReplaceGraphPtr replace_graph = distribute_operator->replace_graph(cnode);
  1714. if (!replace_op.empty() && replace_graph) {
  1715. MS_LOG(EXCEPTION) << "Only one of replace_op or replace_op can be used";
  1716. }
  1717. if (replace_graph) {
  1718. MS_LOG(INFO) << "StepReplaceGraph " << cnode->ToString();
  1719. StepReplaceGraph(replace_graph, cnode);
  1720. }
  1721. }
  1722. void HandleDropoutNode(const OperatorInfoPtr &distribute_operator, const CNodePtr &cnode) {
  1723. MS_EXCEPTION_IF_NULL(distribute_operator);
  1724. MS_EXCEPTION_IF_NULL(cnode);
  1725. std::string op_name = distribute_operator->name();
  1726. if (op_name.find(DROPOUT_DO_MASK) == std::string::npos) {
  1727. return;
  1728. }
  1729. DropoutDoMaskInfoPtr dropout_do_mask = std::dynamic_pointer_cast<DropoutDoMaskInfo>(distribute_operator);
  1730. MS_EXCEPTION_IF_NULL(dropout_do_mask);
  1731. Operator replace_op = dropout_do_mask->GetDropoutGenMaskReplaceOp(cnode);
  1732. if (cnode->inputs().size() != DROPOUT_DO_MASK_CNODE_INPUT_SIZE) {
  1733. MS_LOG(EXCEPTION) << "The size of drop out do mask cnode's input is not " << DROPOUT_DO_MASK_CNODE_INPUT_SIZE;
  1734. }
  1735. ReplaceOneOp(replace_op, cnode->input(DROPOUT_GEN_MASK_INDEX)->cast<CNodePtr>());
  1736. }
  1737. void HandleSpecialNode(const OperatorInfoPtr &distribute_operator, const CNodePtr &cnode) {
  1738. HandleDropoutNode(distribute_operator, cnode);
  1739. }
  1740. std::set<FuncGraphPtr> FindForwardGraphByRootNodes(const AnfNodeSet &root_all_nodes) {
  1741. // J->CNode->Graph
  1742. std::set<FuncGraphPtr> graph_set;
  1743. for (auto &node : root_all_nodes) {
  1744. MS_EXCEPTION_IF_NULL(node);
  1745. if (!node->isa<CNode>()) {
  1746. continue;
  1747. }
  1748. auto cnode = node->cast<CNodePtr>();
  1749. if ((cnode->size() < 2) || !IsValueNode<Primitive>(cnode->input(0))) {
  1750. continue;
  1751. }
  1752. auto expect_j_prim = GetValueNode<PrimitivePtr>(cnode->input(0));
  1753. if (expect_j_prim->name() != J) {
  1754. continue;
  1755. }
  1756. if (IsValueNode<FuncGraph>(cnode->input(1))) {
  1757. auto graph = GetValueNode<FuncGraphPtr>(cnode->input(1));
  1758. MS_LOG(DEBUG) << "Find the forward graph success";
  1759. graph_set.insert(graph);
  1760. }
  1761. }
  1762. return graph_set;
  1763. }
  1764. void StepSplitSens(const std::pair<CNodePtr, CNodePtr> &sens_loss_pair) {
  1765. CNodePtr sens_node = sens_loss_pair.first;
  1766. CNodePtr loss_node = sens_loss_pair.second;
  1767. auto loss_grad_layout = GetLossNodeGradOutputLayout(loss_node);
  1768. if (!loss_grad_layout.empty()) {
  1769. SplitSens(sens_node, loss_grad_layout[0]);
  1770. }
  1771. }
  1772. // Sens node satisfies the following conditions: cnode(sens)-->cnode(tuple_getitem)-->cnode-->cnode(J)
  1773. std::vector<std::pair<CNodePtr, CNodePtr>> GetSensLossPairs(const FuncGraphPtr &root) {
  1774. MS_EXCEPTION_IF_NULL(root);
  1775. std::vector<std::pair<CNodePtr, CNodePtr>> sens_loss_pairs;
  1776. for (auto &node : root->nodes()) {
  1777. if (!node->isa<CNode>()) {
  1778. continue;
  1779. }
  1780. // cnode(sens)-->cnode(tuple_getitem)
  1781. auto sens_cnode = node->cast<CNodePtr>();
  1782. AnfNodePtr expect_tuple_getitem = sens_cnode->input(0);
  1783. MS_EXCEPTION_IF_NULL(expect_tuple_getitem);
  1784. if (!expect_tuple_getitem->isa<CNode>()) {
  1785. continue;
  1786. }
  1787. auto expect_tuple_getitem_cnode = expect_tuple_getitem->cast<CNodePtr>();
  1788. if (!IsSomePrimitive(expect_tuple_getitem_cnode, TUPLE_GETITEM)) {
  1789. continue;
  1790. }
  1791. // cnode(sens)-->cnode(tuple_getitem)-->cnode
  1792. AnfNodePtr expect_anonymous = expect_tuple_getitem_cnode->input(1);
  1793. MS_EXCEPTION_IF_NULL(expect_anonymous);
  1794. if (!expect_anonymous->isa<CNode>()) {
  1795. continue;
  1796. }
  1797. // cnode(sens)-->cnode(tuple_getitem)-->cnode-->cnode(J)
  1798. auto expect_anonymous_cnode = expect_anonymous->cast<CNodePtr>();
  1799. AnfNodePtr expect_j = expect_anonymous_cnode->input(0);
  1800. MS_EXCEPTION_IF_NULL(expect_j);
  1801. if (!expect_j->isa<CNode>()) {
  1802. continue;
  1803. }
  1804. auto expect_j_cnode = expect_j->cast<CNodePtr>();
  1805. if (!IsSomePrimitive(expect_j_cnode, J)) {
  1806. continue;
  1807. }
  1808. if (!IsValueNode<FuncGraph>(expect_j_cnode->input(1))) {
  1809. MS_LOG(EXCEPTION) << "Sens can't find the corresponding graph.";
  1810. }
  1811. auto func_graph = GetValueNode<FuncGraphPtr>(expect_j_cnode->input(1));
  1812. auto loss_cnode = FindLossCNode(func_graph);
  1813. if (loss_cnode == nullptr) {
  1814. MS_LOG(WARNING) << "Can not find the loss cnode";
  1815. continue;
  1816. }
  1817. std::pair<CNodePtr, CNodePtr> sens_loss_pair = std::make_pair(sens_cnode, loss_cnode);
  1818. sens_loss_pairs.push_back(sens_loss_pair);
  1819. }
  1820. return sens_loss_pairs;
  1821. }
  1822. void ParallelCommunication(const FuncGraphPtr &root, const std::vector<AnfNodePtr> &all_nodes,
  1823. const FuncGraphManagerPtr &manager) {
  1824. MS_EXCEPTION_IF_NULL(root);
  1825. MS_EXCEPTION_IF_NULL(manager);
  1826. TensorRedistribution tensor_redistribution;
  1827. std::vector<std::pair<CNodePtr, CNodePtr>> sens_loss_pairs = GetSensLossPairs(root);
  1828. bool has_backward = !sens_loss_pairs.empty();
  1829. // split sens must before inserting the operators.
  1830. for (auto &pair : sens_loss_pairs) {
  1831. // If the shape of grad-sens tensor is not [] or [1], use get tensor slice to handel it.
  1832. // If the type of sens node is not Tensor, it is unsupported now, do nothing default.
  1833. StepSplitSens(pair);
  1834. }
  1835. for (auto &node : all_nodes) {
  1836. MS_EXCEPTION_IF_NULL(node);
  1837. if (node->isa<CNode>()) {
  1838. auto cnode = node->cast<CNodePtr>();
  1839. if (!IsValueNode<Primitive>(cnode->input(0))) {
  1840. continue;
  1841. }
  1842. OperatorInfoPtr distribute_operator = GetDistributeOperator(cnode);
  1843. if (distribute_operator == nullptr) {
  1844. continue;
  1845. }
  1846. // insert forward ops
  1847. InsertForwardOps(distribute_operator, cnode);
  1848. // insert redistribution ops
  1849. StepRedistribution(cnode, distribute_operator, cnode, tensor_redistribution, cnode);
  1850. // insert backward ops
  1851. if (has_backward) {
  1852. BackwardCommunication(distribute_operator, cnode, sens_loss_pairs);
  1853. }
  1854. HandleSpecialNode(distribute_operator, cnode);
  1855. } else if (IsValueNode<Tensor>(node)) {
  1856. StepSplitTensor(node, manager);
  1857. }
  1858. }
  1859. for (auto &node : all_nodes) {
  1860. MS_EXCEPTION_IF_NULL(node);
  1861. if (node->isa<CNode>()) {
  1862. auto cnode = node->cast<CNodePtr>();
  1863. if (!IsValueNode<Primitive>(cnode->input(0))) {
  1864. continue;
  1865. }
  1866. OperatorInfoPtr distribute_operator = GetDistributeOperator(cnode);
  1867. if (distribute_operator == nullptr) {
  1868. continue;
  1869. }
  1870. // StepReplace
  1871. StepReplace(distribute_operator, cnode);
  1872. }
  1873. }
  1874. }
  1875. namespace {
  1876. void RevertSymbolicKeyInstance(const FuncGraphPtr &root, const AnfNodePtr &node) {
  1877. MS_EXCEPTION_IF_NULL(root);
  1878. MS_EXCEPTION_IF_NULL(node);
  1879. auto symbolic_key = GetValueNode<SymbolicKeyInstancePtr>(node);
  1880. MS_EXCEPTION_IF_NULL(symbolic_key);
  1881. auto all_upstream_node = root->manager()->node_users()[node];
  1882. for (auto &upstream_node : all_upstream_node) {
  1883. FuncGraphPtr fg = upstream_node.first->func_graph();
  1884. if (symbolic_key->node()->isa<Parameter>()) {
  1885. for (auto &param : root->parameters()) {
  1886. if (*param == *symbolic_key->node()) {
  1887. AnfNodePtr reverted_node = root->NewCNode({NewValueNode(prim::kPrimEmbed), param});
  1888. MS_EXCEPTION_IF_NULL(reverted_node);
  1889. MS_LOG(DEBUG) << "before replace " << node->ToString() << " to node " << reverted_node->DebugString();
  1890. (void)fg->manager()->Replace(node, reverted_node);
  1891. MS_LOG(DEBUG) << "revert node " << node->ToString() << " to node " << reverted_node->DebugString();
  1892. }
  1893. }
  1894. }
  1895. }
  1896. }
  1897. } // namespace
  1898. void HandleSymbolicKeyInstance(const FuncGraphPtr &root, const std::vector<AnfNodePtr> &all_nodes) {
  1899. MS_EXCEPTION_IF_NULL(root);
  1900. for (auto &node : all_nodes) {
  1901. // revert back SymbolicKeyInstance to embed() primitive
  1902. if (IsValueNode<SymbolicKeyInstance>(node)) {
  1903. RevertSymbolicKeyInstance(root, node);
  1904. continue;
  1905. }
  1906. }
  1907. }
  1908. std::string NodeParameterName(const CNodePtr &node) {
  1909. std::vector<AnfNodePtr> node_inputs{node->inputs()};
  1910. for (auto input : node_inputs) {
  1911. if (input->isa<Parameter>()) {
  1912. auto input_parameter = input->cast<ParameterPtr>();
  1913. if (input_parameter->has_default()) {
  1914. auto param_value = std::dynamic_pointer_cast<ParamValuePy>(input_parameter->default_param());
  1915. if (py::cast<bool>(parse::python_adapter::GetPyObjAttr(param_value->value(), REQUIRES_GRAD))) {
  1916. return py::cast<std::string>(parse::python_adapter::GetPyObjAttr(param_value->value(), PARAM_NAME));
  1917. }
  1918. }
  1919. }
  1920. }
  1921. return "";
  1922. }
  1923. void CheckpointStrategy(const FuncGraphPtr &func_graph) {
  1924. MS_EXCEPTION_IF_NULL(func_graph);
  1925. MS_LOG(DEBUG) << "Save strategy to checkpoint begin";
  1926. StrategyMap stra_map;
  1927. auto ret = func_graph->get_return();
  1928. auto all_nodes = DeepScopedGraphSearch(ret);
  1929. for (auto &node : all_nodes) {
  1930. MS_EXCEPTION_IF_NULL(node);
  1931. auto cnode = node->cast<CNodePtr>();
  1932. if ((cnode == nullptr) || !IsValueNode<Primitive>(cnode->input(0))) {
  1933. continue;
  1934. }
  1935. std::string param_name = NodeParameterName(cnode);
  1936. if (param_name.empty()) {
  1937. continue;
  1938. }
  1939. PrimitivePtr prim = GetValueNode<PrimitivePtr>(cnode->input(0));
  1940. MS_EXCEPTION_IF_NULL(prim);
  1941. OperatorInfoPtr operator_info = cnode->operator_info();
  1942. if (operator_info) {
  1943. StrategyPtr strategyPtr = operator_info->strategy();
  1944. MS_EXCEPTION_IF_NULL(node->scope());
  1945. stra_map[param_name] = strategyPtr;
  1946. }
  1947. }
  1948. if (StrategyCheckpoint::GetInstance().Save(stra_map) != SUCCESS) {
  1949. MS_LOG(EXCEPTION) << "Save strategy checkpoint failed";
  1950. }
  1951. }
  1952. void SetForwardFlag(const std::vector<AnfNodePtr> &all_nodes) {
  1953. for (auto &node : all_nodes) {
  1954. MS_EXCEPTION_IF_NULL(node);
  1955. if (!node->isa<CNode>()) {
  1956. continue;
  1957. }
  1958. auto cnode = node->cast<CNodePtr>();
  1959. if (!IsValueNode<Primitive>(cnode->input(0))) {
  1960. continue;
  1961. }
  1962. // CNode is globally unique.
  1963. MS_LOG(DEBUG) << "Set forward flag " << cnode->DebugString() << ".";
  1964. cnode->set_in_forward_flag(true);
  1965. }
  1966. }
  1967. void SetForwardFlag(const AnfNodeSet &all_nodes) {
  1968. for (auto &node : all_nodes) {
  1969. MS_EXCEPTION_IF_NULL(node);
  1970. if (!node->isa<CNode>()) {
  1971. continue;
  1972. }
  1973. auto cnode = node->cast<CNodePtr>();
  1974. if (!IsValueNode<Primitive>(cnode->input(0))) {
  1975. continue;
  1976. }
  1977. // CNode is globally unique.
  1978. cnode->set_in_forward_flag(true);
  1979. }
  1980. }
  1981. std::set<FuncGraphPtr> ForwardGraph(const FuncGraphPtr &root) {
  1982. MS_EXCEPTION_IF_NULL(root);
  1983. const auto &all_nodes = root->nodes();
  1984. std::set<FuncGraphPtr> graph_set = FindForwardGraphByRootNodes(all_nodes);
  1985. return graph_set;
  1986. }
  1987. std::vector<AnfNodePtr> FindRootForwardCNode(const FuncGraphPtr &graph, const AnfNodeSet &all_nodes) {
  1988. MS_EXCEPTION_IF_NULL(graph);
  1989. std::vector<AnfNodePtr> root_forward_nodes;
  1990. auto loss_cnode = FindLossCNode(graph);
  1991. if (loss_cnode == nullptr) {
  1992. MS_LOG(WARNING) << "Can not find the loss cnode";
  1993. return root_forward_nodes;
  1994. }
  1995. auto loss_cnode_id = loss_cnode->UniqueIdThroughCopy();
  1996. for (auto &node : all_nodes) {
  1997. MS_EXCEPTION_IF_NULL(node);
  1998. if (!node->isa<CNode>()) {
  1999. continue;
  2000. }
  2001. auto cnode = node->cast<CNodePtr>();
  2002. auto root_node_id = node->UniqueIdThroughCopy();
  2003. if (loss_cnode_id == root_node_id) {
  2004. root_forward_nodes = DeepLinkedGraphSearch(cnode);
  2005. break;
  2006. }
  2007. }
  2008. return root_forward_nodes;
  2009. }
  2010. void MarkForwardCNode(const FuncGraphPtr &root) {
  2011. MS_EXCEPTION_IF_NULL(root);
  2012. auto all_nodes = root->nodes();
  2013. std::set<FuncGraphPtr> graph_set = FindForwardGraphByRootNodes(all_nodes);
  2014. if (graph_set.empty()) {
  2015. MS_LOG(INFO) << "Can not find the forward graph, so mark the ops in root graph";
  2016. SetForwardFlag(all_nodes);
  2017. } else {
  2018. for (auto &func_graph : graph_set) {
  2019. MS_LOG(INFO) << "The sub graph size of root is " << root->func_graphs_used().size();
  2020. auto return_node = func_graph->get_return();
  2021. MS_EXCEPTION_IF_NULL(return_node);
  2022. auto all_dfs_nodes = DeepLinkedGraphSearch(return_node);
  2023. SetForwardFlag(all_dfs_nodes);
  2024. auto root_forward_nodes = FindRootForwardCNode(func_graph, all_nodes);
  2025. if (root_forward_nodes.empty()) {
  2026. continue;
  2027. }
  2028. // Mark forward flag for the nodes in root graph.
  2029. SetForwardFlag(root_forward_nodes);
  2030. }
  2031. }
  2032. }
  2033. Status ParallelInit() {
  2034. MS_EXCEPTION_IF_NULL(ParallelContext::GetInstance());
  2035. int32_t device_num = ParallelContext::GetInstance()->device_num();
  2036. int32_t global_rank = ParallelContext::GetInstance()->global_rank();
  2037. std::string backend = ParallelContext::GetInstance()->communication_backend();
  2038. std::string world_group;
  2039. if (backend == HCCL_BACKEND) {
  2040. world_group = HCCL_WORLD_GROUP;
  2041. } else if (backend == NCCL_BACKEND) {
  2042. world_group = NCCL_WORLD_GROUP;
  2043. } else {
  2044. MS_LOG(EXCEPTION) << "Invalid communication backend: " << backend;
  2045. }
  2046. uint32_t world_rank_size = 0;
  2047. if (!ParallelContext::GetInstance()->device_num_is_set()) {
  2048. if (!CommManager::GetInstance().GetRankSize(world_group, &world_rank_size)) {
  2049. MS_LOG(EXCEPTION) << "Get rank size failed";
  2050. }
  2051. device_num = UintToInt(world_rank_size);
  2052. MS_LOG(INFO) << "Get device num from communication model, the device num is " << device_num;
  2053. }
  2054. uint32_t rank_id = 0;
  2055. if (!ParallelContext::GetInstance()->global_rank_is_set()) {
  2056. if (!CommManager::GetInstance().GetRankID(world_group, &rank_id)) {
  2057. MS_LOG(EXCEPTION) << "Get rank id failed";
  2058. }
  2059. global_rank = UintToInt(rank_id);
  2060. MS_LOG(INFO) << "Get global rank from communication model, the global rank is " << global_rank;
  2061. }
  2062. if (!InitDevice(device_num, global_rank, backend)) {
  2063. MS_LOG(ERROR) << "Init device failed";
  2064. return FAILED;
  2065. }
  2066. MS_LOG(INFO) << "The parallel context: dev num: " << device_num << ", global rank: " << global_rank
  2067. << ", backend: " << backend << ", mirror_mean: " << ParallelContext::GetInstance()->mirror_mean()
  2068. << ", cast_before_mirror: " << ParallelContext::GetInstance()->cast_before_mirror();
  2069. return SUCCESS;
  2070. }
  2071. bool StepParallel(const FuncGraphPtr &root, const opt::OptimizerPtr &optimizer) {
  2072. MS_EXCEPTION_IF_NULL(root);
  2073. MS_EXCEPTION_IF_NULL(optimizer);
  2074. MS_EXCEPTION_IF_NULL(ParallelContext::GetInstance());
  2075. std::string parallel_mode = ParallelContext::GetInstance()->parallel_mode();
  2076. // assume no change to graph
  2077. bool changes = false;
  2078. // control whether use model_parallel mode
  2079. if (!root->has_flag(AUTO_PARALLEL) || ((parallel_mode != AUTO_PARALLEL) && (parallel_mode != SEMI_AUTO_PARALLEL)) ||
  2080. (root->has_flag(SEMI_AUTO_PARALLEL_RUN_ONCE_ONLY))) {
  2081. if (!root->has_flag(CHECK_SET_STRATEGY_VALID_ONCE_ONLY)) {
  2082. if (HasStrategy(root)) {
  2083. MS_LOG(INFO) << "strategies ignored in " << parallel_mode
  2084. << ", set_strategy() only valid in [semi_]auto_parallel.";
  2085. }
  2086. root->flags()[CHECK_SET_STRATEGY_VALID_ONCE_ONLY] = true;
  2087. }
  2088. return changes;
  2089. }
  2090. struct timeval start_time, end_time;
  2091. (void)gettimeofday(&start_time, nullptr);
  2092. MS_LOG(INFO) << "Now entering step parallel";
  2093. DumpGraph(root, std::string(STEP_PARALLEL_BEGIN));
  2094. pipeline::ResourceBasePtr res = optimizer->resource();
  2095. MS_EXCEPTION_IF_NULL(res);
  2096. FuncGraphManagerPtr manager = res->manager();
  2097. MS_EXCEPTION_IF_NULL(manager);
  2098. AnfNodePtr ret = root->get_return();
  2099. MS_EXCEPTION_IF_NULL(ret);
  2100. std::vector<AnfNodePtr> all_nodes = DeepScopedGraphSearch(ret);
  2101. std::reverse(all_nodes.begin(), all_nodes.end());
  2102. if (parallel_mode != AUTO_PARALLEL) {
  2103. TOTAL_OPS = 0;
  2104. if (ParallelInit() != SUCCESS) {
  2105. MS_LOG(EXCEPTION) << "Parallel init failed";
  2106. }
  2107. // mark the forward cnodes, parallel only care these nodes
  2108. MarkForwardCNode(root);
  2109. if (FindCommunicationOp(all_nodes)) {
  2110. MS_LOG(EXCEPTION) << "The graph contain communication op";
  2111. }
  2112. // extract shape and strategy, set operator_info
  2113. ExtractInformation(all_nodes);
  2114. ReshapeInit(all_nodes);
  2115. }
  2116. // save strategy as checkpoint for multi-train
  2117. if (StrategyCheckpoint::GetInstance().SaveCheckPointOn()) {
  2118. CheckpointStrategy(root);
  2119. }
  2120. HandleSymbolicKeyInstance(root, all_nodes);
  2121. // cover Parallel shape
  2122. CoverSliceShape(root);
  2123. // set the shape for optimizer's clone tensor
  2124. SetClonedTensorShapeForOptimizer(root);
  2125. // ForwardCommunication BackwardCommunication TensorRedistribution
  2126. ParallelCommunication(root, all_nodes, manager);
  2127. DumpGraph(root, std::string(STEP_PARALLEL_END));
  2128. // step parallel only run once
  2129. root->flags()[SEMI_AUTO_PARALLEL_RUN_ONCE_ONLY] = true;
  2130. res->results()[pipeline::kStepParallelGraph] = root;
  2131. // in auto parallel mode, no need to check if stategies set
  2132. root->flags()[CHECK_SET_STRATEGY_VALID_ONCE_ONLY] = true;
  2133. (void)gettimeofday(&end_time, nullptr);
  2134. uint64_t time = kUSecondInSecond * static_cast<uint64_t>(end_time.tv_sec - start_time.tv_sec);
  2135. time += static_cast<uint64_t>(end_time.tv_usec - start_time.tv_usec);
  2136. MS_LOG(INFO) << "Now leaving step parallel, used time: " << time << " us";
  2137. return changes;
  2138. }
  2139. // Needed by rec_parser
  2140. std::vector<std::string> ExtractInputsTensorName(const CNodePtr &node) {
  2141. std::vector<std::string> name_inputs;
  2142. std::vector<AnfNodePtr> all_inputs = node->inputs();
  2143. std::vector<AnfNodePtr> node_inputs{all_inputs.begin() + 1, all_inputs.end()};
  2144. std::string node_id = node->UniqueId();
  2145. name_inputs.push_back(node_id);
  2146. for (auto &input : node_inputs) {
  2147. std::string name = input->UniqueId();
  2148. name_inputs.push_back(name);
  2149. }
  2150. return name_inputs;
  2151. }
  2152. } // namespace parallel
  2153. } // namespace mindspore