|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- /**
- * Copyright 2021 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 MAIN_GRAPHENGINE_GE_GRAPH_PASSES_MDS_H_
- #define MAIN_GRAPHENGINE_GE_GRAPH_PASSES_MDS_H_
-
- #include "graph/types.h"
- #include "ge/ge_api.h"
- #include "graph/debug/ge_attr_define.h"
- #include "inc/graph_pass.h"
- #include "./mds_kernels/base_mds_kernel.h"
- #include "ge/ge_api_types.h"
- #include "./mds_kernels/mds_utils.h"
-
- namespace ge {
- class ModelDeploySchedulerPass : public GraphPass {
- public:
- Status Run(ge::ComputeGraphPtr graph) override;
-
- private:
- // Part0:Process Func
- // cut and dynamic cut
- Status CutProcess();
- Status CutNProcessImply(const ComputeGraphPtr &compute_graph, bool is_dynamic = false);
- Status CutHProcessImply(const ComputeGraphPtr &compute_graph, bool is_dynamic = false);
- Status DynamicCutAll(const ComputeGraphPtr &compute_graph);
- // smdp
- Status SMDPProcess(bool before_cut = true);
- Status SMDPModelState();
- Status SMDPGradient();
- Status SMDPWeight();
- // swap
- Status SwapProcess();
- // pipline
- Status PiplineProcess();
- // set delpoyinfo
- Status SetDeployInfo();
-
- // Part1: Utils Func
- // std::vector<bool> GetNodeInputsSupportCut(NodePtr node, uint64_t cut_index);
- // std::vector<bool> GetNodeOutputsSupportCut(NodePtr node, uint64_t cut_index);
- Status HcomNodeFusionProcess();
- Status GetAllModelStateVar();
- Status GetAllWeightVar();
- std::vector<NodePtr> GetAllGradComputeNodes() {
- return grad_compute_nodes_;
- }
- const char *GetGraphName() const {
- return compute_graph_->GetName().c_str();
- }
-
- // members
- std::vector<NodePtr> model_state_vars_;
- std::vector<NodePtr> model_weight_vars_;
- std::vector<NodePtr> grad_compute_nodes_;
- ComputeGraphPtr compute_graph_ = nullptr;
- };
- } // namespace ge
- #endif // MAIN_GRAPHENGINE_GE_GRAPH_PASSES_MDS_H_
|