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 { return qosCfg; }
24 : void SetQosCfg(u32 qos) { OpTaskConfig::qosCfg = qos; }
25 11 : u32 GetNotifyWaitTime() const { return notifyWaitTime; }
26 10 : void SetNotifyWaitTime(u32 seconds) { OpTaskConfig::notifyWaitTime = seconds; }
27 :
28 : private:
29 : u32 qosCfg{INVALID_QOSCFG};
30 : u32 notifyWaitTime{NOTIFY_DEFAULT_WAIT_TIME};
31 : };
32 : } // namespace Hccl
33 :
34 : #endif
|