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

Jan Patrick Lehr via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 5 08:00:20 PST 2025


================
@@ -0,0 +1,82 @@
+//===-- Enqueue.td - Enqueue 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 enqueable operations
+//
+//===----------------------------------------------------------------------===//
+
+def : Function {
+    let name = "olEnqueueDataWrite";
----------------
jplehr wrote:

Is there a reason why the name is not explicit of what it does, e.g., `olCopyFromHostToDevice` or should this follow this syntax `ol_copy_from_host_to_device`?
Similar comments apply to the other functions too.

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


More information about the llvm-commits mailing list