clBLAS
2.11
|
Functions | |
clblasStatus | clblasSdot (size_t N, cl_mem dotProduct, size_t offDP, const cl_mem X, size_t offx, int incx, const cl_mem Y, size_t offy, int incy, cl_mem scratchBuff, cl_uint numCommandQueues, cl_command_queue *commandQueues, cl_uint numEventsInWaitList, const cl_event *eventWaitList, cl_event *events) |
dot product of two vectors containing float elements More... | |
clblasStatus | clblasDdot (size_t N, cl_mem dotProduct, size_t offDP, const cl_mem X, size_t offx, int incx, const cl_mem Y, size_t offy, int incy, cl_mem scratchBuff, cl_uint numCommandQueues, cl_command_queue *commandQueues, cl_uint numEventsInWaitList, const cl_event *eventWaitList, cl_event *events) |
dot product of two vectors containing double elements More... | |
clblasStatus | clblasCdotu (size_t N, cl_mem dotProduct, size_t offDP, const cl_mem X, size_t offx, int incx, const cl_mem Y, size_t offy, int incy, cl_mem scratchBuff, cl_uint numCommandQueues, cl_command_queue *commandQueues, cl_uint numEventsInWaitList, const cl_event *eventWaitList, cl_event *events) |
dot product of two vectors containing float-complex elements More... | |
clblasStatus | clblasZdotu (size_t N, cl_mem dotProduct, size_t offDP, const cl_mem X, size_t offx, int incx, const cl_mem Y, size_t offy, int incy, cl_mem scratchBuff, cl_uint numCommandQueues, cl_command_queue *commandQueues, cl_uint numEventsInWaitList, const cl_event *eventWaitList, cl_event *events) |
dot product of two vectors containing double-complex elements More... | |
clblasStatus | clblasCdotc (size_t N, cl_mem dotProduct, size_t offDP, const cl_mem X, size_t offx, int incx, const cl_mem Y, size_t offy, int incy, cl_mem scratchBuff, cl_uint numCommandQueues, cl_command_queue *commandQueues, cl_uint numEventsInWaitList, const cl_event *eventWaitList, cl_event *events) |
dot product of two vectors containing float-complex elements conjugating the first vector More... | |
clblasStatus | clblasZdotc (size_t N, cl_mem dotProduct, size_t offDP, const cl_mem X, size_t offx, int incx, const cl_mem Y, size_t offy, int incy, cl_mem scratchBuff, cl_uint numCommandQueues, cl_command_queue *commandQueues, cl_uint numEventsInWaitList, const cl_event *eventWaitList, cl_event *events) |
dot product of two vectors containing double-complex elements conjugating the first vector More... | |
clblasStatus clblasCdotc | ( | size_t | N, |
cl_mem | dotProduct, | ||
size_t | offDP, | ||
const cl_mem | X, | ||
size_t | offx, | ||
int | incx, | ||
const cl_mem | Y, | ||
size_t | offy, | ||
int | incy, | ||
cl_mem | scratchBuff, | ||
cl_uint | numCommandQueues, | ||
cl_command_queue * | commandQueues, | ||
cl_uint | numEventsInWaitList, | ||
const cl_event * | eventWaitList, | ||
cl_event * | events | ||
) |
dot product of two vectors containing float-complex elements conjugating the first vector
[in] | N | Number of elements in vector X. |
[out] | dotProduct | Buffer object that will contain the dot-product value |
[in] | offDP | Offset to dot-product in dotProduct buffer object. Counted in elements. |
[in] | X | Buffer object storing vector X. |
[in] | offx | Offset of first element of vector X in buffer object. Counted in elements. |
[in] | incx | Increment for the elements of X. Must not be zero. |
[in] | Y | Buffer object storing the vector Y. |
[in] | offy | Offset of first element of vector Y in buffer object. Counted in elements. |
[in] | incy | Increment for the elements of Y. Must not be zero. |
[in] | scratchBuff | Temporary cl_mem scratch buffer object of minimum size N |
[in] | numCommandQueues | Number of OpenCL command queues in which the task is to be performed. |
[in] | commandQueues | OpenCL command queues. |
[in] | numEventsInWaitList | Number of events in the event wait list. |
[in] | eventWaitList | Event wait list. |
[in] | events | Event objects per each command queue that identify a particular kernel execution instance. |
clblasStatus clblasCdotu | ( | size_t | N, |
cl_mem | dotProduct, | ||
size_t | offDP, | ||
const cl_mem | X, | ||
size_t | offx, | ||
int | incx, | ||
const cl_mem | Y, | ||
size_t | offy, | ||
int | incy, | ||
cl_mem | scratchBuff, | ||
cl_uint | numCommandQueues, | ||
cl_command_queue * | commandQueues, | ||
cl_uint | numEventsInWaitList, | ||
const cl_event * | eventWaitList, | ||
cl_event * | events | ||
) |
dot product of two vectors containing float-complex elements
[in] | N | Number of elements in vector X. |
[out] | dotProduct | Buffer object that will contain the dot-product value |
[in] | offDP | Offset to dot-product in dotProduct buffer object. Counted in elements. |
[in] | X | Buffer object storing vector X. |
[in] | offx | Offset of first element of vector X in buffer object. Counted in elements. |
[in] | incx | Increment for the elements of X. Must not be zero. |
[in] | Y | Buffer object storing the vector Y. |
[in] | offy | Offset of first element of vector Y in buffer object. Counted in elements. |
[in] | incy | Increment for the elements of Y. Must not be zero. |
[in] | scratchBuff | Temporary cl_mem scratch buffer object of minimum size N |
[in] | numCommandQueues | Number of OpenCL command queues in which the task is to be performed. |
[in] | commandQueues | OpenCL command queues. |
[in] | numEventsInWaitList | Number of events in the event wait list. |
[in] | eventWaitList | Event wait list. |
[in] | events | Event objects per each command queue that identify a particular kernel execution instance. |
clblasStatus clblasDdot | ( | size_t | N, |
cl_mem | dotProduct, | ||
size_t | offDP, | ||
const cl_mem | X, | ||
size_t | offx, | ||
int | incx, | ||
const cl_mem | Y, | ||
size_t | offy, | ||
int | incy, | ||
cl_mem | scratchBuff, | ||
cl_uint | numCommandQueues, | ||
cl_command_queue * | commandQueues, | ||
cl_uint | numEventsInWaitList, | ||
const cl_event * | eventWaitList, | ||
cl_event * | events | ||
) |
dot product of two vectors containing double elements
[in] | N | Number of elements in vector X. |
[out] | dotProduct | Buffer object that will contain the dot-product value |
[in] | offDP | Offset to dot-product in dotProduct buffer object. Counted in elements. |
[in] | X | Buffer object storing vector X. |
[in] | offx | Offset of first element of vector X in buffer object. Counted in elements. |
[in] | incx | Increment for the elements of X. Must not be zero. |
[in] | Y | Buffer object storing the vector Y. |
[in] | offy | Offset of first element of vector Y in buffer object. Counted in elements. |
[in] | incy | Increment for the elements of Y. Must not be zero. |
[in] | scratchBuff | Temporary cl_mem scratch buffer object of minimum size N |
[in] | numCommandQueues | Number of OpenCL command queues in which the task is to be performed. |
[in] | commandQueues | OpenCL command queues. |
[in] | numEventsInWaitList | Number of events in the event wait list. |
[in] | eventWaitList | Event wait list. |
[in] | events | Event objects per each command queue that identify a particular kernel execution instance. |
clblasStatus clblasSdot | ( | size_t | N, |
cl_mem | dotProduct, | ||
size_t | offDP, | ||
const cl_mem | X, | ||
size_t | offx, | ||
int | incx, | ||
const cl_mem | Y, | ||
size_t | offy, | ||
int | incy, | ||
cl_mem | scratchBuff, | ||
cl_uint | numCommandQueues, | ||
cl_command_queue * | commandQueues, | ||
cl_uint | numEventsInWaitList, | ||
const cl_event * | eventWaitList, | ||
cl_event * | events | ||
) |
dot product of two vectors containing float elements
[in] | N | Number of elements in vector X. |
[out] | dotProduct | Buffer object that will contain the dot-product value |
[in] | offDP | Offset to dot-product in dotProduct buffer object. Counted in elements. |
[in] | X | Buffer object storing vector X. |
[in] | offx | Offset of first element of vector X in buffer object. Counted in elements. |
[in] | incx | Increment for the elements of X. Must not be zero. |
[in] | Y | Buffer object storing the vector Y. |
[in] | offy | Offset of first element of vector Y in buffer object. Counted in elements. |
[in] | incy | Increment for the elements of Y. Must not be zero. |
[in] | scratchBuff | Temporary cl_mem scratch buffer object of minimum size N |
[in] | numCommandQueues | Number of OpenCL command queues in which the task is to be performed. |
[in] | commandQueues | OpenCL command queues. |
[in] | numEventsInWaitList | Number of events in the event wait list. |
[in] | eventWaitList | Event wait list. |
[in] | events | Event objects per each command queue that identify a particular kernel execution instance. |
clblasStatus clblasZdotc | ( | size_t | N, |
cl_mem | dotProduct, | ||
size_t | offDP, | ||
const cl_mem | X, | ||
size_t | offx, | ||
int | incx, | ||
const cl_mem | Y, | ||
size_t | offy, | ||
int | incy, | ||
cl_mem | scratchBuff, | ||
cl_uint | numCommandQueues, | ||
cl_command_queue * | commandQueues, | ||
cl_uint | numEventsInWaitList, | ||
const cl_event * | eventWaitList, | ||
cl_event * | events | ||
) |
dot product of two vectors containing double-complex elements conjugating the first vector
[in] | N | Number of elements in vector X. |
[out] | dotProduct | Buffer object that will contain the dot-product value |
[in] | offDP | Offset to dot-product in dotProduct buffer object. Counted in elements. |
[in] | X | Buffer object storing vector X. |
[in] | offx | Offset of first element of vector X in buffer object. Counted in elements. |
[in] | incx | Increment for the elements of X. Must not be zero. |
[in] | Y | Buffer object storing the vector Y. |
[in] | offy | Offset of first element of vector Y in buffer object. Counted in elements. |
[in] | incy | Increment for the elements of Y. Must not be zero. |
[in] | scratchBuff | Temporary cl_mem scratch buffer object of minimum size N |
[in] | numCommandQueues | Number of OpenCL command queues in which the task is to be performed. |
[in] | commandQueues | OpenCL command queues. |
[in] | numEventsInWaitList | Number of events in the event wait list. |
[in] | eventWaitList | Event wait list. |
[in] | events | Event objects per each command queue that identify a particular kernel execution instance. |
clblasStatus clblasZdotu | ( | size_t | N, |
cl_mem | dotProduct, | ||
size_t | offDP, | ||
const cl_mem | X, | ||
size_t | offx, | ||
int | incx, | ||
const cl_mem | Y, | ||
size_t | offy, | ||
int | incy, | ||
cl_mem | scratchBuff, | ||
cl_uint | numCommandQueues, | ||
cl_command_queue * | commandQueues, | ||
cl_uint | numEventsInWaitList, | ||
const cl_event * | eventWaitList, | ||
cl_event * | events | ||
) |
dot product of two vectors containing double-complex elements
[in] | N | Number of elements in vector X. |
[out] | dotProduct | Buffer object that will contain the dot-product value |
[in] | offDP | Offset to dot-product in dotProduct buffer object. Counted in elements. |
[in] | X | Buffer object storing vector X. |
[in] | offx | Offset of first element of vector X in buffer object. Counted in elements. |
[in] | incx | Increment for the elements of X. Must not be zero. |
[in] | Y | Buffer object storing the vector Y. |
[in] | offy | Offset of first element of vector Y in buffer object. Counted in elements. |
[in] | incy | Increment for the elements of Y. Must not be zero. |
[in] | scratchBuff | Temporary cl_mem scratch buffer object of minimum size N |
[in] | numCommandQueues | Number of OpenCL command queues in which the task is to be performed. |
[in] | commandQueues | OpenCL command queues. |
[in] | numEventsInWaitList | Number of events in the event wait list. |
[in] | eventWaitList | Event wait list. |
[in] | events | Event objects per each command queue that identify a particular kernel execution instance. |