[llvm] WIP: [Offload] Add testing for Offload program and kernel related entry points (PR #127803)
Joseph Huber via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 19 08:08:15 PST 2025
================
@@ -0,0 +1,104 @@
+//===-- 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 = "olEnqueueMemcpy";
----------------
jhuber6 wrote:
Do we need to be specific about `enqueue`? The way things work in the plugins at least is that everything takes a queue pointer, and if it's null we do it synchronously. We could also just make `olMemcpy` and `olMemcpyAsync` if we want to omit the argument since we do only give out handles, not pointers.
https://github.com/llvm/llvm-project/pull/127803
More information about the llvm-commits
mailing list