[llvm] [Offload] Implement the remaining initial Offload API (PR #122106)

Callum Fare via llvm-commits llvm-commits at lists.llvm.org
Fri Mar 7 08:25:29 PST 2025


================
@@ -0,0 +1,46 @@
+//===-- Program.td - Program definitions 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
+//
+//===----------------------------------------------------------------------===//
+//
+// This file contains Offload API definitions related to the program handle
+//
+//===----------------------------------------------------------------------===//
+
+def : Function {
+    let name = "olCreateProgram";
+    let desc = "Create a program for the device from the binary image pointed to by `ProgData`.";
+    let details = [
+        "The created program has an initial reference count of 1."
----------------
callumfare wrote:

I've removed all referencing counting now. After some discussion internally we don't think its removal will cause problems for SYCL.

https://github.com/llvm/llvm-project/pull/122106


More information about the llvm-commits mailing list