1 //===- ShapeInferenceInterface.h - Interface definitions for ShapeInference -=// 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 contains the declarations of the shape inference interfaces defined 10 // in ShapeInferenceInterface.td. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #ifndef MLIR_TUTORIAL_TOY_SHAPEINFERENCEINTERFACE_H_ 15 #define MLIR_TUTORIAL_TOY_SHAPEINFERENCEINTERFACE_H_ 16 17 #include "mlir/IR/OpDefinition.h" 18 19 namespace mlir { 20 namespace toy { 21 22 /// Include the auto-generated declarations. 23 #include "toy/ShapeInferenceOpInterfaces.h.inc" 24 25 } // namespace toy 26 } // namespace mlir 27 28 #endif // MLIR_TUTORIAL_TOY_SHAPEINFERENCEINTERFACE_H_ 29