You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
729 B
21 lines
729 B
7 months ago
|
//===-- StandardOps.td - Entry point for StandardOps 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
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
//
|
||
|
// This is the main file from which the Python bindings for the Standard
|
||
|
// dialect are generated.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
|
||
|
#ifndef PYTHON_BINDINGS_STANDARD_OPS
|
||
|
#define PYTHON_BINDINGS_STANDARD_OPS
|
||
|
|
||
|
include "mlir/Bindings/Python/Attributes.td"
|
||
|
include "mlir/Dialect/StandardOps/IR/Ops.td"
|
||
|
|
||
|
#endif
|