|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- /**
- * Copyright 2020 Huawei Technologies Co., Ltd
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
- #ifndef MINDSPORE_MINDSPORE_CCSRC_DEVICE_KERNEL_ADJUST_H_
- #define MINDSPORE_MINDSPORE_CCSRC_DEVICE_KERNEL_ADJUST_H_
-
- #include <memory>
- #include <map>
- #include <string>
- #include <vector>
- #include <unordered_set>
- #include "ir/anf.h"
- #include "session/kernel_graph.h"
- #include "kernel/kernel_build_info.h"
- #include "session/session_context.h"
- #include "ir/meta_tensor.h"
- #include "device/ascend/profiling/profiling_utils.h"
- #include "device/kernel_info.h"
-
- using mindspore::device::ascend::ProfilingTraceInfo;
- using mindspore::device::ascend::ProfilingUtils;
- namespace mindspore {
- constexpr auto kLoopCountParamName = "loop_count";
- constexpr auto kIterLoopParamName = "iter_loop";
- constexpr auto kZeroParamName = "zero";
- constexpr auto kOneParamName = "one";
- constexpr auto kStreamNeedActivedFirst = "stream_need_active_first";
-
- const uint32_t kFirstStreamSwitchLabel = kInvalidDistincLabel - 1;
- const uint32_t kGetNextLabel = kInvalidDistincLabel - 2;
- const uint32_t kSecondStreamSwitchLabel = kInvalidDistincLabel - 3;
- const uint32_t kInvalidEventId = UINT32_MAX;
- const uint32_t kFirstEventId = kInvalidEventId / 2;
- namespace device {
- class KernelAdjust {
- public:
- static KernelAdjust &GetInstance() {
- static KernelAdjust instance;
- return instance;
- }
- void Reorder(const std::shared_ptr<session::KernelGraph> &kernel_graph_ptr);
- void InsertSwitchLoop(const std::shared_ptr<session::KernelGraph> &kernel_graph_ptr);
- bool StepLoadCtrlInputs(const std::shared_ptr<session::Context> &context,
- const std::shared_ptr<session::KernelGraph> &kernel_graph_ptr);
- void Profiling(NotNull<session::KernelGraph *> kernel_graph_ptr);
- static bool NeedInsertSwitch();
- CNodePtr CreateStreamActiveOp(const std::shared_ptr<session::KernelGraph> &kernel_graph_ptr);
-
- private:
- KernelAdjust() = default;
- ~KernelAdjust() = default;
-
- void ReorderGetNext(const std::shared_ptr<session::KernelGraph> &kernel_graph_ptr);
- CNodePtr CreateRecvApplyKernel(const std::shared_ptr<session::KernelGraph> &graph_ptr, uint32_t event_id);
- CNodePtr CreateSendApplyKernel(const std::shared_ptr<session::KernelGraph> &graph_ptr, uint32_t event_id);
- uint32_t FindFirstStreamSwitchLabel(const std::shared_ptr<session::KernelGraph> &kernel_graph_ptr);
- void CreateSwitchOpParameters(const std::shared_ptr<session::KernelGraph> &kernel_graph_ptr,
- std::map<std::string, mindspore::ParameterPtr> *switch_loop_input);
- CNodePtr CreateStreamSwitchOp(const std::shared_ptr<session::KernelGraph> &kernel_graph_ptr,
- const std::map<std::string, mindspore::ParameterPtr> &switch_loop_input);
- CNodePtr CreateStreamAssignAddnOP(const std::shared_ptr<session::KernelGraph> &kernel_graph_ptr,
- const std::map<std::string, mindspore::ParameterPtr> &switch_loop_input);
- kernel::KernelBuildInfo::KernelBuildInfoBuilder CreateMngKernelBuilder(const std::vector<std::string> &formats,
- const std::vector<TypeId> &type_ids);
- void LoadSwitchInputs(std::vector<tensor::TensorPtr> *inputs);
- void InsertProfilingKernel(const ProfilingTraceInfo &profiling_trace_info,
- NotNull<session::KernelGraph *> kernel_graph_ptr);
- };
- } // namespace device
- } // namespace mindspore
- #endif // MINDSPORE_MINDSPORE_CCSRC_DEVICE_KERNEL_ADJUST_H_
|