LCOV - code coverage report
Current view: top level - legacy/ascend950/service/collective/alg/coll_alg_factory/alg_ccu_context/all_reduce - ccu_context_all_reduce_mesh1d_one_shot.h (source / functions) Coverage Total Hit
Test: coverage.info Lines: 0.0 % 1 0
Test Date: 2026-08-18 17:47:01 Functions: 0.0 % 2 0

            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_CCU_CONTEXT_ALL_REDUCE_MESH_1D_ONE_SHOT_H_
      12              : #define HCCLV2_CCU_CONTEXT_ALL_REDUCE_MESH_1D_ONE_SHOT_H_
      13              : 
      14              : #include <vector>
      15              : #include <ios>
      16              : #include "log.h"
      17              : #include "ccu_context_alg_base.h"
      18              : #include "ccu_datatype.h"
      19              : 
      20              : namespace Hccl {
      21              : 
      22              : class CcuContextAllReduceMesh1DOneShot : public CcuContextAlgBase {
      23              : public:
      24              :     CcuContextAllReduceMesh1DOneShot(
      25              :         const CcuCtxArg& arg, const std::vector<CcuTransport*>& transports, const CcuTransportGroup& group);
      26            0 :     ~CcuContextAllReduceMesh1DOneShot() override {}
      27              : 
      28              :     void Algorithm() override;
      29              :     std::vector<uint64_t> GeneArgs(const CcuTaskArg& arg) override;
      30              : 
      31              : private:
      32              :     void InitResource();
      33              :     void ImportReduceVariables();
      34              :     void LoadArgs();
      35              :     void Presync();
      36              :     void Postsync();
      37              :     void SyncTailBlock(uint32_t ctxSignalIndex);
      38              :     void DoGroupReduce();
      39              :     void
      40              :     CalcMissionOffset(uint64_t sliceSize, uint64_t missionId, uint64_t& missionSize, uint64_t& missionOffset) const;
      41              : 
      42              :     DataType dataType_;
      43              :     DataType outputDataType_;
      44              : 
      45              :     std::string notifySignal_ = "empty_signal";
      46              : 
      47              :     std::vector<CcuRep::Variable> input_;
      48              :     CcuRep::Variable output_;
      49              :     std::vector<CcuRep::Variable> token_;
      50              :     GroupOpSize groupOpSize_;
      51              : 
      52              :     CcuRep::Variable tailBlockOffSet_;
      53              :     GroupOpSize tailBlockGroupOpSize_;
      54              : 
      55              :     CcuRep::Variable reduceInput_;
      56              :     CcuRep::Variable reduceOutput_;
      57              :     CcuRep::Variable reducetoken_;
      58              :     CcuRep::Variable reduceInputOffSet_;
      59              :     CcuRep::Variable reduceOutputOffSet_;
      60              :     GroupOpSize reduceGroupOpSize_;
      61              : 
      62              :     CcuRep::MaskSignal mainBlockCtxSignal_;
      63              :     CcuRep::MaskSignal tailBlockCtxSignal_;
      64              : };
      65              : } // namespace Hccl
      66              : 
      67              : #endif // HCCLV2_CCU_CONTEXT_ALL_REDUCE_MESH_1D_H_
        

Generated by: LCOV version 2.0-1