hipblasztrmv Interface Reference

hipblasztrmv Interface Reference#

HIPFORT API Reference: hipfort_hipblas::hipblasztrmv Interface Reference
hipfort_hipblas::hipblasztrmv Interface Reference

BLAS Level 2 API. More...

Public Member Functions

integer(kind(hipblas_status_success)) function hipblasztrmv_ (handle, uplo, transA, diag, m, A, lda, x, incx)
 
integer(kind(hipblas_status_success)) function hipblasztrmv_full_rank (handle, uplo, transA, diag, m, A, lda, x, incx)
 
integer(kind(hipblas_status_success)) function hipblasztrmv_rank_0 (handle, uplo, transA, diag, m, A, lda, x, incx)
 
integer(kind(hipblas_status_success)) function hipblasztrmv_rank_1 (handle, uplo, transA, diag, m, A, lda, x, incx)
 

Detailed Description

BLAS Level 2 API.

trmv performs one of the matrix-vector operations

 x = A*x or x = A**T*x,

where x is an n element vector and A is an n by n unit, or non-unit, upper or lower triangular matrix.

The vector x is overwritten.

Parameters
[in]handle[hipblasHandle_t] handle to the hipblas library context queue.
[in]uplo[hipblasFillMode_t] HIPBLAS_FILL_MODE_UPPER: A is an upper triangular matrix. HIPBLAS_FILL_MODE_LOWER: A is a lower triangular matrix.
[in]transA[hipblasOperation_t]
[in]diag[hipblasDiagType_t] HIPBLAS_DIAG_UNIT: A is assumed to be unit triangular. HIPBLAS_DIAG_NON_UNIT: A is not assumed to be unit triangular.
[in]m[int] m specifies the number of rows of A. m >= 0.
[in]Adevice pointer storing matrix A, of dimension ( lda, m )
[in]lda[int] specifies the leading dimension of A. lda = max( 1, m ).
[in]xdevice pointer storing vector x.
[in]incx[int] specifies the increment for the elements of x.

Member Function/Subroutine Documentation

◆ hipblasztrmv_()

integer(kind(hipblas_status_success)) function hipfort_hipblas::hipblasztrmv::hipblasztrmv_ ( 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  m,
type(c_ptr), value  A,
integer(c_int), value  lda,
type(c_ptr), value  x,
integer(c_int), value  incx 
)

◆ hipblasztrmv_full_rank()

integer(kind(hipblas_status_success)) function hipfort_hipblas::hipblasztrmv::hipblasztrmv_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)  m,
complex(c_double_complex), dimension(:,:), target  A,
integer(c_int)  lda,
complex(c_double_complex), dimension(:), target  x,
integer(c_int)  incx 
)

◆ hipblasztrmv_rank_0()

integer(kind(hipblas_status_success)) function hipfort_hipblas::hipblasztrmv::hipblasztrmv_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)  m,
complex(c_double_complex), target  A,
integer(c_int)  lda,
complex(c_double_complex), target  x,
integer(c_int)  incx 
)

◆ hipblasztrmv_rank_1()

integer(kind(hipblas_status_success)) function hipfort_hipblas::hipblasztrmv::hipblasztrmv_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)  m,
complex(c_double_complex), dimension(:), target  A,
integer(c_int)  lda,
complex(c_double_complex), dimension(:), target  x,
integer(c_int)  incx 
)

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