hipblasstbsvstridedbatched Interface Reference#
hipfort_hipblas::hipblasstbsvstridedbatched Interface Reference
BLAS Level 2 API. More...
Public Member Functions | |
| integer(kind(hipblas_status_success)) function | hipblasstbsvstridedbatched_ (handle, uplo, transa, diag, n, k, ap, lda, stridea, x, incx, stridex, batchcount) |
| integer(kind(hipblas_status_success)) function | hipblasstbsvstridedbatched_rank_0 (handle, uplo, transa, diag, n, k, ap, lda, stridea, x, incx, stridex, batchcount) |
| integer(kind(hipblas_status_success)) function | hipblasstbsvstridedbatched_rank_1 (handle, uplo, transa, diag, n, k, ap, lda, stridea, x, incx, stridex, batchcount) |
| integer(kind(hipblas_status_success)) function | hipblasstbsvstridedbatched_full_rank (handle, uplo, transa, diag, n, k, ap, lda, stridea, x, incx, stridex, batchcount) |
Detailed Description
BLAS Level 2 API.
The tbsvStridedBatched functions solve:
A_i*x_i = b_i or A_i**T*x_i = b_i or A_i**H*x_i = b_i,
where x_i and b_i are vectors and A_i is a banded triangular matrix, for i = [1, batchCount].
The input vectors b_i are overwritten by the output vectors x_i.
- Supported precisions in rocBLAS :
s,d,c, andz. - Supported precisions in cuBLAS : No support.
- Parameters
-
[in] handle - [hipblasHandle_t] handle to the hipBLAS library context queue. [in] uplo - [hipblasFillMode_t] - HIPBLAS_FILL_MODE_UPPER: A_i is an upper triangular matrix.
- HIPBLAS_FILL_MODE_LOWER: A_i is a lower triangular matrix.
[in] transA - [hipblasOperation_t] - HIPBLAS_OP_N: Solves A_i*x_i = b_i
- HIPBLAS_OP_T: Solves A_i**T*x_i = b_i
- HIPBLAS_OP_C: Solves A_i**H*x_i = b_i
[in] diag - [hipblasDiagType_t] - HIPBLAS_DIAG_UNIT: each A_i is assumed to be unit triangular (that is, the diagonal elements of each A_i are not used in computations).
- HIPBLAS_DIAG_NON_UNIT: each A_i is not assumed to be unit triangular.
[in] n - [int] n specifies the number of rows of each b_i. n >= 0. [in] k - [int] - if(uplo == HIPBLAS_FILL_MODE_UPPER), k specifies the number of super-diagonals of each A_i.
- if(uplo == HIPBLAS_FILL_MODE_LOWER), k specifies the number of sub-diagonals of each A_i.
- k >= 0.
[in] AP - device pointer pointing to the first banded matrix A_1. [in] lda - [int] specifies the leading dimension of each A_i. lda >= (k + 1). [in] strideA - [hipblasStride] specifies the distance between the start of one matrix (A_i) and the next (A_i+1). [in,out] x - device pointer pointing to the first input vector b_1. Overwritten by output vectors x. [in] incx - [int] specifies the increment for the elements of each x_i. [in] stridex - [hipblasStride] specifies the distance between the start of one vector (x_i) and the next (x_i+1). [in] batchCount - [int] number of instances in the batch.
Member Function/Subroutine Documentation
◆ hipblasstbsvstridedbatched_()
| integer(kind(hipblas_status_success)) function hipfort_hipblas::hipblasstbsvstridedbatched::hipblasstbsvstridedbatched_ | ( | type(c_ptr), value | handle, |
| integer(kind(hipblas_fill_mode_upper)), value | uplo, | ||
| integer(kind(hipblas_op_n)), value | transa, | ||
| integer(kind(hipblas_diag_non_unit)), value | diag, | ||
| integer(c_int), value | n, | ||
| integer(c_int), value | k, | ||
| type(c_ptr), value | ap, | ||
| integer(c_int), value | lda, | ||
| integer(c_int64_t), value | stridea, | ||
| type(c_ptr), value | x, | ||
| integer(c_int), value | incx, | ||
| integer(c_int64_t), value | stridex, | ||
| integer(c_int), value | batchcount | ||
| ) |
◆ hipblasstbsvstridedbatched_full_rank()
| integer(kind(hipblas_status_success)) function hipfort_hipblas::hipblasstbsvstridedbatched::hipblasstbsvstridedbatched_full_rank | ( | type(c_ptr) | handle, |
| integer(kind(hipblas_fill_mode_upper)) | uplo, | ||
| integer(kind(hipblas_op_n)) | transa, | ||
| integer(kind(hipblas_diag_non_unit)) | diag, | ||
| integer(c_int) | n, | ||
| integer(c_int) | k, | ||
| real(c_float), dimension(:,:), target | ap, | ||
| integer(c_int) | lda, | ||
| integer(c_int64_t) | stridea, | ||
| real(c_float), dimension(:), target | x, | ||
| integer(c_int) | incx, | ||
| integer(c_int64_t) | stridex, | ||
| integer(c_int) | batchcount | ||
| ) |
◆ hipblasstbsvstridedbatched_rank_0()
| integer(kind(hipblas_status_success)) function hipfort_hipblas::hipblasstbsvstridedbatched::hipblasstbsvstridedbatched_rank_0 | ( | type(c_ptr) | handle, |
| integer(kind(hipblas_fill_mode_upper)) | uplo, | ||
| integer(kind(hipblas_op_n)) | transa, | ||
| integer(kind(hipblas_diag_non_unit)) | diag, | ||
| integer(c_int) | n, | ||
| integer(c_int) | k, | ||
| real(c_float), target | ap, | ||
| integer(c_int) | lda, | ||
| integer(c_int64_t) | stridea, | ||
| real(c_float), target | x, | ||
| integer(c_int) | incx, | ||
| integer(c_int64_t) | stridex, | ||
| integer(c_int) | batchcount | ||
| ) |
◆ hipblasstbsvstridedbatched_rank_1()
| integer(kind(hipblas_status_success)) function hipfort_hipblas::hipblasstbsvstridedbatched::hipblasstbsvstridedbatched_rank_1 | ( | type(c_ptr) | handle, |
| integer(kind(hipblas_fill_mode_upper)) | uplo, | ||
| integer(kind(hipblas_op_n)) | transa, | ||
| integer(kind(hipblas_diag_non_unit)) | diag, | ||
| integer(c_int) | n, | ||
| integer(c_int) | k, | ||
| real(c_float), dimension(:), target | ap, | ||
| integer(c_int) | lda, | ||
| integer(c_int64_t) | stridea, | ||
| real(c_float), dimension(:), target | x, | ||
| integer(c_int) | incx, | ||
| integer(c_int64_t) | stridex, | ||
| integer(c_int) | batchcount | ||
| ) |
The documentation for this interface was generated from the following file: