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