2020-11-07 09:17:28 +08:00
|
|
|
//===------------------------------------------------------------*- 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 NPCOMP_CONVERSION_TCFTOTCP_CONVERTTCFTOSTD_H
|
|
|
|
#define NPCOMP_CONVERSION_TCFTOTCP_CONVERTTCFTOSTD_H
|
|
|
|
|
|
|
|
#include "mlir/Pass/Pass.h"
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
namespace mlir {
|
|
|
|
namespace NPCOMP {
|
2020-11-14 07:34:24 +08:00
|
|
|
std::unique_ptr<OperationPass<FuncOp>> createConvertTCFToStdPass();
|
2020-11-07 09:17:28 +08:00
|
|
|
}
|
|
|
|
} // namespace mlir
|
|
|
|
|
|
|
|
#endif // NPCOMP_CONVERSION_TCFTOTCP_CONVERTTCFTOSTD_H
|