Line data Source code
1 : /**
2 : * Copyright (c) 2025 Huawei Technologies Co., Ltd.
3 : * This program is free software, you can redistribute it and/or modify it under the terms and conditions of
4 : * CANN Open Software License Agreement Version 2.0 (the "License").
5 : * Please refer to the License for details. You may not use this file except in compliance with the License.
6 : * THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED,
7 : * INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE.
8 : * See LICENSE in the root of the software repository for the full text of the License.
9 : */
10 :
11 : #ifndef HCCLV2_INS_ALL_REDUCE_PARALLEL_EXECUTOR_H
12 : #define HCCLV2_INS_ALL_REDUCE_PARALLEL_EXECUTOR_H
13 : #include "ins_coll_alg_base.h"
14 :
15 : namespace Hccl {
16 :
17 : template <typename AlgTopoMatch, typename InsAlgTemplate0, typename InsAlgTemplate1>
18 : class InsAllReduceParallelExecutor : public InsCollAlgBase {
19 : public:
20 : explicit InsAllReduceParallelExecutor();
21 : ~InsAllReduceParallelExecutor() override;
22 :
23 0 : std::string Describe() const override { return "Instruction based All Reduce Parallel Executor."; }
24 :
25 : HcclResult CalcResOffload(const RankGraph* rankGraph, const u64& dataSize, CollOffloadOpResReq& resReq) override;
26 :
27 : HcclResult CalcRes(const RankGraph* rankGraph, CollAlgResReq& algResReq) override;
28 : // HOST 接口
29 : HcclResult Orchestrate(
30 : const RankGraph* rankGraph, const CollAlgOperator& op, const CollAlgParams& params, InsQuePtr insQue) override;
31 : // AICPU 接口
32 : HcclResult Orchestrate(
33 : const AlgTopoInfo& topoInfo, const CollAlgOperator& op, const CollAlgParams& params, ConnectedLinkMgr* linkMgr,
34 : InsQuePtr insQue) override;
35 :
36 : private:
37 : HcclResult GenInsQues(InsAlgTemplate0& tempAlgIntra, InsAlgTemplate1& tempAlgInter);
38 : void GenTemplateAlgParams0(
39 : const u64 dataOffset, const u64 dataCount, const u64 scratchOffset, TemplateDataParams& tempAlgParams) const;
40 : void GenTemplateAlgParams1(
41 : const u64 dataOffset, const u64 dataCount, const u64 scratchOffset, TemplateDataParams& tempAlgParams) const;
42 : HcclResult CalcSendDataSize(u64& memBlockSize, float& SplitRate, u32& multipleIntra, u32& multipleInter);
43 :
44 : void GetParallelDataSplitRate(std::vector<float>& splitDataSize) const;
45 : HcclResult
46 : PrepareResForTemplate(const RankGraph* rankGraph, InsAlgTemplate0& tempAlgIntra, InsAlgTemplate1& tempAlgInter);
47 : HcclResult
48 : PrepareResForTemplate(ConnectedLinkMgr* linkMgr, InsAlgTemplate0& tempAlgIntra, InsAlgTemplate1& tempAlgInter);
49 :
50 : u32 rankSizeLevel0_{0};
51 : u32 rankSizeLevel1_{0};
52 :
53 : std::vector<std::vector<RankId>> virtRanks_;
54 : std::vector<std::map<RankId, u32>> virtRankMap_; // map<virtRank, virtRankOrder>
55 : std::vector<std::vector<std::vector<RankId>>> vTopo_;
56 :
57 : std::vector<InsQuePtr> requiredQue_;
58 : std::vector<InsQuePtr> intraQue_;
59 : std::vector<InsQuePtr> interQue_;
60 : std::vector<InsQuePtr> syncQueues_;
61 : ResLinks intraLinks_;
62 : ResLinks interLinks_;
63 :
64 : u64 interScratchOffset0{0};
65 : u64 interScratchOffset1{0};
66 : u64 Intra0ScratchSize{0};
67 : u64 Intra1ScratchSize{0};
68 : u64 Inter0ScratchSize{0};
69 : u64 Inter1ScratchSize{0};
70 : float dataSplitRate{0.5};
71 : };
72 :
73 : } // namespace Hccl
74 :
75 : #endif // HCCLV2_INS_ALL_REDUCE_PARALLEL_EXECUTOR_H
|