rocsolver_spotrs Interface Reference

rocsolver_spotrs Interface Reference#

HIPFORT API Reference: hipfort_rocsolver::rocsolver_spotrs Interface Reference
hipfort_rocsolver::rocsolver_spotrs Interface Reference

The POTRS functions solve a symmetric/Hermitian system of n linear equations on n variables in its factorized form. More...

Public Member Functions

integer(kind(rocblas_status_success)) function rocsolver_spotrs_ (handle, uplo, n, nrhs, a, lda, b, ldb)
 
integer(kind(rocblas_status_success)) function rocsolver_spotrs_rank_0 (handle, uplo, n, nrhs, a, lda, b, ldb)
 
integer(kind(rocblas_status_success)) function rocsolver_spotrs_rank_1 (handle, uplo, n, nrhs, a, lda, b, ldb)
 
integer(kind(rocblas_status_success)) function rocsolver_spotrs_full_rank (handle, uplo, n, nrhs, a, lda, b, ldb)
 

Detailed Description

The POTRS functions solve a symmetric/Hermitian system of n linear equations on n variables in its factorized form.

It solves the system

\[ A X = B \]

where A is a real symmetric (complex Hermitian) positive definite matrix defined by its triangular factor

\[ \begin{array}{cl} A = U^H U & \: \text{if uplo is upper, or}\\% A = L L^H & \: \text{if uplo is lower.} \end{array} \]

as returned by POTRF.

Parameters
[in]handle- rocblas_handle.
[in]uplo- rocblas_fill. Specifies whether the factorization is upper or lower triangular. If uplo indicates lower (or upper), then the upper (or lower) part of A is not used.
[in]n- rocblas_int. n >= 0. The order of the system, that is, the number of columns and rows of A.
[in]nrhs- rocblas_int. nrhs >= 0. The number of right hand sides, that is, the number of columns of the matrix B.
[in]A- pointer to type. Array on the GPU of dimension lda*n. The factor L or U of the Cholesky factorization of A returned by POTRF.
[in]lda- rocblas_int. lda >= n. The leading dimension of A.
[in,out]B- pointer to type. Array on the GPU of dimension ldb*nrhs. On entry, the right hand side matrix B. On exit, the solution matrix X.
[in]ldb- rocblas_int. ldb >= n. The leading dimension of B.

Member Function/Subroutine Documentation

◆ rocsolver_spotrs_()

integer(kind(rocblas_status_success)) function hipfort_rocsolver::rocsolver_spotrs::rocsolver_spotrs_ ( type(c_ptr), value  handle,
integer(kind(rocblas_fill_upper)), value  uplo,
integer(c_int), value  n,
integer(c_int), value  nrhs,
type(c_ptr), value  a,
integer(c_int), value  lda,
type(c_ptr), value  b,
integer(c_int), value  ldb 
)

◆ rocsolver_spotrs_full_rank()

integer(kind(rocblas_status_success)) function hipfort_rocsolver::rocsolver_spotrs::rocsolver_spotrs_full_rank ( type(c_ptr)  handle,
integer(kind(rocblas_fill_upper))  uplo,
integer(c_int)  n,
integer(c_int)  nrhs,
real(c_float), dimension(:,:), target  a,
integer(c_int)  lda,
real(c_float), dimension(:,:), target  b,
integer(c_int)  ldb 
)

◆ rocsolver_spotrs_rank_0()

integer(kind(rocblas_status_success)) function hipfort_rocsolver::rocsolver_spotrs::rocsolver_spotrs_rank_0 ( type(c_ptr)  handle,
integer(kind(rocblas_fill_upper))  uplo,
integer(c_int)  n,
integer(c_int)  nrhs,
real(c_float), target  a,
integer(c_int)  lda,
real(c_float), target  b,
integer(c_int)  ldb 
)

◆ rocsolver_spotrs_rank_1()

integer(kind(rocblas_status_success)) function hipfort_rocsolver::rocsolver_spotrs::rocsolver_spotrs_rank_1 ( type(c_ptr)  handle,
integer(kind(rocblas_fill_upper))  uplo,
integer(c_int)  n,
integer(c_int)  nrhs,
real(c_float), dimension(:), target  a,
integer(c_int)  lda,
real(c_float), dimension(:), target  b,
integer(c_int)  ldb 
)

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