• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1//===-- TosaInterfaces.td - TOSA dialect interfaces --------*- tablegen -*-===//
2//
3// Part of the LLVM Project, 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-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This file defines the dialect op interfaces for the TOSA dialect.
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef TOSA_OP_INTERFACES
14#define TOSA_OP_INTERFACES
15
16include "mlir/IR/OpBase.td"
17
18def TosaOpInterface : OpInterface<"TosaOp"> {
19  let description = [{
20    Implemented by ops that correspond to the Tosa specification.
21  }];
22}
23
24#endif
25