[llvm] [OFFLOAD] Add plugin with support for Intel oneAPI Level Zero (PR #158900)
    Kevin Sala Penades via llvm-commits 
    llvm-commits at lists.llvm.org
       
    Fri Sep 26 11:30:10 PDT 2025
    
    
  
================
@@ -0,0 +1,53 @@
+//===--- Level Zero Target RTL Implementation -----------------------------===//
+//
+// 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
+//
+//===----------------------------------------------------------------------===//
+//
+// Async Queue wrapper for Level Zero
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef OPENMP_LIBOMPTARGET_PLUGINS_NEXTGEN_LEVEL_ZERO_ASYNCQUEUE_H
+#define OPENMP_LIBOMPTARGET_PLUGINS_NEXTGEN_LEVEL_ZERO_ASYNCQUEUE_H
+
+#include <tuple>
+
+#include "L0Memory.h"
+
+namespace llvm {
+namespace omp {
+namespace target {
+namespace plugin {
+
+/// Abstract queue that supports asynchronous command submission
+struct AsyncQueueTy {
+  /// List of events attahced to submitted commands
----------------
kevinsala wrote:
typo
https://github.com/llvm/llvm-project/pull/158900
    
    
More information about the llvm-commits
mailing list