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.

execution_tree.cc 10 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278
  1. /**
  2. * Copyright 2019 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 "dataset/engine/execution_tree.h"
  17. #include <iostream>
  18. #include <string>
  19. #include "dataset/engine/datasetops/dataset_op.h"
  20. #include "dataset/engine/datasetops/shuffle_op.h"
  21. #include "dataset/util/task_manager.h"
  22. #include "dataset/engine/perf/profiling.h"
  23. #include "dataset/engine/perf/monitor.h"
  24. namespace mindspore {
  25. namespace dataset {
  26. // Constructor
  27. ExecutionTree::ExecutionTree() : id_count_(0) {
  28. tg_ = std::make_unique<TaskGroup>();
  29. tree_state_ = kDeTStateInit;
  30. prepare_flags_ = kDePrepNone;
  31. perf_monitor_ = std::make_unique<Monitor>(this);
  32. profiling_manager_ = std::make_unique<ProfilingManager>(this);
  33. }
  34. // Destructor
  35. ExecutionTree::~ExecutionTree() { (void)tg_->ServiceStop(); }
  36. // Associates a DatasetOp with this tree. This assigns a valid node id to the operator and
  37. // provides it with a link to the tree. A node cannot form any relationships (parent/child) with
  38. // other nodes unless they are associated with the same tree.
  39. Status ExecutionTree::AssociateNode(const std::shared_ptr<DatasetOp> &op) {
  40. if (tree_state_ != kDeTStateInit && tree_state_ != kDeTStateBuilding) {
  41. std::string err_msg =
  42. "Invalid tree state for adding a node. Current state: " + std::to_string(static_cast<int>(tree_state_)) +
  43. " Expected states: " + std::to_string(static_cast<int>(kDeTStateInit)) + " or " +
  44. std::to_string(static_cast<int>(kDeTStateBuilding));
  45. RETURN_STATUS_UNEXPECTED(err_msg);
  46. }
  47. // Enter the building state if we were not already there
  48. tree_state_ = kDeTStateBuilding;
  49. // Assign an id to the operator
  50. op->set_id(id_count_);
  51. id_count_++;
  52. // Assign our tree into the op so that each op has a link back to the tree
  53. op->set_tree(this);
  54. return Status::OK();
  55. }
  56. // Sets the root node of the tree
  57. Status ExecutionTree::AssignRoot(const std::shared_ptr<DatasetOp> &op) {
  58. // Tree must be in building state before we can assign root to it
  59. if (tree_state_ != kDeTStateBuilding) {
  60. std::string err_msg =
  61. "Invalid tree state for assigning a root node. Current state: " + std::to_string(static_cast<int>(tree_state_)) +
  62. " Expected state: " + std::to_string(static_cast<int>(kDeTStateBuilding));
  63. RETURN_STATUS_UNEXPECTED(err_msg);
  64. }
  65. // If they didn't already call AssociateNode for this node before calling AssignRoot,
  66. // then do so now.
  67. if (op->operator_id_ == DatasetOp::kInvalidOperatorId) {
  68. RETURN_IF_NOT_OK(this->AssociateNode(op));
  69. }
  70. // Then add it as the root.
  71. root_ = op;
  72. // The tree has an assigned root now and it's ready to be prepared.
  73. tree_state_ = kDeTStatePrepare;
  74. return Status::OK();
  75. }
  76. // A print method typically used for debugging
  77. void ExecutionTree::Print(std::ostream &out) const {
  78. out << "Execution tree summary:\n"
  79. << "-----------------------\n";
  80. this->PrintNode(out, root_, "", true, false);
  81. out << "\nExecution tree operator details:\n"
  82. << "--------------------------------\n";
  83. this->PrintNode(out, root_, "", true, true);
  84. }
  85. // A helper functions for doing the recursive printing
  86. void ExecutionTree::PrintNode(std::ostream &out, const std::shared_ptr<DatasetOp> &dataset_op, std::string indent,
  87. bool last, bool detailed) const {
  88. // Decide which printer to use based on detailed arg.
  89. if (!detailed) {
  90. out << indent << "+- " << *dataset_op;
  91. indent += (last ? " " : "| ");
  92. } else {
  93. dataset_op->Print(out, detailed);
  94. }
  95. // Descend to children
  96. for (int32_t i = 0; i < dataset_op->child_.size(); ++i) {
  97. this->PrintNode(out, dataset_op->child_[i], indent, (i == (dataset_op->child_.size() - 1)), detailed);
  98. }
  99. }
  100. // Start the execution of the tree
  101. Status ExecutionTree::Launch() {
  102. // Tree must be built and prepared before it can be launched!
  103. if (tree_state_ != kDeTStateReady) {
  104. std::string err_msg =
  105. "Invalid tree state for launching tree. Current state: " + std::to_string(static_cast<int>(tree_state_)) +
  106. " Expected state: " + std::to_string(static_cast<int>(kDeTStateReady));
  107. RETURN_STATUS_UNEXPECTED(err_msg);
  108. }
  109. std::ostringstream ss;
  110. ss << *this;
  111. // Profiling infrastructures need to be initialized before Op launching
  112. if (profiling_manager_->IsProfilingEnable()) {
  113. // Setup profiling manager
  114. RETURN_IF_NOT_OK(profiling_manager_->Initialize());
  115. // Launch Monitor Thread
  116. RETURN_IF_NOT_OK(tg_->CreateAsyncTask("Monitor Thread launched", std::ref(*perf_monitor_)));
  117. }
  118. MS_LOG(DEBUG) << "Printing the tree before launch tasks:\n" << ss.str();
  119. for (auto itr = this->begin(); itr != this->end(); ++itr) {
  120. // An inlined operator is one that has an output connector size of 0, and it does not
  121. // require a thread to execute. Instead, the work of this operator is executed inlined
  122. // from the tree node directly above it (or in the case of a root node, it runs from within
  123. // the launching tree/user thread. Do not exec any thread for an inlined op.
  124. itr->state_ = DatasetOp::OpState::kDeOpRunning;
  125. if (!itr->inlined()) {
  126. RETURN_IF_NOT_OK(tg_->CreateAsyncTask("Op launched, OperatorId:" + std::to_string(itr->id()), std::ref(*itr)));
  127. // Set the state of the Operator as running. This only matters in Leaf ops, CacheOp and TakeOp
  128. }
  129. }
  130. tree_state_ = kDeTStateExecuting;
  131. return Status::OK();
  132. }
  133. // A function that traverse the tree in postorder then save the results in nodes
  134. void ExecutionTree::Iterator::PostOrderTraverse(const std::shared_ptr<DatasetOp> &node) {
  135. if (node == nullptr) {
  136. return;
  137. }
  138. for (int32_t i = 0; i < node->child_.size(); ++i) {
  139. PostOrderTraverse(node->child_[i]);
  140. }
  141. nodes_.push_back(node);
  142. }
  143. ExecutionTree::Iterator::Iterator(const std::shared_ptr<DatasetOp> &root) : ind_(0) {
  144. // post-order traverse the tree, if root is null, it return
  145. PostOrderTraverse(root);
  146. nodes_.emplace_back(nullptr);
  147. }
  148. // Given the number of workers, launches the worker entry function for each. Essentially a
  149. // wrapper for the TaskGroup handling that is stored inside the execution tree.
  150. Status ExecutionTree::LaunchWorkers(int32_t num_workers, std::function<Status(uint32_t)> func) {
  151. // Launch the workers
  152. for (int32_t i = 0; i < num_workers; ++i) {
  153. RETURN_IF_NOT_OK(tg_->CreateAsyncTask("Parallel Op Worker", std::bind(func, i)));
  154. }
  155. return Status::OK();
  156. }
  157. // The driver of the prepare phase of the execution tree.
  158. // Prepare phase consists of three sub phases
  159. //
  160. // 1. PrepareTreePreAction()
  161. // Compulsory transformation/action pre optimization.
  162. // For example, CacheOp Insertion
  163. //
  164. // 2. Optimize()
  165. // Optimization transformation/action, optional
  166. // For example, MapOp Fusion
  167. //
  168. // 3. PrepareTreePostAction()
  169. // Compulsory transformation/action post optimization.
  170. // For example, repeatOp inlining
  171. //
  172. // @return Status - The error code return
  173. Status ExecutionTree::Prepare() {
  174. // Pre optimization compulsory transformation
  175. RETURN_IF_NOT_OK(this->PrepareTreePreAction());
  176. // Optimization transformation
  177. RETURN_IF_NOT_OK(this->Optimize());
  178. // Post optimization compulsory transformation
  179. RETURN_IF_NOT_OK(this->PrepareTreePostAction());
  180. // Existing transformation implementation, will be removed later
  181. RETURN_IF_NOT_OK(this->PrepareDeprecated());
  182. return Status::OK();
  183. }
  184. Status ExecutionTree::PrepareTreePreAction() { return Status::OK(); }
  185. Status ExecutionTree::PrepareTreePostAction() { return Status::OK(); }
  186. Status ExecutionTree::Optimize() {
  187. // auto pp = new PrinterPass();
  188. // bool modified = false;
  189. // pp->Run(this, &modified);
  190. return Status::OK();
  191. }
  192. // The driver of the prepare phase of the execution tree. The prepare phase will recursively
  193. // walk the tree to perform modifications to the tree or specific nodes within the tree to get
  194. // it ready for execution.
  195. //
  196. // This driver is deprecated.
  197. Status ExecutionTree::PrepareDeprecated() {
  198. // Tree must be in pending prepare state before we can assign root to it
  199. if (tree_state_ != kDeTStatePrepare) {
  200. std::string err_msg =
  201. "Invalid tree state for preparing the tree. Current state: " + std::to_string(static_cast<int>(tree_state_)) +
  202. " Expected state: " + std::to_string(static_cast<int>(kDeTStatePrepare));
  203. RETURN_STATUS_UNEXPECTED(err_msg);
  204. }
  205. // Start the recursive prepare
  206. RETURN_IF_NOT_OK(this->PrepareNode(root_));
  207. tree_state_ = kDeTStateReady;
  208. return Status::OK();
  209. }
  210. // Recursive function used during prepare phase to visit a node and drive any pre- and post-
  211. // node actions during a tree walk.
  212. Status ExecutionTree::PrepareNode(const std::shared_ptr<DatasetOp> &dataset_op) {
  213. // execute PreAction
  214. RETURN_IF_NOT_OK(dataset_op->PrepareNodePreAction());
  215. // Before going down into children, make any prepare flags updates based on this operator.
  216. uint32_t op_prep_flags = dataset_op->PrepareFlags();
  217. BitSet(&prepare_flags_, op_prep_flags);
  218. // Now, descend to children
  219. for (const auto &i : dataset_op->child_) {
  220. RETURN_IF_NOT_OK(this->PrepareNode(i));
  221. }
  222. // Then clear the flags from this op now that we have prepared it.
  223. BitClear(&prepare_flags_, op_prep_flags);
  224. // No more children, now we execute any prepare actions before going back up the
  225. // the tree on recursive function
  226. RETURN_IF_NOT_OK(dataset_op->PrepareNodePostAction());
  227. return Status::OK();
  228. }
  229. // Adds an operator to the repeat stack during prepare phase.
  230. void ExecutionTree::AddToRepeatStack(std::shared_ptr<DatasetOp> dataset_op) { repeat_stack_.push(dataset_op); }
  231. // Pops an operator from the repeat stack during prepare phase.
  232. std::shared_ptr<DatasetOp> ExecutionTree::PopFromRepeatStack() {
  233. std::shared_ptr<DatasetOp> top_op = nullptr;
  234. if (!repeat_stack_.empty()) {
  235. top_op = repeat_stack_.top();
  236. repeat_stack_.pop();
  237. }
  238. return top_op;
  239. }
  240. } // namespace dataset
  241. } // namespace mindspore