[Mlir-commits] [mlir] [MLIR][Dialect] Add XeVM dialect (PR #144811)

Adam Siemieniuk llvmlistbot at llvm.org
Fri Jun 20 12:21:18 PDT 2025


================
@@ -0,0 +1,550 @@
+//===-- XeVMOps.td - XeVM dialect definition ---------------*- tablegen -*-===//
+//
+// This file is licensed 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 XEVMIR_OPS
+#define XEVMIR_OPS
+
+include "mlir/Dialect/GPU/IR/CompilationAttrInterfaces.td"
+include "mlir/Dialect/LLVMIR/LLVMOpBase.td"
+include "mlir/Interfaces/SideEffectInterfaces.td"
+
+include "mlir/IR/OpBase.td"
+include "mlir/IR/EnumAttr.td"
+
+def XeVM_Dialect : Dialect {
----------------
adam-smnk wrote:

It'd be great to add `summary` and `description` fields to the dialect to give users more context, how this dialect is positioned in the ecosystem, references to any relevant docs etc.

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


More information about the Mlir-commits mailing list