|
clBLAS
2.11
|
Functions | |
| clblasStatus | clblasCher2k (clblasOrder order, clblasUplo uplo, clblasTranspose trans, size_t N, size_t K, FloatComplex alpha, const cl_mem A, size_t offa, size_t lda, const cl_mem B, size_t offb, size_t ldb, cl_float beta, cl_mem C, size_t offc, size_t ldc, cl_uint numCommandQueues, cl_command_queue *commandQueues, cl_uint numEventsInWaitList, const cl_event *eventWaitList, cl_event *events) |
| Rank-2k update of a hermitian matrix with float-complex elements. More... | |
| clblasStatus | clblasZher2k (clblasOrder order, clblasUplo uplo, clblasTranspose trans, size_t N, size_t K, DoubleComplex alpha, const cl_mem A, size_t offa, size_t lda, const cl_mem B, size_t offb, size_t ldb, cl_double beta, cl_mem C, size_t offc, size_t ldc, cl_uint numCommandQueues, cl_command_queue *commandQueues, cl_uint numEventsInWaitList, const cl_event *eventWaitList, cl_event *events) |
| Rank-2k update of a hermitian matrix with double-complex elements. More... | |
| clblasStatus clblasCher2k | ( | clblasOrder | order, |
| clblasUplo | uplo, | ||
| clblasTranspose | trans, | ||
| size_t | N, | ||
| size_t | K, | ||
| FloatComplex | alpha, | ||
| const cl_mem | A, | ||
| size_t | offa, | ||
| size_t | lda, | ||
| const cl_mem | B, | ||
| size_t | offb, | ||
| size_t | ldb, | ||
| cl_float | beta, | ||
| cl_mem | C, | ||
| size_t | offc, | ||
| size_t | ldc, | ||
| cl_uint | numCommandQueues, | ||
| cl_command_queue * | commandQueues, | ||
| cl_uint | numEventsInWaitList, | ||
| const cl_event * | eventWaitList, | ||
| cl_event * | events | ||
| ) |
Rank-2k update of a hermitian matrix with float-complex elements.
Rank-k updates:
where C is a hermitian matrix.
| [in] | order | Row/column order. |
| [in] | uplo | The triangle in matrix C being referenced. |
| [in] | trans | How matrix A is to be transposed. |
| [in] | N | Number of rows and columns in matrix C. |
| [in] | K | Number of columns of the matrix A if it is not transposed, and number of rows otherwise. |
| [in] | alpha | The factor of matrix A. |
| [in] | A | Buffer object storing the matrix A. |
| [in] | offa | Offset in number of elements for the first element in matrix A. |
| [in] | lda | Leading dimension of matrix A. It cannot be less than K if A is in the row-major format, and less than N otherwise. Vice-versa for transpose case. |
| [in] | B | Buffer object storing the matrix B. |
| [in] | offb | Offset in number of elements for the first element in matrix B. |
| [in] | ldb | Leading dimension of matrix B. It cannot be less than K if B is in the row-major format, and less than N otherwise. Vice-versa for transpose case |
| [in] | beta | The factor of the matrix C. |
| [out] | C | Buffer object storing matrix C. |
| [in] | offc | Offset in number of elements for the first element in matrix C. |
| [in] | ldc | Leading dimension of matric C. It cannot be less than 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 clblasZher2k | ( | clblasOrder | order, |
| clblasUplo | uplo, | ||
| clblasTranspose | trans, | ||
| size_t | N, | ||
| size_t | K, | ||
| DoubleComplex | alpha, | ||
| const cl_mem | A, | ||
| size_t | offa, | ||
| size_t | lda, | ||
| const cl_mem | B, | ||
| size_t | offb, | ||
| size_t | ldb, | ||
| cl_double | beta, | ||
| cl_mem | C, | ||
| size_t | offc, | ||
| size_t | ldc, | ||
| cl_uint | numCommandQueues, | ||
| cl_command_queue * | commandQueues, | ||
| cl_uint | numEventsInWaitList, | ||
| const cl_event * | eventWaitList, | ||
| cl_event * | events | ||
| ) |
Rank-2k update of a hermitian matrix with double-complex elements.
Rank-k updates:
where C is a hermitian matrix.
| [in] | order | Row/column order. |
| [in] | uplo | The triangle in matrix C being referenced. |
| [in] | trans | How matrix A is to be transposed. |
| [in] | N | Number of rows and columns in matrix C. |
| [in] | K | Number of columns of the matrix A if it is not transposed, and number of rows otherwise. |
| [in] | alpha | The factor of matrix A. |
| [in] | A | Buffer object storing the matrix A. |
| [in] | offa | Offset in number of elements for the first element in matrix A. |
| [in] | lda | Leading dimension of matrix A. It cannot be less than K if A is in the row-major format, and less than N otherwise. Vice-versa for transpose case. |
| [in] | B | Buffer object storing the matrix B. |
| [in] | offb | Offset in number of elements for the first element in matrix B. |
| [in] | ldb | Leading dimension of matrix B. It cannot be less than K if B is in the row-major format, and less than N otherwise. Vice-versa for transpose case. |
| [in] | beta | The factor of the matrix C. |
| [out] | C | Buffer object storing matrix C. |
| [in] | offc | Offset in number of elements for the first element in matrix C. |
| [in] | ldc | Leading dimension of matric C. It cannot be less than 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. |
1.8.6