FLANG
CUFToLLVMIRTranslation.h
1//===- CUFToLLVMIRTranslation.h - CUF Dialect to LLVM IR --------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This provides registration calls for GPU dialect to LLVM IR translation.
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef FLANG_OPTIMIZER_DIALECT_CUF_GPUTOLLVMIRTRANSLATION_H_
14#define FLANG_OPTIMIZER_DIALECT_CUF_GPUTOLLVMIRTRANSLATION_H_
15
16namespace mlir {
17class DialectRegistry;
18class MLIRContext;
19} // namespace mlir
20
21namespace cuf {
22
25void registerCUFDialectTranslation(mlir::DialectRegistry &registry);
26
27} // namespace cuf
28
29#endif // FLANG_OPTIMIZER_DIALECT_CUF_GPUTOLLVMIRTRANSLATION_H_
Definition: ConvertVariable.h:26
void registerCUFDialectTranslation(mlir::DialectRegistry &registry)
Definition: AbstractConverter.h:27