//===- ValueBoundsOpInterfaceImpl.cpp - Impl. of ValueBoundsOpInterface ---===// // // 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/Dialect/Linalg/IR/ValueBoundsOpInterfaceImpl.h" #include "mlir/Dialect/Linalg/IR/Linalg.h" #include "mlir/Interfaces/ValueBoundsOpInterface.h" usingnamespacemlir; namespace mlir { namespace linalg { namespace { struct IndexOpInterface : public ValueBoundsOpInterface::ExternalModel<IndexOpInterface, IndexOp> { … }; } // namespace } // namespace linalg } // namespace mlir void mlir::linalg::registerValueBoundsOpInterfaceExternalModels( DialectRegistry ®istry) { … }