rocblas_ztrtri_batched Interface Reference#
hipfort_rocblas::rocblas_ztrtri_batched Interface Reference
! More...
Public Member Functions | |
| integer(kind(rocblas_status_success)) function | rocblas_ztrtri_batched_orig (handle, uplo, diag, n, A, lda, invA, ldinvA, batch_count) |
| integer(kind(rocblas_status_success)) function | rocblas_ztrtri_batched_full_rank (handle, uplo, diag, n, A, lda, invA, ldinvA, batch_count) |
| integer(kind(rocblas_status_success)) function | rocblas_ztrtri_batched_rank_0 (handle, uplo, diag, n, A, lda, invA, ldinvA, batch_count) |
| integer(kind(rocblas_status_success)) function | rocblas_ztrtri_batched_rank_1 (handle, uplo, diag, n, A, lda, invA, ldinvA, batch_count) |
Detailed Description
!
BLAS Level 3 API
\details
trtri_batched compute the inverse of A_i and write into invA_i where
A_i and invA_i are the i-th matrices in the batch,
for i = 1, ..., batch_count.
@param[in]
handle [rocblas_handle]
handle to the rocblas library context queue.
@param[in]
uplo [rocblas_fill]
specifies whether the upper 'rocblas_fill_upper' or lower 'rocblas_fill_lower'
@param[in]
diag [rocblas_diagonal]
= 'rocblas_diagonal_non_unit', A is non-unit triangular;
= 'rocblas_diagonal_unit', A is unit triangular;
@param[in]
n [rocblas_int]
@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.
@param[out]
invA device array of device pointers storing the inverse of each matrix A_i.
Partial inplace operation is supported, see below.
If UPLO = 'U', the leading N-by-N upper triangular part of the invA will store
the inverse of the upper triangular matrix, and the strictly lower
triangular part of invA is cleared.
If UPLO = 'L', the leading N-by-N lower triangular part of the invA will store
the inverse of the lower triangular matrix, and the strictly upper
triangular part of invA is cleared.
@param[in]
ldinvA [rocblas_int]
specifies the leading dimension of each invA_i.
@param[in]
batch_count [rocblas_int]
numbers of matrices in the batch
Member Function/Subroutine Documentation
◆ rocblas_ztrtri_batched_full_rank()
| integer(kind(rocblas_status_success)) function hipfort_rocblas::rocblas_ztrtri_batched::rocblas_ztrtri_batched_full_rank | ( | type(c_ptr), value | handle, |
| integer(kind(rocblas_fill_upper)), value | uplo, | ||
| integer(kind(rocblas_diagonal_non_unit)), value | diag, | ||
| integer(c_int), value | n, | ||
| complex(c_double_complex), dimension(:,:,:), target | A, | ||
| integer(c_int), value | lda, | ||
| complex(c_double_complex), dimension(:,:,:), target | invA, | ||
| integer(c_int), value | ldinvA, | ||
| integer(c_int), value | batch_count | ||
| ) |
◆ rocblas_ztrtri_batched_orig()
| integer(kind(rocblas_status_success)) function hipfort_rocblas::rocblas_ztrtri_batched::rocblas_ztrtri_batched_orig | ( | type(c_ptr), value | handle, |
| integer(kind(rocblas_fill_upper)), value | uplo, | ||
| integer(kind(rocblas_diagonal_non_unit)), value | diag, | ||
| integer(c_int), value | n, | ||
| type(c_ptr) | A, | ||
| integer(c_int), value | lda, | ||
| type(c_ptr) | invA, | ||
| integer(c_int), value | ldinvA, | ||
| integer(c_int), value | batch_count | ||
| ) |
◆ rocblas_ztrtri_batched_rank_0()
| integer(kind(rocblas_status_success)) function hipfort_rocblas::rocblas_ztrtri_batched::rocblas_ztrtri_batched_rank_0 | ( | type(c_ptr), value | handle, |
| integer(kind(rocblas_fill_upper)), value | uplo, | ||
| integer(kind(rocblas_diagonal_non_unit)), value | diag, | ||
| integer(c_int), value | n, | ||
| complex(c_double_complex), target | A, | ||
| integer(c_int), value | lda, | ||
| complex(c_double_complex), target | invA, | ||
| integer(c_int), value | ldinvA, | ||
| integer(c_int), value | batch_count | ||
| ) |
◆ rocblas_ztrtri_batched_rank_1()
| integer(kind(rocblas_status_success)) function hipfort_rocblas::rocblas_ztrtri_batched::rocblas_ztrtri_batched_rank_1 | ( | type(c_ptr), value | handle, |
| integer(kind(rocblas_fill_upper)), value | uplo, | ||
| integer(kind(rocblas_diagonal_non_unit)), value | diag, | ||
| integer(c_int), value | n, | ||
| complex(c_double_complex), dimension(:), target | A, | ||
| integer(c_int), value | lda, | ||
| complex(c_double_complex), dimension(:), target | invA, | ||
| integer(c_int), value | ldinvA, | ||
| integer(c_int), value | batch_count | ||
| ) |
The documentation for this interface was generated from the following file: