//===- ParallelCombiningOpInterface.cpp - Parallel combining op interface -===// // // 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 // //===----------------------------------------------------------------------===// #include "mlir/Interfaces/ParallelCombiningOpInterface.h" usingnamespacemlir; //===----------------------------------------------------------------------===// // ParallelCombiningOpInterface //===----------------------------------------------------------------------===// // TODO: Single region single block interface on interfaces ? LogicalResult mlir::detail::verifyParallelCombiningOpInterface(Operation *op) { … } /// Include the definitions of the interface. #include "mlir/Interfaces/ParallelCombiningOpInterface.cpp.inc"