mirror of https://github.com/llvm/torch-mlir
33 lines
898 B
C++
33 lines
898 B
C++
//===- MlirPass.h - MLIR Pass Bindings ------------------------------------===//
|
|
//
|
|
// 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_PYTHON_MLIR_PASS_H
|
|
#define NPCOMP_PYTHON_MLIR_PASS_H
|
|
|
|
#include "MlirIr.h"
|
|
#include "PybindUtils.h"
|
|
|
|
#include "mlir/Pass/PassManager.h"
|
|
|
|
namespace mlir {
|
|
|
|
struct PyPassManager {
|
|
PyPassManager(std::shared_ptr<PyContext> context, bool verifyModules)
|
|
: passManager(&context->context, verifyModules),
|
|
context(std::move(context)) {}
|
|
static void bind(py::module m);
|
|
PassManager passManager;
|
|
|
|
private:
|
|
std::shared_ptr<PyContext> context;
|
|
};
|
|
|
|
} // namespace mlir
|
|
|
|
#endif // NPCOMP_PYTHON_MLIR_PASS_H
|