C Specification
To create a pipe object, call the function
// Provided by CL_VERSION_2_0
cl_mem clCreatePipe(
cl_context context,
cl_mem_flags flags,
cl_uint pipe_packet_size,
cl_uint pipe_max_packets,
const cl_pipe_properties* properties,
cl_int* errcode_ret);
| clCreatePipe is missing before version 2.0. |
Parameters
-
context is a valid OpenCL context used to create the pipe object.
-
flags is a bit-field that is used to specify allocation and usage information such as the memory arena that should be used to allocate the pipe object and how it will be used. The Memory Flags table describes the possible values for flags. Only
CL_MEM_andREAD_ WRITE CL_MEM_can be specified when creating a pipe object. If the value specified for flags is 0, the default is used which isHOST_ NO_ ACCESS CL_MEM_|READ_ WRITE CL_MEM_.HOST_ NO_ ACCESS -
pipe_packet_size is the size in bytes of a pipe packet.
-
pipe_max_packets specifies the pipe capacity by specifying the maximum number of packets the pipe can hold.
-
properties specifies a list of properties for the pipe and their corresponding values. Each property name is immediately followed by the corresponding desired value. The list is terminated with 0. Currently, in all OpenCL versions, properties must be
NULL. -
errcode_ret will return an appropriate error code. If errcode_ret is
NULL, no error code is returned.
Description
clCreatePipe returns a valid non-zero pipe object and errcode_ret is set
to CL_SUCCESS if the pipe object is created successfully.
Otherwise, it returns a NULL value with one of the following error values
returned in errcode_ret:
-
CL_INVALID_if context is not a valid context.CONTEXT -
CL_INVALID_if no devices in context support pipes.OPERATION -
CL_INVALID_if values specified in flags are not as defined above.VALUE -
CL_INVALID_if properties is notVALUE NULL. -
CL_INVALID_if pipe_packet_size is 0 or the pipe_packet_size exceedsPIPE_ SIZE CL_DEVICE_value specified in the Device Queries table for all devices in context or if pipe_max_packets is 0.PIPE_ MAX_ PACKET_ SIZE -
CL_MEM_if there is a failure to allocate memory for the pipe object.OBJECT_ ALLOCATION_ FAILURE -
CL_OUT_if there is a failure to allocate resources required by the OpenCL implementation on the device.OF_ RESOURCES -
CL_OUT_if there is a failure to allocate resources required by the OpenCL implementation on the host.OF_ HOST_ MEMORY -
CL_INVALID_ifVALUE CL_MEM_is set in flags.IMMUTABLE_ EXT
Pipes follow the same memory consistency model as defined for buffer and image objects. The pipe state i.e. contents of the pipe across kernel-instances (on the same or different devices) is enforced at a synchronization point.
Document Notes
For more information, see the OpenCL Specification
This page is extracted from the OpenCL Specification. Fixes and changes should be made to the Specification, not directly.