2020-05-07 09:41:54 +08:00
|
|
|
//===------------------------------------------------------------*- 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
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef NPCOMP_DIALECT_TCP_IR_TCPOPS_H
|
|
|
|
#define NPCOMP_DIALECT_TCP_IR_TCPOPS_H
|
|
|
|
|
|
|
|
#include "mlir/Dialect/Shape/IR/Shape.h"
|
2020-12-12 06:43:38 +08:00
|
|
|
#include "mlir/IR/BuiltinTypes.h"
|
2020-05-07 09:41:54 +08:00
|
|
|
#include "mlir/IR/OpDefinition.h"
|
|
|
|
#include "mlir/IR/OpImplementation.h"
|
2020-07-11 08:31:24 +08:00
|
|
|
#include "mlir/IR/SymbolTable.h"
|
2020-05-22 04:09:06 +08:00
|
|
|
#include "mlir/Interfaces/SideEffectInterfaces.h"
|
2020-05-07 09:41:54 +08:00
|
|
|
|
|
|
|
#define GET_OP_CLASSES
|
|
|
|
#include "npcomp/Dialect/TCP/IR/TCPOps.h.inc"
|
|
|
|
|
|
|
|
#endif // NPCOMP_DIALECT_TCP_IR_TCPOPS_H
|