rocblas_ztrsv_batched Interface Reference#
hipfort_rocblas::rocblas_ztrsv_batched Interface Reference
! More...
Public Member Functions | |
| integer(kind(rocblas_status_success)) function | rocblas_ztrsv_batched_orig (handle, uplo, transA, diag, m, A, lda, x, incx, batch_count) |
| integer(kind(rocblas_status_success)) function | rocblas_ztrsv_batched_full_rank (handle, uplo, transA, diag, m, A, lda, x, incx, batch_count) |
| integer(kind(rocblas_status_success)) function | rocblas_ztrsv_batched_rank_0 (handle, uplo, transA, diag, m, A, lda, x, incx, batch_count) |
| integer(kind(rocblas_status_success)) function | rocblas_ztrsv_batched_rank_1 (handle, uplo, transA, diag, m, A, lda, x, incx, batch_count) |
Detailed Description
!
BLAS Level 2 API
\details
trsv_batched solves
A_ix_i = b_i or A_iTx_i = b_i,
where (A_i, x_i, b_i) is the i-th instance of the batch.
x_i and b_i are vectors and A_i is an
m by m triangular matrix.
The vector x is overwritten on b.
@param[in]
handle [rocblas_handle]
handle to the rocblas library context queue.
@param[in]
uplo [rocblas_fill]
rocblas_fill_upper: A is an upper triangular matrix.
rocblas_fill_lower: A is a lower triangular matrix.
@param[in]
transA [rocblas_operation]
@param[in]
diag [rocblas_diagonal]
rocblas_diagonal_unit: A is assumed to be unit triangular.
rocblas_diagonal_non_unit: A is not assumed to be unit triangular.
@param[in]
m [rocblas_int]
m specifies the number of rows of b. m >= 0.
@param[in]
A device array of device pointers storing each matrix A_i.
@param[in]
lda [rocblas_int]
specifies the leading dimension of each A_i.
lda = max(1, m)
@param[in]
x device array of device pointers storing each vector x_i.
@param[in]
incx [rocblas_int]
specifies the increment for the elements of x.
@param[in]
batch_count [rocblas_int]
number of instances in the batch
Member Function/Subroutine Documentation
◆ rocblas_ztrsv_batched_full_rank()
| integer(kind(rocblas_status_success)) function hipfort_rocblas::rocblas_ztrsv_batched::rocblas_ztrsv_batched_full_rank | ( | type(c_ptr), value | handle, |
| integer(kind(rocblas_fill_upper)), value | uplo, | ||
| integer(kind(rocblas_operation_none)), value | transA, | ||
| integer(kind(rocblas_diagonal_non_unit)), value | diag, | ||
| integer(c_int), value | m, | ||
| complex(c_double_complex), dimension(:,:,:), target | A, | ||
| integer(c_int), value | lda, | ||
| complex(c_double_complex), dimension(:,:), target | x, | ||
| integer(c_int), value | incx, | ||
| integer(c_int), value | batch_count | ||
| ) |
◆ rocblas_ztrsv_batched_orig()
| integer(kind(rocblas_status_success)) function hipfort_rocblas::rocblas_ztrsv_batched::rocblas_ztrsv_batched_orig | ( | type(c_ptr), value | handle, |
| integer(kind(rocblas_fill_upper)), value | uplo, | ||
| integer(kind(rocblas_operation_none)), value | transA, | ||
| integer(kind(rocblas_diagonal_non_unit)), value | diag, | ||
| integer(c_int), value | m, | ||
| type(c_ptr) | A, | ||
| integer(c_int), value | lda, | ||
| type(c_ptr) | x, | ||
| integer(c_int), value | incx, | ||
| integer(c_int), value | batch_count | ||
| ) |
◆ rocblas_ztrsv_batched_rank_0()
| integer(kind(rocblas_status_success)) function hipfort_rocblas::rocblas_ztrsv_batched::rocblas_ztrsv_batched_rank_0 | ( | type(c_ptr), value | handle, |
| integer(kind(rocblas_fill_upper)), value | uplo, | ||
| integer(kind(rocblas_operation_none)), value | transA, | ||
| integer(kind(rocblas_diagonal_non_unit)), value | diag, | ||
| integer(c_int), value | m, | ||
| complex(c_double_complex), target | A, | ||
| integer(c_int), value | lda, | ||
| complex(c_double_complex), target | x, | ||
| integer(c_int), value | incx, | ||
| integer(c_int), value | batch_count | ||
| ) |
◆ rocblas_ztrsv_batched_rank_1()
| integer(kind(rocblas_status_success)) function hipfort_rocblas::rocblas_ztrsv_batched::rocblas_ztrsv_batched_rank_1 | ( | type(c_ptr), value | handle, |
| integer(kind(rocblas_fill_upper)), value | uplo, | ||
| integer(kind(rocblas_operation_none)), value | transA, | ||
| integer(kind(rocblas_diagonal_non_unit)), value | diag, | ||
| integer(c_int), value | m, | ||
| complex(c_double_complex), dimension(:), target | A, | ||
| integer(c_int), value | lda, | ||
| complex(c_double_complex), dimension(:), target | x, | ||
| integer(c_int), value | incx, | ||
| integer(c_int), value | batch_count | ||
| ) |
The documentation for this interface was generated from the following file: