2020-04-05 01:15:44 +08:00
|
|
|
//===- StandaloneOps.h - Standalone 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
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef STANDALONE_STANDALONEOPS_H
|
|
|
|
#define STANDALONE_STANDALONEOPS_H
|
|
|
|
|
2020-12-24 10:13:39 +08:00
|
|
|
#include "mlir/IR/BuiltinTypes.h"
|
2020-04-05 01:15:44 +08:00
|
|
|
#include "mlir/IR/Dialect.h"
|
|
|
|
#include "mlir/IR/OpDefinition.h"
|
2020-05-14 01:27:19 +08:00
|
|
|
#include "mlir/Interfaces/SideEffectInterfaces.h"
|
2020-04-05 01:15:44 +08:00
|
|
|
|
|
|
|
#define GET_OP_CLASSES
|
|
|
|
#include "Standalone/StandaloneOps.h.inc"
|
|
|
|
|
|
|
|
#endif // STANDALONE_STANDALONEOPS_H
|