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