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)
22 5 : : Instruction(InstructionType::AIV_INS),
23 5 : links_(links),
24 5 : aivOpArgs_(aivOpArgs)
25 5 : {}
26 :
27 : std::string Describe() const override;
28 : const std::vector<LinkData> GetLinks() const;
29 : HcclResult GetAivInsArgs(AivOpArgs& aivOpArgs) const;
30 :
31 : private:
32 : std::vector<LinkData> links_;
33 : AivOpArgs aivOpArgs_;
34 : };
35 :
36 : } // namespace Hccl
37 :
38 : #endif // AIV_INSTRUCTION_H
|