[Mlir-commits] [mlir] [llvm] [TOSA] Add TosaToMLProgram conversion (PR #69787)

Jacques Pienaar llvmlistbot at llvm.org
Tue Nov 7 14:33:37 PST 2023


================
@@ -0,0 +1,31 @@
+//===-- TosaToMLProgram.h - TOSA to ML_Program dialect lowerings-*- 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
+//
+//===----------------------------------------------------------------------===//
+//
+// This file declares the passes for the TOSA to MLProgram Dialect conversion.
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef MLIR_CONVERSION_TOSATOMLPROGRAM_TOSATOMLPROGRAM_H
+#define MLIR_CONVERSION_TOSATOMLPROGRAM_TOSATOMLPROGRAM_H
+
+#include "mlir/Pass/Pass.h"
+#include "mlir/Transforms/DialectConversion.h"
+
+namespace mlir {
+
+#define GEN_PASS_DECL_TOSATOMLPROGRAM
+#include "mlir/Conversion/Passes.h.inc"
----------------
jpienaar wrote:

Is this needed here?

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


More information about the Mlir-commits mailing list