blob: 46c4691923c725aa44f9eee0b8487a41f3e56ce1 [file] [log] [blame]
//===- Transforms.cpp - Pybind module for the Transforms library ----------===//
//
// 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
//
//===----------------------------------------------------------------------===//
#include "mlir-c/Transforms.h"
#include <pybind11/pybind11.h>
namespace py = pybind11;
// -----------------------------------------------------------------------------
// Module initialization.
// -----------------------------------------------------------------------------
PYBIND11_MODULE(_mlirTransforms, m) {
m.doc() = "MLIR Transforms library";
// Register all the passes in the Transforms library on load.
mlirRegisterTransformsPasses();
}