1*fbfff1caSAdam Paszke //===- MemRef.cpp - C Interface for MemRef dialect ------------------------===// 2*fbfff1caSAdam Paszke // 3*fbfff1caSAdam Paszke // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4*fbfff1caSAdam Paszke // See https://llvm.org/LICENSE.txt for license information. 5*fbfff1caSAdam Paszke // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6*fbfff1caSAdam Paszke // 7*fbfff1caSAdam Paszke //===----------------------------------------------------------------------===// 8*fbfff1caSAdam Paszke 9*fbfff1caSAdam Paszke #include "mlir-c/Dialect/MemRef.h" 10*fbfff1caSAdam Paszke #include "mlir/CAPI/Registration.h" 11*fbfff1caSAdam Paszke #include "mlir/Dialect/MemRef/IR/MemRef.h" 12*fbfff1caSAdam Paszke 13*fbfff1caSAdam Paszke MLIR_DEFINE_CAPI_DIALECT_REGISTRATION(MemRef, memref, 14*fbfff1caSAdam Paszke mlir::memref::MemRefDialect) 15