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.

task_context.h 5.0 kB

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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. #ifndef GE_HYBRID_KERNEL_TASK_CONTEXT_H_
  17. #define GE_HYBRID_KERNEL_TASK_CONTEXT_H_
  18. #include <map>
  19. #include <mutex>
  20. #include <vector>
  21. #include "common/properties_manager.h"
  22. #include "external/ge/ge_api_error_codes.h"
  23. #include "framework/common/ge_types.h"
  24. #include "hybrid/common/tensor_value.h"
  25. #include "hybrid/common/npu_memory_allocator.h"
  26. #include "hybrid/executor/rt_callback_manager.h"
  27. #include "hybrid/model/node_item.h"
  28. namespace ge {
  29. namespace hybrid {
  30. struct GraphExecutionContext;
  31. class SubgraphContext;
  32. class TaskContext {
  33. public:
  34. static std::unique_ptr<TaskContext> Create(const NodeItem &node_item,
  35. GraphExecutionContext *execution_context,
  36. SubgraphContext *subgraph_context);
  37. ~TaskContext();
  38. int NumInputs() const;
  39. int NumOutputs() const;
  40. size_t NumWorkspaces() const;
  41. const NodeItem &GetNodeItem() const;
  42. const char *GetNodeName() const;
  43. TensorValue *MutableInput(int index);
  44. ConstGeTensorDescPtr GetInputDesc(int index) const;
  45. ConstGeTensorDescPtr GetOutputDesc(int index) const;
  46. GeTensorDescPtr MutableInputDesc(int index) const;
  47. GeTensorDescPtr MutableOutputDesc(int index) const;
  48. void ReleaseInputsAndOutputs();
  49. bool NeedCallback();
  50. void ReleaseInput(int index);
  51. const TensorValue *GetInput(int index) const;
  52. const TensorValue *GetOutput(int index) const;
  53. TensorValue *MutableOutput(int index);
  54. TensorValue *GetVariable(const std::string &name);
  55. rtStream_t GetStream();
  56. int64_t GetSessionId() const;
  57. uint64_t GetIterationNumber() const;
  58. void NodeDone();
  59. void OnError(Status error);
  60. Status SetOutput(int index, const TensorValue &tensor);
  61. Status AllocateOutput(int index,
  62. const GeTensorDesc &tensor_desc,
  63. TensorValue **tensor,
  64. AllocationAttr *attr = nullptr);
  65. Status AllocateOutputs(AllocationAttr *attr = nullptr);
  66. Status AllocateWorkspaces();
  67. Status AllocateWorkspace(size_t size, void **buffer, void *ori_addr = nullptr);
  68. bool IsTraceEnabled() const;
  69. bool IsDumpEnabled() const;
  70. const DumpProperties& GetDumpProperties() const;
  71. const GraphExecutionContext *GetExecutionContext() {
  72. return execution_context_;
  73. }
  74. Status AllocateTensor(size_t size, TensorValue &tensor, AllocationAttr *attr = nullptr);
  75. void *MutableWorkspace(int index);
  76. const void *GetVarBaseAddr();
  77. Status RegisterCallback(const std::function<void()> &callback_fun) const;
  78. Status TryExecuteCallback(const std::function<void()> &callback_fun) const;
  79. Status PropagateOutputs();
  80. Status GetStatus() const;
  81. void SetStatus(Status status);
  82. uint32_t GetTaskId() const;
  83. void SetTaskId(uint32_t task_id);
  84. uint32_t GetStreamId() const;
  85. void SetStreamId(uint32_t stream_id);
  86. Status Synchronize();
  87. bool IsForceInferShape() const;
  88. void SetForceInferShape(bool force_infer_shape);
  89. void *handle_ = nullptr;
  90. const std::vector<TaskDescInfo>& GetProfilingTaskDescInfo() const { return task_desc_info; }
  91. Status SaveProfilingTaskDescInfo(uint32_t task_id, uint32_t stream_id, uint32_t task_type, uint32_t block_dim);
  92. void ClearProfilingTaskDescInfo() { task_desc_info.clear(); }
  93. const std::vector<ComputeGraphDescInfo>& GetProfilingGraphDescInfo() const { return compute_graph_info; }
  94. Status SaveProfilingGraphDescInfo(uint32_t task_id, uint32_t stream_id);
  95. void ClearProfilingGraphDescInfo() { compute_graph_info.clear(); }
  96. private:
  97. TaskContext(GraphExecutionContext *execution_context,
  98. const NodeItem *node_item,
  99. SubgraphContext *subgraph_context);
  100. static string TensorDesc2String(const GeTensorDesc &desc);
  101. Status AllocateTensor(const GeTensorDesc &tensor_desc, TensorValue &tensor, AllocationAttr *attr);
  102. const NodeItem *node_item_ = nullptr;
  103. bool force_infer_shape_ = false;
  104. GraphExecutionContext *execution_context_;
  105. SubgraphContext *subgraph_context_;
  106. TensorValue *inputs_start_ = nullptr;
  107. TensorValue *outputs_start_ = nullptr;
  108. Status status_ = SUCCESS;
  109. std::vector<void *> workspaces_;
  110. uint64_t iteration_ = 0;
  111. uint32_t task_id_ = 0;
  112. uint32_t stream_id_ = 0;
  113. std::vector<TaskDescInfo> task_desc_info;
  114. std::vector<ComputeGraphDescInfo> compute_graph_info;
  115. };
  116. } // namespace hybrid
  117. } // namespace ge
  118. #endif // GE_HYBRID_KERNEL_TASK_CONTEXT_H_

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