[Mlir-commits] [mlir] [mlir][Interface] Factor out common IndexingMapOpInterface behavior in a new generic interface (PR #145313)

Matthias Springer llvmlistbot at llvm.org
Mon Jun 23 11:53:38 PDT 2025


================
@@ -0,0 +1,148 @@
+//===- IndexingMapOpInterface.td - Interface Declaration -*- 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
+//
+//===----------------------------------------------------------------------===//
+//
+// This is the definition file for the IndexingMapOpInterface.
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef MLIR_INTERFACES_INDEXING_MAP_OP_INTERFACE
+#define MLIR_INTERFACES_INDEXING_MAP_OP_INTERFACE
+
+include "mlir/Interfaces/DestinationStyleOpInterface.td"
----------------
matthias-springer wrote:

Does this actually depend on `DestinationStyleOpInterface`?

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


More information about the Mlir-commits mailing list