rocsolver_ssyev_batched Interface Reference

rocsolver_ssyev_batched Interface Reference#

HIPFORT API Reference: hipfort_rocsolver::rocsolver_ssyev_batched Interface Reference
hipfort_rocsolver::rocsolver_ssyev_batched Interface Reference

The SYEV_BATCHED functions compute the eigenvalues and optionally the eigenvectors of a batch of real symmetric matrices A_l. More...

Public Member Functions

integer(kind(rocblas_status_success)) function rocsolver_ssyev_batched_ (handle, evect, uplo, n, a, lda, d, strided, e, stridee, myinfo, batch_count)
 
integer(kind(rocblas_status_success)) function rocsolver_ssyev_batched_rank_0 (handle, evect, uplo, n, a, lda, d, strided, e, stridee, myinfo, batch_count)
 
integer(kind(rocblas_status_success)) function rocsolver_ssyev_batched_rank_1 (handle, evect, uplo, n, a, lda, d, strided, e, stridee, myinfo, batch_count)
 

Detailed Description

The SYEV_BATCHED functions compute the eigenvalues and optionally the eigenvectors of a batch of real symmetric matrices A_l.

Note
The _64 interface accepts int64_t arguments, but the matrix dimensions n and lda must still fit within a 32-bit integer (less than 2^31). The internal tridiagonal reduction and back-transformation steps remain 32-bit, which bounds the supported size.

The eigenvalues are returned in ascending order. The eigenvectors are computed depending on the value of evect. The computed eigenvectors are orthonormal.

Parameters
[in]handle- rocblas_handle.
[in]evect- rocblas_evect. Specifies whether the eigenvectors are to be computed. If evect is rocblas_evect_original, then the eigenvectors are computed. rocblas_evect_tridiagonal is not supported.
[in]uplo- rocblas_fill. Specifies whether the upper or lower part of the symmetric matrices A_l is stored. If uplo indicates lower (or upper), then the upper (or lower) part of A_l is not used.
[in]n- rocblas_int. n >= 0. Number of rows and columns of matrices A_l.
[in,out]A- Array of pointers to type. Each pointer points to an array on the GPU of dimension lda*n. On entry, the matrices A_l. On exit, the eigenvectors of A_l if they were computed and the algorithm converged. Otherwise, the contents of A_l are destroyed.
[in]lda- rocblas_int. lda >= n. Specifies the leading dimension of matrices A_l.
[out]D- pointer to type. Array on the GPU (the size depends on the value of strideD). The eigenvalues of A_l in increasing order.
[in]strideD- rocblas_stride. Stride from the start of one vector D_l to the next one D_(l+1). There is no restriction for the value of strideD. The normal use case is strideD >= n.
[out]E- pointer to type. Array on the GPU (the size depends on the value of strideE). This array is used to work internally with the tridiagonal matrix T_l associated with A_l. On exit, if info[l] > 0, E_l contains the unconverged off-diagonal elements of T_l (or properly speaking, a tridiagonal matrix equivalent to T_l). The diagonal elements of this matrix are in D_l. Those that converged correspond to a subset of the eigenvalues of A_l (not necessarily ordered).
[in]strideE- rocblas_stride. Stride from the start of one vector E_l to the next one E_(l+1). There is no restriction for the value of strideE. The normal use case is strideE >= n.
[out]myInfo- pointer to rocblas_int. Array of batch_count integers on the GPU. If info[l] = 0, successful exit for matrix A_l. If info[l] = i > 0, the algorithm did not converge. i elements of E_l did not converge to zero.
[in]batch_count- rocblas_int. batch_count >= 0. Number of matrices in the batch.

Member Function/Subroutine Documentation

◆ rocsolver_ssyev_batched_()

integer(kind(rocblas_status_success)) function hipfort_rocsolver::rocsolver_ssyev_batched::rocsolver_ssyev_batched_ ( type(c_ptr), value  handle,
integer(kind(rocblas_evect_original)), value  evect,
integer(kind(rocblas_fill_upper)), value  uplo,
integer(c_int), value  n,
type(c_ptr), value  a,
integer(c_int), value  lda,
type(c_ptr), value  d,
integer(c_int64_t), value  strided,
type(c_ptr), value  e,
integer(c_int64_t), value  stridee,
type(c_ptr), value  myinfo,
integer(c_int), value  batch_count 
)

◆ rocsolver_ssyev_batched_rank_0()

integer(kind(rocblas_status_success)) function hipfort_rocsolver::rocsolver_ssyev_batched::rocsolver_ssyev_batched_rank_0 ( type(c_ptr)  handle,
integer(kind(rocblas_evect_original))  evect,
integer(kind(rocblas_fill_upper))  uplo,
integer(c_int)  n,
type(c_ptr)  a,
integer(c_int)  lda,
real(c_float), target  d,
integer(c_int64_t)  strided,
real(c_float), target  e,
integer(c_int64_t)  stridee,
type(c_ptr)  myinfo,
integer(c_int)  batch_count 
)

◆ rocsolver_ssyev_batched_rank_1()

integer(kind(rocblas_status_success)) function hipfort_rocsolver::rocsolver_ssyev_batched::rocsolver_ssyev_batched_rank_1 ( type(c_ptr)  handle,
integer(kind(rocblas_evect_original))  evect,
integer(kind(rocblas_fill_upper))  uplo,
integer(c_int)  n,
type(c_ptr)  a,
integer(c_int)  lda,
real(c_float), dimension(:), target  d,
integer(c_int64_t)  strided,
real(c_float), dimension(:), target  e,
integer(c_int64_t)  stridee,
type(c_ptr)  myinfo,
integer(c_int)  batch_count 
)

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