rocblas_ztrmv_strided_batched Interface Reference

rocblas_ztrmv_strided_batched Interface Reference#

HIPFORT API Reference: hipfort_rocblas::rocblas_ztrmv_strided_batched Interface Reference
hipfort_rocblas::rocblas_ztrmv_strided_batched Interface Reference

BLAS Level 2 API. More...

Public Member Functions

integer(kind(rocblas_status_success)) function rocblas_ztrmv_strided_batched_ (handle, uplo, transA, diag, m, A, lda, stridea, x, incx, stridex, batch_count)
 
integer(kind(rocblas_status_success)) function rocblas_ztrmv_strided_batched_full_rank (handle, uplo, transA, diag, m, A, lda, stridea, x, incx, stridex, batch_count)
 
integer(kind(rocblas_status_success)) function rocblas_ztrmv_strided_batched_rank_0 (handle, uplo, transA, diag, m, A, lda, stridea, x, incx, stridex, batch_count)
 
integer(kind(rocblas_status_success)) function rocblas_ztrmv_strided_batched_rank_1 (handle, uplo, transA, diag, m, A, lda, stridea, x, incx, stridex, batch_count)
 

Detailed Description

BLAS Level 2 API.

trmv_strided_batched performs one of the matrix-vector operations

 x_i = A_i*x_i or x_i = A**T*x_i, 0 \le i < batch_count

where x_i is an n element vector and A_i is an n by n (unit, or non-unit, upper or lower triangular matrix) with strides specifying how to retrieve $x_i$ (resp. $A_i$) from $x_{i-1}$ (resp. $A_i$).

The vectors x_i are overwritten.

Parameters
[in]handle[rocblas_handle] handle to the rocblas library context queue.
[in]uplo[rocblas_fill] rocblas_fill_upper: A_i is an upper triangular matrix. rocblas_fill_lower: A_i is a lower triangular matrix.
[in]transA[rocblas_operation]
[in]diag[rocblas_diagonal] rocblas_diagonal_unit: A_i is assumed to be unit triangular. rocblas_diagonal_non_unit: A_i is not assumed to be unit triangular.
[in]m[rocblas_int] m specifies the number of rows of matrices A_i. m >= 0.
[in]Adevice pointer of the matrix A_0, of dimension ( lda, m )
[in]lda[rocblas_int] specifies the leading dimension of A_i. lda >= max( 1, m ).
[in]stride_a[rocblas_stride] stride from the start of one A_i matrix to the next A_{i + 1}
[in]xdevice pointer storing the vector x_0.
[in]incx[rocblas_int] specifies the increment for the elements of one vector x.
[in]stride_x[rocblas_stride] stride from the start of one x_i vector to the next x_{i + 1}
[in]batch_count[rocblas_int] The number of batched matrices/vectors.

Member Function/Subroutine Documentation

◆ rocblas_ztrmv_strided_batched_()

integer(kind(rocblas_status_success)) function hipfort_rocblas::rocblas_ztrmv_strided_batched::rocblas_ztrmv_strided_batched_ ( 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), value  A,
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  batch_count 
)

◆ rocblas_ztrmv_strided_batched_full_rank()

integer(kind(rocblas_status_success)) function hipfort_rocblas::rocblas_ztrmv_strided_batched::rocblas_ztrmv_strided_batched_full_rank ( type(c_ptr)  handle,
integer(kind(rocblas_fill_upper))  uplo,
integer(kind(rocblas_operation_none))  transA,
integer(kind(rocblas_diagonal_non_unit))  diag,
integer(c_int)  m,
complex(c_double_complex), dimension(:,:), target  A,
integer(c_int)  lda,
integer(c_int64_t)  stridea,
complex(c_double_complex), dimension(:), target  x,
integer(c_int)  incx,
integer(c_int64_t)  stridex,
integer(c_int)  batch_count 
)

◆ rocblas_ztrmv_strided_batched_rank_0()

integer(kind(rocblas_status_success)) function hipfort_rocblas::rocblas_ztrmv_strided_batched::rocblas_ztrmv_strided_batched_rank_0 ( type(c_ptr)  handle,
integer(kind(rocblas_fill_upper))  uplo,
integer(kind(rocblas_operation_none))  transA,
integer(kind(rocblas_diagonal_non_unit))  diag,
integer(c_int)  m,
complex(c_double_complex), target  A,
integer(c_int)  lda,
integer(c_int64_t)  stridea,
complex(c_double_complex), target  x,
integer(c_int)  incx,
integer(c_int64_t)  stridex,
integer(c_int)  batch_count 
)

◆ rocblas_ztrmv_strided_batched_rank_1()

integer(kind(rocblas_status_success)) function hipfort_rocblas::rocblas_ztrmv_strided_batched::rocblas_ztrmv_strided_batched_rank_1 ( type(c_ptr)  handle,
integer(kind(rocblas_fill_upper))  uplo,
integer(kind(rocblas_operation_none))  transA,
integer(kind(rocblas_diagonal_non_unit))  diag,
integer(c_int)  m,
complex(c_double_complex), dimension(:), target  A,
integer(c_int)  lda,
integer(c_int64_t)  stridea,
complex(c_double_complex), dimension(:), target  x,
integer(c_int)  incx,
integer(c_int64_t)  stridex,
integer(c_int)  batch_count 
)

The documentation for this interface was generated from the following file: