//===- LinalgMatchOps.h - Linalg transform matcher ops ----------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #ifndef MLIR_DIALECT_LINALG_TRANSFORMOPS_LINALGMATCHOPS_H #define MLIR_DIALECT_LINALG_TRANSFORMOPS_LINALGMATCHOPS_H #include "mlir/Dialect/Linalg/IR/Linalg.h" #include "mlir/Dialect/Transform/IR/TransformAttrs.h" #include "mlir/Dialect/Transform/Interfaces/MatchInterfaces.h" namespace mlir { namespace transform { namespace detail { LogicalResult verifyStructuredOpPredicateOpTrait(Operation *op, Value structuredOpHandle); } // namespace detail template <typename OpTy> class StructuredOpPredicateOpTrait : public OpTrait::TraitBase<OpTy, StructuredOpPredicateOpTrait> { … }; } // namespace transform } // namespace mlir //===----------------------------------------------------------------------===// // Linalg Matcher Operations //===----------------------------------------------------------------------===// #define GET_OP_CLASSES #include "mlir/Dialect/Linalg/TransformOps/LinalgMatchOps.h.inc" #endif // MLIR_DIALECT_LINALG_TRANSFORMOPS_LINALGMATCHOPS_H