2020-04-27 08:20:58 +08:00
|
|
|
//===- NumpyOps.h - Core numpy dialect 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_NUMPY_IR_NUMPY_OPS_H
|
|
|
|
#define NPCOMP_DIALECT_NUMPY_IR_NUMPY_OPS_H
|
2020-04-27 08:20:58 +08:00
|
|
|
|
2020-04-29 11:32:49 +08:00
|
|
|
#include "mlir/IR/Attributes.h"
|
2020-12-12 06:43:38 +08:00
|
|
|
#include "mlir/IR/BuiltinTypes.h"
|
2020-04-27 08:20:58 +08:00
|
|
|
#include "mlir/IR/Dialect.h"
|
2020-04-29 11:32:49 +08:00
|
|
|
#include "mlir/IR/FunctionSupport.h"
|
2020-04-27 08:20:58 +08:00
|
|
|
#include "mlir/IR/OpDefinition.h"
|
2020-04-29 11:32:49 +08:00
|
|
|
#include "mlir/IR/SymbolTable.h"
|
2021-04-02 08:36:18 +08:00
|
|
|
#include "mlir/Interfaces/CastInterfaces.h"
|
2020-05-22 04:09:06 +08:00
|
|
|
#include "mlir/Interfaces/SideEffectInterfaces.h"
|
2020-07-05 07:40:02 +08:00
|
|
|
#include "npcomp/Typing/Analysis/CPA/Interfaces.h"
|
2020-04-27 08:20:58 +08:00
|
|
|
|
|
|
|
#define GET_OP_CLASSES
|
2020-06-10 10:22:24 +08:00
|
|
|
#include "npcomp/Dialect/Numpy/IR/NumpyOps.h.inc"
|
2020-04-27 08:20:58 +08:00
|
|
|
|
2020-06-10 10:22:24 +08:00
|
|
|
#endif // NPCOMP_DIALECT_NUMPY_IR_NUMPY_OPS_H
|