|
clBLAS
2.11
|
Functions | |
| clblasStatus | clblasChpmv (clblasOrder order, clblasUplo uplo, size_t N, cl_float2 alpha, const cl_mem AP, size_t offa, const cl_mem X, size_t offx, int incx, cl_float2 beta, cl_mem Y, size_t offy, int incy, cl_uint numCommandQueues, cl_command_queue *commandQueues, cl_uint numEventsInWaitList, const cl_event *eventWaitList, cl_event *events) |
| Matrix-vector product with a packed hermitian matrix and float-complex elements. More... | |
| clblasStatus | clblasZhpmv (clblasOrder order, clblasUplo uplo, size_t N, cl_double2 alpha, const cl_mem AP, size_t offa, const cl_mem X, size_t offx, int incx, cl_double2 beta, cl_mem Y, size_t offy, int incy, cl_uint numCommandQueues, cl_command_queue *commandQueues, cl_uint numEventsInWaitList, const cl_event *eventWaitList, cl_event *events) |
| Matrix-vector product with a packed hermitian matrix and double-complex elements. More... | |
| clblasStatus clblasChpmv | ( | clblasOrder | order, |
| clblasUplo | uplo, | ||
| size_t | N, | ||
| cl_float2 | alpha, | ||
| const cl_mem | AP, | ||
| size_t | offa, | ||
| const cl_mem | X, | ||
| size_t | offx, | ||
| int | incx, | ||
| cl_float2 | beta, | ||
| cl_mem | Y, | ||
| size_t | offy, | ||
| int | incy, | ||
| cl_uint | numCommandQueues, | ||
| cl_command_queue * | commandQueues, | ||
| cl_uint | numEventsInWaitList, | ||
| const cl_event * | eventWaitList, | ||
| cl_event * | events | ||
| ) |
Matrix-vector product with a packed hermitian matrix and float-complex elements.
Matrix-vector products:
| [in] | order | Row/columns order. |
| [in] | uplo | The triangle in matrix being referenced. |
| [in] | N | Number of rows and columns in matrix AP. |
| [in] | alpha | The factor of matrix AP. |
| [in] | AP | Buffer object storing packed matrix AP. |
| [in] | offa | Offset in number of elements for first element in matrix AP. |
| [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 vector X. It cannot be zero. |
| [in] | beta | The factor of vector Y. |
| [out] | Y | Buffer object storing vector Y. |
| [in] | offy | Offset of first element of vector Y in buffer object. Counted in elements. |
| [in] | incy | Increment for the elements of vector Y. It cannot be zero. |
| [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 clblasZhpmv | ( | clblasOrder | order, |
| clblasUplo | uplo, | ||
| size_t | N, | ||
| cl_double2 | alpha, | ||
| const cl_mem | AP, | ||
| size_t | offa, | ||
| const cl_mem | X, | ||
| size_t | offx, | ||
| int | incx, | ||
| cl_double2 | beta, | ||
| cl_mem | Y, | ||
| size_t | offy, | ||
| int | incy, | ||
| cl_uint | numCommandQueues, | ||
| cl_command_queue * | commandQueues, | ||
| cl_uint | numEventsInWaitList, | ||
| const cl_event * | eventWaitList, | ||
| cl_event * | events | ||
| ) |
Matrix-vector product with a packed hermitian matrix and double-complex elements.
Matrix-vector products:
| [in] | order | Row/columns order. |
| [in] | uplo | The triangle in matrix being referenced. |
| [in] | N | Number of rows and columns in matrix AP. |
| [in] | alpha | The factor of matrix AP. |
| [in] | AP | Buffer object storing packed matrix AP. |
| [in] | offa | Offset in number of elements for first element in matrix AP. |
| [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 vector X. It cannot be zero. |
| [in] | beta | The factor of vector Y. |
| [out] | Y | Buffer object storing vector Y. |
| [in] | offy | Offset of first element of vector Y in buffer object. Counted in elements. |
| [in] | incy | Increment for the elements of vector Y. It cannot be zero. |
| [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. |
1.8.6