brintos

brintos / llvm-project-archived public Read only

0
0
Text · 738 B · a9006e0 Raw
22 lines · c
1//===- StandaloneOps.h - Standalone dialect ops -----------------*- C++ -*-===//2//3// This file is licensed under the Apache License v2.0 with LLVM Exceptions.4// See https://llvm.org/LICENSE.txt for license information.5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6//7//===----------------------------------------------------------------------===//8 9#ifndef STANDALONE_STANDALONEOPS_H10#define STANDALONE_STANDALONEOPS_H11 12#include "mlir/IR/BuiltinTypes.h"13#include "mlir/IR/Dialect.h"14#include "mlir/IR/OpDefinition.h"15#include "mlir/Interfaces/InferTypeOpInterface.h"16#include "mlir/Interfaces/SideEffectInterfaces.h"17 18#define GET_OP_CLASSES19#include "Standalone/StandaloneOps.h.inc"20 21#endif // STANDALONE_STANDALONEOPS_H22