]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/boost/compute/detail/meta_kernel.hpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / boost / compute / detail / meta_kernel.hpp
index 13af7cc43786e1c3b07cd40a51c45e551e19a9d7..95a67e68274773e60a6c055639ce47ed909db47b 100644 (file)
@@ -665,7 +665,8 @@ public:
 
     event exec_1d(command_queue &queue,
                   size_t global_work_offset,
-                  size_t global_work_size)
+                  size_t global_work_size,
+                  const wait_list &events = wait_list())
     {
         const context &context = queue.get_context();
 
@@ -675,14 +676,16 @@ public:
                    kernel,
                    global_work_offset,
                    global_work_size,
-                   0
+                   0,
+                   events
                );
     }
 
     event exec_1d(command_queue &queue,
                  size_t global_work_offset,
                  size_t global_work_size,
-                 size_t local_work_size)
+                 size_t local_work_size,
+                 const wait_list &events = wait_list())
     {
         const context &context = queue.get_context();
 
@@ -692,7 +695,8 @@ public:
                    kernel,
                    global_work_offset,
                    global_work_size,
-                   local_work_size
+                   local_work_size,
+                   events
                );
     }