clBLAS
2.11
|
Functions | |
clblasStatus | clblasStrmv (clblasOrder order, clblasUplo uplo, clblasTranspose trans, clblasDiag diag, size_t N, const cl_mem A, size_t offa, size_t lda, cl_mem X, size_t offx, int incx, cl_mem scratchBuff, cl_uint numCommandQueues, cl_command_queue *commandQueues, cl_uint numEventsInWaitList, const cl_event *eventWaitList, cl_event *events) |
Matrix-vector product with a triangular matrix and float elements. More... | |
clblasStatus | clblasDtrmv (clblasOrder order, clblasUplo uplo, clblasTranspose trans, clblasDiag diag, size_t N, const cl_mem A, size_t offa, size_t lda, cl_mem X, size_t offx, int incx, cl_mem scratchBuff, cl_uint numCommandQueues, cl_command_queue *commandQueues, cl_uint numEventsInWaitList, const cl_event *eventWaitList, cl_event *events) |
Matrix-vector product with a triangular matrix and double elements. More... | |
clblasStatus | clblasCtrmv (clblasOrder order, clblasUplo uplo, clblasTranspose trans, clblasDiag diag, size_t N, const cl_mem A, size_t offa, size_t lda, cl_mem X, size_t offx, int incx, cl_mem scratchBuff, cl_uint numCommandQueues, cl_command_queue *commandQueues, cl_uint numEventsInWaitList, const cl_event *eventWaitList, cl_event *events) |
Matrix-vector product with a triangular matrix and float complex elements. More... | |
clblasStatus | clblasZtrmv (clblasOrder order, clblasUplo uplo, clblasTranspose trans, clblasDiag diag, size_t N, const cl_mem A, size_t offa, size_t lda, cl_mem X, size_t offx, int incx, cl_mem scratchBuff, cl_uint numCommandQueues, cl_command_queue *commandQueues, cl_uint numEventsInWaitList, const cl_event *eventWaitList, cl_event *events) |
Matrix-vector product with a triangular matrix and double complex elements. More... | |
clblasStatus clblasCtrmv | ( | clblasOrder | order, |
clblasUplo | uplo, | ||
clblasTranspose | trans, | ||
clblasDiag | diag, | ||
size_t | N, | ||
const cl_mem | A, | ||
size_t | offa, | ||
size_t | lda, | ||
cl_mem | X, | ||
size_t | offx, | ||
int | incx, | ||
cl_mem | scratchBuff, | ||
cl_uint | numCommandQueues, | ||
cl_command_queue * | commandQueues, | ||
cl_uint | numEventsInWaitList, | ||
const cl_event * | eventWaitList, | ||
cl_event * | events | ||
) |
Matrix-vector product with a triangular matrix and float complex elements.
Matrix-vector products:
[in] | order | Row/column order. |
[in] | uplo | The triangle in matrix being referenced. |
[in] | trans | How matrix A is to be transposed. |
[in] | diag | Specify whether matrix A is unit triangular. |
[in] | N | Number of rows/columns in matrix A. |
[in] | A | Buffer object storing matrix A. |
[in] | offa | Offset in number of elements for first element in matrix A. |
[in] | lda | Leading dimension of matrix A. It cannot be less than N |
[out] | X | Buffer object storing vector X. |
[in] | offx | Offset in number of elements for first element in vector X. |
[in] | incx | Increment for the elements of X. Must not be zero. |
[in] | scratchBuff | Temporary cl_mem scratch buffer object which can hold a minimum of (1 + (N-1)*abs(incx)) elements |
[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 clblasDtrmv | ( | clblasOrder | order, |
clblasUplo | uplo, | ||
clblasTranspose | trans, | ||
clblasDiag | diag, | ||
size_t | N, | ||
const cl_mem | A, | ||
size_t | offa, | ||
size_t | lda, | ||
cl_mem | X, | ||
size_t | offx, | ||
int | incx, | ||
cl_mem | scratchBuff, | ||
cl_uint | numCommandQueues, | ||
cl_command_queue * | commandQueues, | ||
cl_uint | numEventsInWaitList, | ||
const cl_event * | eventWaitList, | ||
cl_event * | events | ||
) |
Matrix-vector product with a triangular matrix and double elements.
Matrix-vector products:
[in] | order | Row/column order. |
[in] | uplo | The triangle in matrix being referenced. |
[in] | trans | How matrix A is to be transposed. |
[in] | diag | Specify whether matrix A is unit triangular. |
[in] | N | Number of rows/columns in matrix A. |
[in] | A | Buffer object storing matrix A. |
[in] | offa | Offset in number of elements for first element in matrix A. |
[in] | lda | Leading dimension of matrix A. It cannot be less than N |
[out] | X | Buffer object storing vector X. |
[in] | offx | Offset in number of elements for first element in vector X. |
[in] | incx | Increment for the elements of X. Must not be zero. |
[in] | scratchBuff | Temporary cl_mem scratch buffer object which can hold a minimum of (1 + (N-1)*abs(incx)) elements |
[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 clblasStrmv | ( | clblasOrder | order, |
clblasUplo | uplo, | ||
clblasTranspose | trans, | ||
clblasDiag | diag, | ||
size_t | N, | ||
const cl_mem | A, | ||
size_t | offa, | ||
size_t | lda, | ||
cl_mem | X, | ||
size_t | offx, | ||
int | incx, | ||
cl_mem | scratchBuff, | ||
cl_uint | numCommandQueues, | ||
cl_command_queue * | commandQueues, | ||
cl_uint | numEventsInWaitList, | ||
const cl_event * | eventWaitList, | ||
cl_event * | events | ||
) |
Matrix-vector product with a triangular matrix and float elements.
Matrix-vector products:
[in] | order | Row/column order. |
[in] | uplo | The triangle in matrix being referenced. |
[in] | trans | How matrix A is to be transposed. |
[in] | diag | Specify whether matrix A is unit triangular. |
[in] | N | Number of rows/columns in matrix A. |
[in] | A | Buffer object storing matrix A. |
[in] | offa | Offset in number of elements for first element in matrix A. |
[in] | lda | Leading dimension of matrix A. It cannot be less than N |
[out] | X | Buffer object storing vector X. |
[in] | offx | Offset in number of elements for first element in vector X. |
[in] | incx | Increment for the elements of X. Must not be zero. |
[in] | scratchBuff | Temporary cl_mem scratch buffer object which can hold a minimum of (1 + (N-1)*abs(incx)) elements |
[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 clblasZtrmv | ( | clblasOrder | order, |
clblasUplo | uplo, | ||
clblasTranspose | trans, | ||
clblasDiag | diag, | ||
size_t | N, | ||
const cl_mem | A, | ||
size_t | offa, | ||
size_t | lda, | ||
cl_mem | X, | ||
size_t | offx, | ||
int | incx, | ||
cl_mem | scratchBuff, | ||
cl_uint | numCommandQueues, | ||
cl_command_queue * | commandQueues, | ||
cl_uint | numEventsInWaitList, | ||
const cl_event * | eventWaitList, | ||
cl_event * | events | ||
) |
Matrix-vector product with a triangular matrix and double complex elements.
Matrix-vector products:
[in] | order | Row/column order. |
[in] | uplo | The triangle in matrix being referenced. |
[in] | trans | How matrix A is to be transposed. |
[in] | diag | Specify whether matrix A is unit triangular. |
[in] | N | Number of rows/columns in matrix A. |
[in] | A | Buffer object storing matrix A. |
[in] | offa | Offset in number of elements for first element in matrix A. |
[in] | lda | Leading dimension of matrix A. It cannot be less than N |
[out] | X | Buffer object storing vector X. |
[in] | offx | Offset in number of elements for first element in vector X. |
[in] | incx | Increment for the elements of X. Must not be zero. |
[in] | scratchBuff | Temporary cl_mem scratch buffer object which can hold a minimum of (1 + (N-1)*abs(incx)) elements |
[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. |