1 //===- MemRefUtils.h - MemRef transformation utilities ----------*- 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 header file defines prototypes for various transformation utilities for 10 // the MemRefOps dialect. These are not passes by themselves but are used 11 // either by passes, optimization sequences, or in turn by other transformation 12 // utilities. 13 // 14 //===----------------------------------------------------------------------===// 15 16 #ifndef MLIR_DIALECT_MEMREF_UTILS_MEMREFUTILS_H 17 #define MLIR_DIALECT_MEMREF_UTILS_MEMREFUTILS_H 18 19 #endif // MLIR_DIALECT_MEMREF_UTILS_MEMREFUTILS_H 20