Proposal ID | CP020 |
---|---|
Name | Interop Task |
Date of Creation | 16 January 2019 |
Revision | 0.2 |
Target | Vendor extension |
Current Status | 0.1 Availalable since CE 1.0.5 |
Reply-to | Victor Lomüller [email protected] |
Original author | Victor Lomüller [email protected], Gordon Brown [email protected], Peter Zuzek [email protected] |
Contributors | Victor Lomüller [email protected], Gordon Brown [email protected], Peter Zuzek [email protected], Ruyman Reyes [email protected] |
Note: This extension will be superseeded with CP022 in upcoming releases. The current extension will be maintained for backwards compatibility.
SYCL does not allow a user to access cl_mem object out of an cl::sycl::accessor, it is difficult to integrate low-level API functionality inside the data-flow execution model of SYCL, as the only current way to do this is to create all OpenCL buffers up-front, which is not always possible.
This proposal introduces a way for a user to retrieve the low-level objects associated with SYCL buffers and enqueue a host task that can execute an arbitrary portion of host code within the SYCL runtime, therefore taking advantage of SYCL dependency analysis and scheduling.
get_buffer
renamed toget_mem
- Clarified wording on
get_queue
andget_mem
interop_handle
is passed by value to the lambda instead of reference
Initial proposal
We introduce a new type of handler, the codeplay::handler, which includes a new
interop_task method that enables submission of low-level API code from the host.
By submitting this command group to the SYCL device queue, we guarantee it is
executed in-order w.r.t the other command groups on the same queue.
Simultaneously, we guarantee that this operation is performed
asynchronously w.r.t to the user-thread (therefore, enabling the user
thread to continue submitting command groups).
Other command groups enqueued in the same or different queues
can be executed following the sequential consistency by guaranteeing the
satisfaction of the requisites of this command group.
It is the user's responsibility to ensure the lambda submitted via interop_task
does not create race conditions with other command groups or with the host.
The possibility of enqueuing host tasks on SYCL queues also enables the runtime to perform further optimizations when available. For example, a SYCL runtime may decide to map / unmap instead of performing copy operations, or perform asynchronous transfers while data is being computed.
namespace cl {
namespace sycl {
namespace codeplay {
class handler : public cl::sycl::handler {
private:
// implementation defined constructor
handler(__unspecified__);
public:
/* Submit a task with interoperability statements. */
template <typename FunctorT>
void interop_task(FunctorT hostFunction);
};
} // namespace codeplay
} // namespace sycl
} // namespace cl
The interop_task
allows users to submit tasks containing C++ statements with low-level API calls (e.g. OpenCL Host API entries).
The command group that encapsulates the task will execute following the usual SYCL dataflow execution rules.
The SYCL event returned by the command group will be completed when the interop_task
functor is completed. Note the SYCL event is completed regardless of the completion
status of any OpenCL operation enqueued or performed inside the interop_task
scope. In particular, dispatching of asynchronous OpenCL operations inside
of the interop_task
requires manual synchronization.
The functor passed to the interop_task
takes as input a cl::sycl::codeplay::interop_handle
. The handle can be used to retrieve underlying OpenCL objects relative to the execution of the task.
It is not allowed to allocate new SYCL objects inside a interop_task
scope.
It is the user's responsibility to ensure that all operations performed inside the interop_task
are finished before returning from it.
Since SYCL queues are out of order, and any underlying OpenCL queue can be as well,
there is no guarantee that OpenCL commands enqueued inside the interop_task
functor will execute on a particular order w.r.t other SYCL commands or
interop_task
once dispatched to the OpenCL queue, unless this is is
explicitly handled by using OpenCL events or barriers.
Although the statements inside the lambda submitted to the interop_task
are executed on the host, the requirements and actions for the command group are satisfied for the device.
This is the opposite of the host_handler
vendor extension, where requisites are satisfied for the host since the statements on the lambda submitted to the single task are meant to have side effects on the host only.
The interop-task
lambda can have side effects on the host, but it is the programmer responsibility to ensure requirements don't need to be satisfied for the host.
Executing a interop_task
in a host device is invalid, and the asynchronous
exception cl::sycl::feature_not_supported
is thrown.
We introduce the interop_handle
class which provides access to underlying OpenCL objects during the execution of the interop_task
.
interop_handle
objects are immutable objects whose purpose is to enable users access to low-level API functionality.
The interface of the interop_handle
is defined as follow:
namespace cl {
namespace sycl {
namespace codeplay {
class interop_handle {
private:
// implementation defined constructor
interop_handle(__unspecified__);
public:
/* Return the context */
cl_context get_context() const noexcept;
/* Return the device id */
cl_device_id get_device() const noexcept;
/* Return the command queue associated with this task */
cl_command_queue get_queue() const noexcept;
/*
Returns the underlying cl_mem object associated with a given accessor
*/
template <typename dataT, int dimensions, access::mode accessmode,
access::target accessTarget,
access::placeholder isPlaceholder>
cl_mem get_mem(const accessor<dataT, dimensions, accessmode, access::target accessTarget, access::placeholder isPlaceholder>&) const;
};
} // namespace codeplay
} // namespace sycl
} // namespace cl
The get_queue
method returns an underlying OpenCL queue for the
SYCL queue used to submit the command group, or the fallback queue
if this command-group is re-trying execution on an OpenCL queue.
The OpenCL command queue returned is implementation-defined in cases
where the SYCL queue maps to multiple underlying OpenCL objects.
It is responsibility of the SYCL runtime to ensure the OpenCL queue
returned is in a state that can be used to dispatch work,
and that other potential OpenCL command queues associated with the same
SYCL command queues are not executing commands while the interop_task
is being executed.
The get_mem
method receives a SYCL accessor that has been defined as a
requirement for the command group, and returns the underlying OpenCL
memory object that is used by the SYCL runtime.
If the accessor passed as parameter is not part of the command group
requirements (e.g. it is an unregistered placeholder accessor),
the exception cl::sycl::invalid_object
is thrown asynchronously.
auto cgH = [=] (codeplay::handler& cgh) {
// Get device accessor to SYCL buffer (cannot be dereferenced directly in interop_task).
auto accA = bufA.get_access<access::mode::read>(cgh);
auto accB = bufB.get_access<access::mode::read_write>(cgh);
h.interop_task([=](codeplay::interop_handle &handle) {
third_party_api(handle.get_queue(), // Get the OpenCL command queue to use, can be the fallback
handle.get_buffer(accA), // Get the OpenCL mem object behind accA
handle.get_buffer(accB)); // Get the OpenCL mem object behind accB
// Assumes call has finish when exiting the task
});
};
qA.submit(cgH);
This example calls the clFFT library from SYCL using the interop_task
:
#include <stdlib.h>
#include <CL/sycl.hpp>
/* No need to explicitly include the OpenCL headers */
#include <clFFT.h>
int main( void )
{
size_t N = 16;
cl::sycl::queue device_queue;
cl::sycl::buffer<float> X(range<1>(N * 2));
/* Setup clFFT. */
clfftSetupData fftSetup;
err = clfftInitSetupData(&fftSetup);
err = clfftSetup(&fftSetup);
device_queue.submit([=](codeplay::handler& cgh) {
auto X_accessor = X.get_access<access::mode::read_write>(cgh);
h.interop_task([=](codeplay::interop_handle &handle) {
/* FFT library related declarations */
clfftPlanHandle planHandle;
size_t clLengths[1] = {N};
/* Create a default plan for a complex FFT. */
err = clfftCreateDefaultPlan(&planHandle, handle.get_context(), CLFFT_1D, clLengths);
/* Set plan parameters. */
err = clfftSetPlanPrecision(planHandle, CLFFT_SINGLE);
err = clfftSetLayout(planHandle, CLFFT_COMPLEX_INTERLEAVED, CLFFT_COMPLEX_INTERLEAVED);
err = clfftSetResultLocation(planHandle, CLFFT_INPLACE);
/* Bake the plan. */
err = clfftBakePlan(planHandle, 1, &queue, NULL, NULL);
/* Execute the plan. */
cl_command_queue queue = handle.get_queue();
cl_mem X_mem = handle.get_mem(X_accessor);
err = clfftEnqueueTransform(planHandle, CLFFT_FORWARD,
1, &queue, 0, NULL, NULL,
&X_mem, NULL, NULL);
/* Wait for calculations to finish. */
err = clFinish(queue);
/* Release the plan. */
err = clfftDestroyPlan( &planHandle );
});
});
/* Release clFFT library. */
clfftTeardown( );
return 0;
}