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 AIV_INSTRUCTION_H
12 : #define AIV_INSTRUCTION_H
13 :
14 : #include "instruction.h"
15 : #include "hccl_aiv_utils.h"
16 :
17 : namespace Hccl {
18 :
19 : class AivInstruction : public Instruction {
20 : public:
21 5 : AivInstruction(const std::vector<LinkData> &links, const AivOpArgs &aivOpArgs) : Instruction(InstructionType::AIV_INS), links_(links), aivOpArgs_(aivOpArgs)
22 : {
23 5 : }
24 :
25 : std::string Describe() const override;
26 : const std::vector<LinkData> GetLinks() const;
27 : HcclResult GetAivInsArgs(AivOpArgs &aivOpArgs) const;
28 :
29 : private:
30 : std::vector<LinkData> links_;
31 : AivOpArgs aivOpArgs_;
32 : };
33 :
34 : } // namespace Hccl
35 :
36 : #endif // AIV_INSTRUCTION_H
|