clBLAS
2.11
|
Functions | |
clblasStatus | clblasSsyrk (clblasOrder order, clblasUplo uplo, clblasTranspose transA, size_t N, size_t K, cl_float alpha, const cl_mem A, size_t offA, size_t lda, 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-k update of a symmetric matrix with float elements. Extended version. More... | |
clblasStatus | clblasDsyrk (clblasOrder order, clblasUplo uplo, clblasTranspose transA, size_t N, size_t K, cl_double alpha, const cl_mem A, size_t offA, size_t lda, 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-k update of a symmetric matrix with double elements. Extended version. More... | |
clblasStatus | clblasCsyrk (clblasOrder order, clblasUplo uplo, clblasTranspose transA, size_t N, size_t K, FloatComplex alpha, const cl_mem A, size_t offA, size_t lda, FloatComplex 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-k update of a symmetric matrix with complex float elements. Extended version. More... | |
clblasStatus | clblasZsyrk (clblasOrder order, clblasUplo uplo, clblasTranspose transA, size_t N, size_t K, DoubleComplex alpha, const cl_mem A, size_t offA, size_t lda, DoubleComplex 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-k update of a symmetric matrix with complex double elements. Extended version. More... | |
clblasStatus clblasCsyrk | ( | clblasOrder | order, |
clblasUplo | uplo, | ||
clblasTranspose | transA, | ||
size_t | N, | ||
size_t | K, | ||
FloatComplex | alpha, | ||
const cl_mem | A, | ||
size_t | offA, | ||
size_t | lda, | ||
FloatComplex | 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-k update of a symmetric matrix with complex float elements. Extended version.
Rank-k updates:
where C is a symmetric matrix.
[in] | order | Row/column order. |
[in] | uplo | The triangle in matrix C being referenced. |
[in] | transA | 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 of the first element of the matrix A in the buffer object. Counted in elements. |
[in] | lda | Leading dimension of matrix A. For detailed description, see clblasSsyrk(). |
[in] | beta | The factor of the matrix C. |
[out] | C | Buffer object storing matrix C. |
[in] | offC | Offset of the first element of the matrix C in the buffer object. Counted in elements. |
[in] | ldc | Leading dimension of matrix 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 clblasDsyrk | ( | clblasOrder | order, |
clblasUplo | uplo, | ||
clblasTranspose | transA, | ||
size_t | N, | ||
size_t | K, | ||
cl_double | alpha, | ||
const cl_mem | A, | ||
size_t | offA, | ||
size_t | lda, | ||
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-k update of a symmetric matrix with double elements. Extended version.
Rank-k updates:
where C is a symmetric matrix.
[in] | order | Row/column order. |
[in] | uplo | The triangle in matrix C being referenced. |
[in] | transA | 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 of the first element of the matrix A in the buffer object. Counted in elements. |
[in] | lda | Leading dimension of matrix A. For detailed description, see clblasSsyrk(). |
[in] | beta | The factor of the matrix C. |
[out] | C | Buffer object storing matrix C. |
[in] | offC | Offset of the first element of the matrix C in the buffer object. Counted in elements. |
[in] | ldc | Leading dimension of matrix 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 clblasSsyrk | ( | clblasOrder | order, |
clblasUplo | uplo, | ||
clblasTranspose | transA, | ||
size_t | N, | ||
size_t | K, | ||
cl_float | alpha, | ||
const cl_mem | A, | ||
size_t | offA, | ||
size_t | lda, | ||
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-k update of a symmetric matrix with float elements. Extended version.
Rank-k updates:
where C is a symmetric matrix.
[in] | order | Row/column order. |
[in] | uplo | The triangle in matrix C being referenced. |
[in] | transA | 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 of the first element of the matrix A in the buffer object. Counted in elements. |
[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. |
[in] | beta | The factor of the matrix C. |
[out] | C | Buffer object storing matrix C. |
[in] | offC | Offset of the first element of the matrix C in the buffer object. Counted in elements. |
[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 clblasZsyrk | ( | clblasOrder | order, |
clblasUplo | uplo, | ||
clblasTranspose | transA, | ||
size_t | N, | ||
size_t | K, | ||
DoubleComplex | alpha, | ||
const cl_mem | A, | ||
size_t | offA, | ||
size_t | lda, | ||
DoubleComplex | 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-k update of a symmetric matrix with complex double elements. Extended version.
Rank-k updates:
where C is a symmetric matrix.
[in] | order | Row/column order. |
[in] | uplo | The triangle in matrix C being referenced. |
[in] | transA | 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 of the first element of the matrix A in the buffer object. Counted in elements. |
[in] | lda | Leading dimension of matrix A. For detailed description, see clblasSsyrk(). |
[in] | beta | The factor of the matrix C. |
[out] | C | Buffer object storing matrix C. |
[in] | offC | Offset of the first element of the matrix C in the buffer object. Counted in elements. |
[in] | ldc | Leading dimension of matrix 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. |