2020-05-07 09:41:54 +08:00
|
|
|
//===- PassDetail.h - Conversion Pass class details -------------*- 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
|
2021-09-30 00:03:40 +08:00
|
|
|
// Also available under a BSD-style license. See LICENSE.
|
2020-05-07 09:41:54 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2021-09-24 11:59:12 +08:00
|
|
|
#ifndef TORCHMLIR_CONVERSION_PASSDETAIL_H
|
|
|
|
#define TORCHMLIR_CONVERSION_PASSDETAIL_H
|
2020-05-07 09:41:54 +08:00
|
|
|
|
|
|
|
#include "mlir/Pass/Pass.h"
|
|
|
|
|
|
|
|
namespace mlir {
|
2021-09-24 11:59:12 +08:00
|
|
|
namespace torch {
|
2020-05-07 09:41:54 +08:00
|
|
|
|
|
|
|
#define GEN_PASS_CLASSES
|
2021-09-24 11:59:12 +08:00
|
|
|
#include "torch-mlir/Conversion/Passes.h.inc"
|
2020-05-07 09:41:54 +08:00
|
|
|
|
2021-09-24 11:59:12 +08:00
|
|
|
} // namespace torch
|
2020-05-07 09:41:54 +08:00
|
|
|
} // end namespace mlir
|
|
|
|
|
2021-09-24 11:59:12 +08:00
|
|
|
#endif // TORCHMLIR_CONVERSION_PASSDETAIL_H
|