Files
clang-p2996/mlir/lib/Bindings/Python/MemRefOps.td
Alex Zinenko e82a30bdce [mlir] enable Python bindings for the MemRef dialect
A previous commit moved multiple ops from Standard to MemRef dialect.
Some of these ops are exercised in Python bindings. Enable bindings for
the newly created MemRef dialect and update a test accordingly.
2021-03-15 14:07:51 +01:00

16 lines
540 B
TableGen

//===-- MemRefOps.td - Entry point for MemRefOps 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
//
//===----------------------------------------------------------------------===//
#ifndef PYTHON_BINDINGS_MEMREF_OPS
#define PYTHON_BINDINGS_MEMREF_OPS
include "mlir/Bindings/Python/Attributes.td"
include "mlir/Dialect/MemRef/IR/MemRefOps.td"
#endif