1 //===- AllInterfaces.h - ----------------------------------------*- C++ -*-===// 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 a common entry point for registering all external 10 // interface implementations to the linalg dialect. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #ifndef MLIR_DIALECT_LINALG_TRANSFORMS_ALLINTERFACES_H 15 #define MLIR_DIALECT_LINALG_TRANSFORMS_ALLINTERFACES_H 16 17 namespace mlir { 18 class DialectRegistry; 19 20 namespace linalg { 21 void registerAllDialectInterfaceImplementations(DialectRegistry ®istry); 22 } // namespace linalg 23 24 } // namespace mlir 25 26 #endif // MLIR_DIALECT_LINALG_TRANSFORMS_ALLINTERFACES_H 27