|
clBLAS
2.11
|
Functions | |
| clblasStatus | clblasChpr (clblasOrder order, clblasUplo uplo, size_t N, cl_float alpha, const cl_mem X, size_t offx, int incx, cl_mem AP, size_t offa, cl_uint numCommandQueues, cl_command_queue *commandQueues, cl_uint numEventsInWaitList, const cl_event *eventWaitList, cl_event *events) |
| hermitian rank 1 operation with a general triangular packed-matrix and float-complex elements. More... | |
| clblasStatus | clblasZhpr (clblasOrder order, clblasUplo uplo, size_t N, cl_double alpha, const cl_mem X, size_t offx, int incx, cl_mem AP, size_t offa, cl_uint numCommandQueues, cl_command_queue *commandQueues, cl_uint numEventsInWaitList, const cl_event *eventWaitList, cl_event *events) |
| hermitian rank 1 operation with a general triangular packed-matrix and double-complex elements. More... | |
The Level 2 Basic Linear Algebra Subprogram functions that perform hermitian rank 1 operations on packed matrix
| clblasStatus clblasChpr | ( | clblasOrder | order, |
| clblasUplo | uplo, | ||
| size_t | N, | ||
| cl_float | alpha, | ||
| const cl_mem | X, | ||
| size_t | offx, | ||
| int | incx, | ||
| cl_mem | AP, | ||
| size_t | offa, | ||
| cl_uint | numCommandQueues, | ||
| cl_command_queue * | commandQueues, | ||
| cl_uint | numEventsInWaitList, | ||
| const cl_event * | eventWaitList, | ||
| cl_event * | events | ||
| ) |
hermitian rank 1 operation with a general triangular packed-matrix and float-complex elements.
hermitian rank 1 operation:
| [in] | order | Row/column order. |
| [in] | uplo | The triangle in matrix being referenced. |
| [in] | N | Number of columns in matrix A. |
| [in] | alpha | The factor of matrix A (a scalar float value) |
| [in] | X | Buffer object storing vector X. |
| [in] | offx | Offset in number of elements for the first element in vector X. |
| [in] | incx | Increment for the elements of X. Must not be zero. |
| [out] | AP | Buffer object storing matrix AP. |
| [in] | offa | Offset in number of elements for the first element in matrix AP. |
| [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 clblasZhpr | ( | clblasOrder | order, |
| clblasUplo | uplo, | ||
| size_t | N, | ||
| cl_double | alpha, | ||
| const cl_mem | X, | ||
| size_t | offx, | ||
| int | incx, | ||
| cl_mem | AP, | ||
| size_t | offa, | ||
| cl_uint | numCommandQueues, | ||
| cl_command_queue * | commandQueues, | ||
| cl_uint | numEventsInWaitList, | ||
| const cl_event * | eventWaitList, | ||
| cl_event * | events | ||
| ) |
hermitian rank 1 operation with a general triangular packed-matrix and double-complex elements.
hermitian rank 1 operation:
| [in] | order | Row/column order. |
| [in] | uplo | The triangle in matrix being referenced. |
| [in] | N | Number of columns in matrix A. |
| [in] | alpha | The factor of matrix A (a scalar float value) |
| [in] | X | Buffer object storing vector X. |
| [in] | offx | Offset in number of elements for the first element in vector X. |
| [in] | incx | Increment for the elements of X. Must not be zero. |
| [out] | AP | Buffer object storing matrix AP. |
| [in] | offa | Offset in number of elements for the first element in matrix AP. |
| [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