LCOV - code coverage report
Current view: top level - legacy/ascend950/framework/communicator - op_task_config.h (source / functions) Coverage Total Hit
Test: coverage.info Lines: 100.0 % 5 5
Test Date: 2026-08-04 10:52:23 Functions: 100.0 % 2 2

            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_OP_TASK_CONFIG_H
      12              : #define HCCLV2_OP_TASK_CONFIG_H
      13              : 
      14              : #include <hccl/base.h>
      15              : 
      16              : namespace Hccl {
      17              : 
      18              : constexpr u32 INVALID_QOSCFG           = 0xFFFFFFFF;
      19              : constexpr s32 NOTIFY_DEFAULT_WAIT_TIME = 27 * 68; // notifywait默认1800等待时长
      20              : 
      21              : class OpTaskConfig {
      22              : public:
      23              :     u32 GetQosCfg() const
      24              :     {
      25              :         return qosCfg;
      26              :     }
      27              :     void SetQosCfg(u32 qos)
      28              :     {
      29              :         OpTaskConfig::qosCfg = qos;
      30              :     }
      31           11 :     u32 GetNotifyWaitTime() const
      32              :     {
      33           11 :         return notifyWaitTime;
      34              :     }
      35           15 :     void SetNotifyWaitTime(u32 seconds)
      36              :     {
      37           15 :         OpTaskConfig::notifyWaitTime = seconds;
      38           15 :     }
      39              : 
      40              : private:
      41              :     u32 qosCfg{INVALID_QOSCFG};
      42              :     u32 notifyWaitTime{NOTIFY_DEFAULT_WAIT_TIME};
      43              : };
      44              : } // namespace Hccl
      45              : 
      46              : #endif
        

Generated by: LCOV version 2.0-1