2020-10-07 07:14:37 +08:00
|
|
|
//===- PassDetail.h - RefBackend Pass class details -------------*- C++ -*-===//
|
2020-05-07 09:41:54 +08:00
|
|
|
//
|
|
|
|
// 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
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2020-10-07 07:14:37 +08:00
|
|
|
#ifndef REFBACKEND_PASSDETAIL_H
|
|
|
|
#define REFBACKEND_PASSDETAIL_H
|
2020-05-07 09:41:54 +08:00
|
|
|
|
2020-12-12 06:43:38 +08:00
|
|
|
#include "mlir/Dialect/Tensor/IR/Tensor.h"
|
2020-05-07 09:41:54 +08:00
|
|
|
#include "mlir/Pass/Pass.h"
|
|
|
|
|
|
|
|
namespace mlir {
|
|
|
|
namespace NPCOMP {
|
|
|
|
|
|
|
|
#define GEN_PASS_CLASSES
|
2020-10-07 07:14:37 +08:00
|
|
|
#include "npcomp/RefBackend/Passes.h.inc"
|
2020-05-07 09:41:54 +08:00
|
|
|
|
|
|
|
} // namespace NPCOMP
|
|
|
|
} // end namespace mlir
|
|
|
|
|
2020-10-07 07:14:37 +08:00
|
|
|
#endif // REFBACKEND_PASSDETAIL_H
|