clBLAS
2.11
|
Functions | |
clblasStatus | clblasSsymm (clblasOrder order, clblasSide side, clblasUplo uplo, size_t M, size_t N, cl_float 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) |
Matrix-matrix product of symmetric rectangular matrices with float elements. More... | |
clblasStatus | clblasDsymm (clblasOrder order, clblasSide side, clblasUplo uplo, size_t M, size_t N, cl_double 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) |
Matrix-matrix product of symmetric rectangular matrices with double elements. More... | |
clblasStatus | clblasCsymm (clblasOrder order, clblasSide side, clblasUplo uplo, size_t M, size_t N, cl_float2 alpha, const cl_mem A, size_t offa, size_t lda, const cl_mem B, size_t offb, size_t ldb, cl_float2 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) |
Matrix-matrix product of symmetric rectangular matrices with float-complex elements. More... | |
clblasStatus | clblasZsymm (clblasOrder order, clblasSide side, clblasUplo uplo, size_t M, size_t N, cl_double2 alpha, const cl_mem A, size_t offa, size_t lda, const cl_mem B, size_t offb, size_t ldb, cl_double2 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) |
Matrix-matrix product of symmetric rectangular matrices with double-complex elements. More... | |
clblasStatus clblasCsymm | ( | clblasOrder | order, |
clblasSide | side, | ||
clblasUplo | uplo, | ||
size_t | M, | ||
size_t | N, | ||
cl_float2 | alpha, | ||
const cl_mem | A, | ||
size_t | offa, | ||
size_t | lda, | ||
const cl_mem | B, | ||
size_t | offb, | ||
size_t | ldb, | ||
cl_float2 | 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 | ||
) |
Matrix-matrix product of symmetric rectangular matrices with float-complex elements.
Matrix-matrix products:
[in] | order | Row/column order. |
[in] | side | The side of triangular matrix. |
[in] | uplo | The triangle in matrix being referenced. |
[in] | M | Number of rows in matrices B and C. |
[in] | N | Number of columns in matrices B and C. |
[in] | alpha | The factor of matrix A. |
[in] | A | Buffer object storing 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 M when the side parameter is set to clblasLeft, or less than N when the parameter is set to clblasRight. |
[in] | B | Buffer object storing matrix B. |
[in] | offb | Offset of the first element of the matrix B in the buffer object. Counted in elements. |
[in] | ldb | Leading dimension of matrix B. It cannot be less than N when the order parameter is set to clblasRowMajor, or less than M when it is set to clblasColumnMajor. |
[in] | beta | The factor of 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 when the order parameter is set to clblasRowMajor, or less than M when it is set to clblasColumnMajorOrder. |
[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 clblasDsymm | ( | clblasOrder | order, |
clblasSide | side, | ||
clblasUplo | uplo, | ||
size_t | M, | ||
size_t | N, | ||
cl_double | 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 | ||
) |
Matrix-matrix product of symmetric rectangular matrices with double elements.
Matrix-matrix products:
[in] | order | Row/column order. |
[in] | side | The side of triangular matrix. |
[in] | uplo | The triangle in matrix being referenced. |
[in] | M | Number of rows in matrices B and C. |
[in] | N | Number of columns in matrices B and C. |
[in] | alpha | The factor of matrix A. |
[in] | A | Buffer object storing 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 M when the side parameter is set to clblasLeft, or less than N when the parameter is set to clblasRight. |
[in] | B | Buffer object storing matrix B. |
[in] | offb | Offset of the first element of the matrix B in the buffer object. Counted in elements. |
[in] | ldb | Leading dimension of matrix B. It cannot be less than N when the order parameter is set to clblasRowMajor, or less than M when it is set to clblasColumnMajor. |
[in] | beta | The factor of 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 when the order parameter is set to clblasRowMajor, or less than M when it is set to clblasColumnMajorOrder. |
[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 clblasSsymm | ( | clblasOrder | order, |
clblasSide | side, | ||
clblasUplo | uplo, | ||
size_t | M, | ||
size_t | N, | ||
cl_float | 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 | ||
) |
Matrix-matrix product of symmetric rectangular matrices with float elements.
Matrix-matrix products:
[in] | order | Row/column order. |
[in] | side | The side of triangular matrix. |
[in] | uplo | The triangle in matrix being referenced. |
[in] | M | Number of rows in matrices B and C. |
[in] | N | Number of columns in matrices B and C. |
[in] | alpha | The factor of matrix A. |
[in] | A | Buffer object storing 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 M when the side parameter is set to clblasLeft, or less than N when the parameter is set to clblasRight. |
[in] | B | Buffer object storing matrix B. |
[in] | offb | Offset of the first element of the matrix B in the buffer object. Counted in elements. |
[in] | ldb | Leading dimension of matrix B. It cannot be less than N when the order parameter is set to clblasRowMajor, or less than M when it is set to clblasColumnMajor. |
[in] | beta | The factor of 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 when the order parameter is set to clblasRowMajor, or less than M when it is set to clblasColumnMajorOrder. |
[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 clblasZsymm | ( | clblasOrder | order, |
clblasSide | side, | ||
clblasUplo | uplo, | ||
size_t | M, | ||
size_t | N, | ||
cl_double2 | alpha, | ||
const cl_mem | A, | ||
size_t | offa, | ||
size_t | lda, | ||
const cl_mem | B, | ||
size_t | offb, | ||
size_t | ldb, | ||
cl_double2 | 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 | ||
) |
Matrix-matrix product of symmetric rectangular matrices with double-complex elements.
Matrix-matrix products:
[in] | order | Row/column order. |
[in] | side | The side of triangular matrix. |
[in] | uplo | The triangle in matrix being referenced. |
[in] | M | Number of rows in matrices B and C. |
[in] | N | Number of columns in matrices B and C. |
[in] | alpha | The factor of matrix A. |
[in] | A | Buffer object storing 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 M when the side parameter is set to clblasLeft, or less than N when the parameter is set to clblasRight. |
[in] | B | Buffer object storing matrix B. |
[in] | offb | Offset of the first element of the matrix B in the buffer object. Counted in elements. |
[in] | ldb | Leading dimension of matrix B. It cannot be less than N when the order parameter is set to clblasRowMajor, or less than M when it is set to clblasColumnMajor. |
[in] | beta | The factor of 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 when the order parameter is set to clblasRowMajor, or less than M when it is set to clblasColumnMajorOrder. |
[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. |