rocsolver_sgesv Interface Reference

rocsolver_sgesv Interface Reference#

HIPFORT API Reference: hipfort_rocsolver::rocsolver_sgesv Interface Reference
hipfort_rocsolver::rocsolver_sgesv Interface Reference

GESV solves a general system of n linear equations on n variables. More...

Public Member Functions

integer(kind(rocblas_status_success)) function rocsolver_sgesv_ (handle, n, nrhs, A, lda, ipiv, B, ldb, myInfo)
 
integer(kind(rocblas_status_success)) function rocsolver_sgesv_full_rank (handle, n, nrhs, A, lda, ipiv, B, ldb, myInfo)
 
integer(kind(rocblas_status_success)) function rocsolver_sgesv_rank_0 (handle, n, nrhs, A, lda, ipiv, B, ldb, myInfo)
 
integer(kind(rocblas_status_success)) function rocsolver_sgesv_rank_1 (handle, n, nrhs, A, lda, ipiv, B, ldb, myInfo)
 

Detailed Description

GESV solves a general system of n linear equations on n variables.

The linear system is of the form

\[ A X = B \]

where A is a general n-by-n matrix. Matrix A is first factorized in triangular factors L and U using GETRF; then, the solution is computed with GETRS.

Parameters
[in]handlerocblas_handle.
[in]nrocblas_int. n >= 0.
The order of the system, i.e. the number of columns and rows of A.
[in]nrhsrocblas_int. nrhs >= 0.
The number of right hand sides, i.e., the number of columns of the matrix B.
[in]Apointer to type. Array on the GPU of dimension lda*n.
On entry, the matrix A. On exit, if info = 0, the factors L and U of the LU decomposition of A returned by GETRF.
[in]ldarocblas_int. lda >= n.
The leading dimension of A.
[out]ipivpointer to rocblas_int. Array on the GPU of dimension n.
The pivot indices returned by GETRF.
[in,out]Bpointer 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]ldbrocblas_int. ldb >= n.
The leading dimension of B.
[out]infopointer to a rocblas_int on the GPU.
If info = 0, successful exit. If info = i > 0, U is singular, and the solution could not be computed. U[i,i] is the first zero element in the diagonal.

Member Function/Subroutine Documentation

◆ rocsolver_sgesv_()

integer(kind(rocblas_status_success)) function hipfort_rocsolver::rocsolver_sgesv::rocsolver_sgesv_ ( type(c_ptr), value  handle,
integer(c_int), value  n,
integer(c_int), value  nrhs,
type(c_ptr), value  A,
integer(c_int), value  lda,
type(c_ptr), value  ipiv,
type(c_ptr), value  B,
integer(c_int), value  ldb,
integer(c_int)  myInfo 
)

◆ rocsolver_sgesv_full_rank()

integer(kind(rocblas_status_success)) function hipfort_rocsolver::rocsolver_sgesv::rocsolver_sgesv_full_rank ( type(c_ptr)  handle,
integer(c_int)  n,
integer(c_int)  nrhs,
real(c_float), dimension(:,:), target  A,
integer(c_int)  lda,
integer(c_int), dimension(:), target  ipiv,
real(c_float), dimension(:,:), target  B,
integer(c_int)  ldb,
integer(c_int)  myInfo 
)

◆ rocsolver_sgesv_rank_0()

integer(kind(rocblas_status_success)) function hipfort_rocsolver::rocsolver_sgesv::rocsolver_sgesv_rank_0 ( type(c_ptr)  handle,
integer(c_int)  n,
integer(c_int)  nrhs,
real(c_float), target  A,
integer(c_int)  lda,
integer(c_int), target  ipiv,
real(c_float), target  B,
integer(c_int)  ldb,
integer(c_int)  myInfo 
)

◆ rocsolver_sgesv_rank_1()

integer(kind(rocblas_status_success)) function hipfort_rocsolver::rocsolver_sgesv::rocsolver_sgesv_rank_1 ( type(c_ptr)  handle,
integer(c_int)  n,
integer(c_int)  nrhs,
real(c_float), dimension(:), target  A,
integer(c_int)  lda,
integer(c_int), dimension(:), target  ipiv,
real(c_float), dimension(:), target  B,
integer(c_int)  ldb,
integer(c_int)  myInfo 
)

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