torch-mlir/python/TorchMLIRModule.cpp

26 lines
867 B
C++

//===-- TorchBind.td - Torch dialect bind ------------------*- tablegen -*-===//
//
// 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
// Also available under a BSD-style license. See LICENSE.
//
//===----------------------------------------------------------------------===//
#include "mlir-c/Bindings/Python/Interop.h"
#include "mlir/Bindings/Python/PybindAdaptors.h"
#include "mlir/CAPI/IR.h"
#include "torch-mlir-c/Dialects.h"
#include "torch-mlir-c/Registration.h"
namespace py = pybind11;
PYBIND11_MODULE(_torchMlir, m) {
torchMlirRegisterAllPasses();
m.doc() = "torch-mlir main python extension";
m.def("register_required_dialects", torchMlirRegisterRequiredDialects,
py::arg("context"));
}