[Mlir-commits] [mlir] [mlir] Add a utility method to move operation dependencies. (PR #129975)

Jakub Kuderski llvmlistbot at llvm.org
Wed Mar 5 19:34:39 PST 2025


================
@@ -0,0 +1,41 @@
+//===- TestTransformOps.td ---------------------------------*- tablegen -*-===//
+//
+// 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 TEST_TRANSFORM_OPS
+#define TEST_TRANSFORM_OPS
+
+include "mlir/Dialect/Transform/IR/TransformDialect.td"
+include "mlir/Dialect/Transform/Interfaces/TransformInterfaces.td"
+include "mlir/Dialect/Transform/IR/TransformTypes.td"
+include "mlir/Interfaces/SideEffectInterfaces.td"
+include "mlir/IR/OpBase.td"
+
+/// Transform dialect perations for testing transformations in MLIR
----------------
kuhar wrote:

```suggestion
/// Transform dialect operations for testing transformations in MLIR.
```

https://github.com/llvm/llvm-project/pull/129975


More information about the Mlir-commits mailing list