Ross Brunton 466357ab51
[Offload] Change ol_kernel_handle_t -> ol_symbol_handle_t (#147943)
In the future, we want `ol_symbol_handle_t` to represent both kernels
and global variables The first step in this process is a rename and
promotion to a "typed handle".
2025-07-10 14:54:10 +01:00

22 lines
640 B
TableGen

//===-- OffloadAPI.td - Root tablegen file for Offload -----*- tablegen -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
// Always include this file first
include "APIDefs.td"
// Add API definition files here
include "Common.td"
include "Platform.td"
include "Device.td"
include "Memory.td"
include "Queue.td"
include "Event.td"
include "Program.td"
include "Kernel.td"
include "Symbol.td"