blob: 80c4c4b1ebd20842202aee22cb4a62c7de425292 [file] [log] [blame]
//===- TensorToEmitC.h - Convert Tensor to EmitC dialect --------*- C++ -*-===//
//
// 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 EMITC_CONVERSION_TENSORTOEMITC_H
#define EMITC_CONVERSION_TENSORTOEMITC_H
#include "mlir/Pass/Pass.h"
namespace mlir {
namespace func {
class FuncOp;
} // namespace func
namespace emitc {
std::unique_ptr<OperationPass<func::FuncOp>> createConvertTensorToEmitCPass();
} // namespace emitc
} // namespace mlir
#endif // EMITC_CONVERSION_TENSORTOEMITC_H