MLIR 22.0.0git
Runtimes.h
Go to the documentation of this file.
1//===- Runtimes.h - Possible runtimes for AMD GPUs ---*- 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#ifndef MLIR_CONVERSION_GPUTOROCDL_RUNTIMES_H
9#define MLIR_CONVERSION_GPUTOROCDL_RUNTIMES_H
10
11namespace mlir {
12namespace gpu {
13namespace amd {
14/// Potential runtimes for AMD GPU kernels
15enum Runtime {
17 HIP = 1,
18 OpenCL = 2,
19};
20} // end namespace amd
21} // end namespace gpu
22} // end namespace mlir
23
24#endif // MLIR_CONVERSION_GPUTOROCDL_RUNTIMES_H
Runtime
Potential runtimes for AMD GPU kernels.
Definition Runtimes.h:15
Include the generated interface declarations.