Changeset View
Changeset View
Standalone View
Standalone View
mlir/test/lib/Dialect/Test/TestOps.td
//===-- TestOps.td - Test dialect operation definitions ----*- tablegen -*-===// | //===-- TestOps.td - Test dialect operation definitions ----*- tablegen -*-===// | ||||
// | // | ||||
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | ||||
// See https://llvm.org/LICENSE.txt for license information. | // See https://llvm.org/LICENSE.txt for license information. | ||||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||||
// | // | ||||
//===----------------------------------------------------------------------===// | //===----------------------------------------------------------------------===// | ||||
#ifndef TEST_OPS | #ifndef TEST_OPS | ||||
#define TEST_OPS | #define TEST_OPS | ||||
include "mlir/IR/OpBase.td" | include "mlir/IR/OpBase.td" | ||||
include "mlir/IR/OpAsmInterface.td" | include "mlir/IR/OpAsmInterface.td" | ||||
include "mlir/IR/SymbolInterfaces.td" | |||||
include "mlir/Interfaces/SideEffects.td" | include "mlir/Interfaces/SideEffects.td" | ||||
include "mlir/Interfaces/CallInterfaces.td" | include "mlir/Interfaces/CallInterfaces.td" | ||||
include "mlir/Interfaces/ControlFlowInterfaces.td" | include "mlir/Interfaces/ControlFlowInterfaces.td" | ||||
include "mlir/Interfaces/InferTypeOpInterface.td" | include "mlir/Interfaces/InferTypeOpInterface.td" | ||||
include "mlir/Interfaces/SideEffects.td" | include "mlir/Interfaces/SideEffects.td" | ||||
def Test_Dialect : Dialect { | def Test_Dialect : Dialect { | ||||
let name = "test"; | let name = "test"; | ||||
▲ Show 20 Lines • Show All 1,248 Lines • Show Last 20 Lines |