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