1*fbfff1caSAdam Paszke //===- Math.cpp - C Interface for Math 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/Math.h" 10*fbfff1caSAdam Paszke #include "mlir/CAPI/Registration.h" 11*fbfff1caSAdam Paszke #include "mlir/Dialect/Math/IR/Math.h" 12*fbfff1caSAdam Paszke 13*fbfff1caSAdam Paszke MLIR_DEFINE_CAPI_DIALECT_REGISTRATION(Math, math, mlir::math::MathDialect) 14