2020-05-05 08:48:02 +08:00
|
|
|
//===- BasicPyOps.h - Basic python ops --------------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// This file is licensed 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
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2020-06-10 10:22:24 +08:00
|
|
|
#ifndef NPCOMP_DIALECT_BASICPY_IR_BASICPY_OPS_H
|
|
|
|
#define NPCOMP_DIALECT_BASICPY_IR_BASICPY_OPS_H
|
2020-05-05 08:48:02 +08:00
|
|
|
|
|
|
|
#include "mlir/IR/Attributes.h"
|
2020-06-10 09:34:07 +08:00
|
|
|
#include "mlir/IR/Builders.h"
|
2020-12-12 06:43:38 +08:00
|
|
|
#include "mlir/IR/BuiltinTypes.h"
|
2020-05-05 08:48:02 +08:00
|
|
|
#include "mlir/IR/Dialect.h"
|
|
|
|
#include "mlir/IR/FunctionSupport.h"
|
|
|
|
#include "mlir/IR/OpDefinition.h"
|
2020-11-24 11:20:26 +08:00
|
|
|
#include "mlir/IR/OpImplementation.h"
|
2020-05-05 08:48:02 +08:00
|
|
|
#include "mlir/IR/SymbolTable.h"
|
2020-06-27 09:36:36 +08:00
|
|
|
#include "mlir/Interfaces/CallInterfaces.h"
|
2020-06-10 09:34:07 +08:00
|
|
|
#include "mlir/Interfaces/ControlFlowInterfaces.h"
|
2020-05-22 04:09:06 +08:00
|
|
|
#include "mlir/Interfaces/SideEffectInterfaces.h"
|
2020-05-05 08:48:02 +08:00
|
|
|
|
2020-06-10 10:22:24 +08:00
|
|
|
#include "npcomp/Dialect/Basicpy/IR/BasicpyOpsEnums.h.inc"
|
2020-06-09 04:46:06 +08:00
|
|
|
|
2020-05-05 08:48:02 +08:00
|
|
|
#define GET_OP_CLASSES
|
2020-06-10 10:22:24 +08:00
|
|
|
#include "npcomp/Dialect/Basicpy/IR/BasicpyOps.h.inc"
|
2020-05-05 08:48:02 +08:00
|
|
|
|
2020-06-10 10:22:24 +08:00
|
|
|
#endif // NPCOMP_DIALECT_BASICPY_IR_BASICPY_OPS_H
|