[Mlir-commits] [mlir] [mlir][MemRef][GPU] Migrate GPU dialect ops to IndexedAccessOpInterface (PR #190380)
Krzysztof Drewniak
llvmlistbot at llvm.org
Fri Apr 10 12:14:10 PDT 2026
================
@@ -0,0 +1,21 @@
+//===- IndexedAccessOpInterfaceImpl.h - -----------------------------------===//
+//
+// 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_GPU_TRANSFORMS_INDEXEDACCESSOPINTERFACEIMPL_H
+#define MLIR_DIALECT_GPU_TRANSFORMS_INDEXEDACCESSOPINTERFACEIMPL_H
+
----------------
krzysz00 wrote:
I'm following the convention from bufferization - which also lives under Transforms/ - here, where since this is an interface for transforming an operation and not for exposing things about it, we can put it over here.
https://github.com/llvm/llvm-project/pull/190380
More information about the Mlir-commits
mailing list