llvm/mlir/include/mlir/Dialect/Tosa/IR/TosaInterfaces.td

//===-- TosaInterfaces.td - TOSA dialect interfaces --------*- tablegen -*-===//
//
// Part of the LLVM Project, 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
//
//===----------------------------------------------------------------------===//
//
// This file defines the dialect op interfaces for the TOSA dialect.
//
//===----------------------------------------------------------------------===//

#ifndef TOSA_OP_INTERFACES
#define TOSA_OP_INTERFACES

include "mlir/IR/OpBase.td"

def TosaOpInterface : OpInterface<"TosaOp"> {
  let description = [{
    Implemented by ops that correspond to the Tosa specification.
  }];
}

#endif