1 | //===- ArmSVEVectorTransformOps.h - Vector transform ops --------*- C++ -*-===// |
2 | // |
3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
4 | // See https://llvm.org/LICENSE.txt for license information. |
5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
6 | // |
7 | //===----------------------------------------------------------------------===// |
8 | |
9 | #ifndef MLIR_DIALECT_ARM_SVE_VECTOR_TRANSFORMOPS_H |
10 | #define MLIR_DIALECT_ARM_SVE_VECTOR_TRANSFORMOPS_H |
11 | |
12 | #include "mlir/Dialect/Transform/Interfaces/TransformInterfaces.h" |
13 | #include "mlir/IR/OpImplementation.h" |
14 | |
15 | //===----------------------------------------------------------------------===// |
16 | // ArmSVE Vector Transform Operations |
17 | //===----------------------------------------------------------------------===// |
18 | |
19 | #define GET_OP_CLASSES |
20 | #include "mlir/Dialect/ArmSVE/TransformOps/ArmSVEVectorTransformOps.h.inc" |
21 | |
22 | namespace mlir { |
23 | class DialectRegistry; |
24 | |
25 | namespace arm_sve { |
26 | void registerTransformDialectExtension(DialectRegistry ®istry); |
27 | |
28 | } // namespace arm_sve |
29 | } // namespace mlir |
30 | |
31 | #endif // MLIR_DIALECT_ARM_SVE_VECTOR_TRANSFORMOPS_H |
32 | |