[Mlir-commits] [mlir] [mlir][ArmSME] Add arith-to-arm-sme conversion pass (PR #78197)

Cullen Rhodes llvmlistbot at llvm.org
Wed Jan 17 08:28:58 PST 2024


================
@@ -0,0 +1,27 @@
+//===- ArithToArmSME.h - Arith to ArmSME dialect conversion -----*- 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_CONVERSION_ARITHTOARMSME_ARITHTOARMSME_H
+#define MLIR_CONVERSION_ARITHTOARMSME_ARITHTOARMSME_H
+
+#include <memory>
+
+namespace mlir {
+
+class RewritePatternSet;
+class Pass;
----------------
c-rhodes wrote:

this is required for `std::unique_ptr` in the auto-generated create pass function `std::unique_ptr<::mlir::Pass> createArithToArmSMEConversionPass();`

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


More information about the Mlir-commits mailing list