syclreference.com
  1. SYCL
  2. | API Reference
  3. | queue
  4. | submit

submit

MISSING


template <typename T>
cl::sycl::event submit(T cgf)
(1)
template <typename T>
cl::sycl::event submit(T cgf, const cl::sycl::queue & queue)
(2)
  1. Submits a command group functor to execution.
    Parameters:
    • T cgf : The command group functor
  2. Submits a command group functor to execution with a fallback queue. If an error occur during the execution of the kernel on the current queue, the runtime will try to run the kernel on the fallback queue.
    Parameters:
    • T cgf : The command group functor
    • const cl::sycl::queue & queue : The fallback queue to use in case of error.

syclreference.com — SYCL Reference Pages

Last updated: 2019-01-24 00:24:52 +0000