rocsolver_sgeqrf Interface Reference

rocsolver_sgeqrf Interface Reference#

HIPFORT API Reference: hipfort_rocsolver::rocsolver_sgeqrf Interface Reference
hipfort_rocsolver::rocsolver_sgeqrf Interface Reference

! More...

Public Member Functions

integer(kind(rocblas_status_success)) function rocsolver_sgeqrf_full_rank (handle, m, n, A, lda, ipiv)
 
integer(kind(rocblas_status_success)) function rocsolver_sgeqrf_orig (handle, m, n, A, lda, ipiv)
 
integer(kind(rocblas_status_success)) function rocsolver_sgeqrf_rank_0 (handle, m, n, A, lda, ipiv)
 
integer(kind(rocblas_status_success)) function rocsolver_sgeqrf_rank_1 (handle, m, n, A, lda, ipiv)
 

Detailed Description

!

GEQRF computes a QR factorization of a general m-by-n matrix A.

(This is the blocked version of the algorithm).

The factorization has the form

A =  Q  [ R ]
         [ 0 ]

where R is upper triangular (upper trapezoidal if m < n), and Q is a m-by-m orthogonalunitary matrix represented as the product of Householder matrices

Q = H(1)  H(2)  ...  H(k), with k = min(m,n)

Each Householder matrix H(i), for i = 1,2,...,k, is given by

H(i) = I - ipiv[i-1]  v(i)  v(i)'

where the first i-1 elements of the Householder vector v(i) are zero, and v(i)[i] = 1.

Parameters
[in]handlerocblas_handle.
[in]mrocblas_int. m >= 0.
The number of rows of the matrix A.
[in]nrocblas_int. n >= 0.
The number of columns of the matrix A.
[in,out]Apointer to type. Array on the GPU of dimension ldan.
On entry, the m-by-n matrix to be factored. On exit, the elements on and above the diagonal contain the factor R; the elements below the diagonal are the m - i elements of vector v(i) for i = 1,2,...,min(m,n).
[in]ldarocblas_int. lda >= m.
Specifies the leading dimension of A.
[out]ipivpointer to type. Array on the GPU of dimension min(m,n).
The scalar factors of the Householder matrices H(i).

Member Function/Subroutine Documentation

◆ rocsolver_sgeqrf_full_rank()

integer(kind(rocblas_status_success)) function hipfort_rocsolver::rocsolver_sgeqrf::rocsolver_sgeqrf_full_rank ( type(c_ptr), value  handle,
integer(c_int), value  m,
integer(c_int), value  n,
real(c_float), dimension(:,:), target  A,
integer(c_int), value  lda,
real(c_float), dimension(:), target  ipiv 
)

◆ rocsolver_sgeqrf_orig()

integer(kind(rocblas_status_success)) function hipfort_rocsolver::rocsolver_sgeqrf::rocsolver_sgeqrf_orig ( type(c_ptr), value  handle,
integer(c_int), value  m,
integer(c_int), value  n,
type(c_ptr), value  A,
integer(c_int), value  lda,
type(c_ptr), value  ipiv 
)

◆ rocsolver_sgeqrf_rank_0()

integer(kind(rocblas_status_success)) function hipfort_rocsolver::rocsolver_sgeqrf::rocsolver_sgeqrf_rank_0 ( type(c_ptr), value  handle,
integer(c_int), value  m,
integer(c_int), value  n,
real(c_float), target  A,
integer(c_int), value  lda,
real(c_float), target  ipiv 
)

◆ rocsolver_sgeqrf_rank_1()

integer(kind(rocblas_status_success)) function hipfort_rocsolver::rocsolver_sgeqrf::rocsolver_sgeqrf_rank_1 ( type(c_ptr), value  handle,
integer(c_int), value  m,
integer(c_int), value  n,
real(c_float), dimension(:), target  A,
integer(c_int), value  lda,
real(c_float), dimension(:), target  ipiv 
)

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