rocblas_sspr Interface Reference

rocblas_sspr Interface Reference#

HIPFORT API Reference: hipfort_rocblas::rocblas_sspr Interface Reference
hipfort_rocblas::rocblas_sspr Interface Reference

BLAS Level 2 API. More...

Public Member Functions

integer(kind(rocblas_status_success)) function rocblas_sspr_ (handle, uplo, n, alpha, x, incx, ap)
 
integer(kind(rocblas_status_success)) function rocblas_sspr_rank_0 (handle, uplo, n, alpha, x, incx, ap)
 
integer(kind(rocblas_status_success)) function rocblas_sspr_rank_1 (handle, uplo, n, alpha, x, incx, ap)
 

Detailed Description

BLAS Level 2 API.

The spr functions perform the matrix-vector operations:

A := A + alpha*x*x**T

where alpha is a scalar, x is a vector, and A is an n by n symmetric matrix, supplied in packed form.

Parameters
[in]handle- [rocblas_handle] handle to the rocBLAS library context queue.
[in]uplo- [rocblas_fill] specifies either upper (rocblas_fill_upper) or lower (rocblas_fill_lower).
  • rocblas_fill_upper: The upper triangular part of A is supplied in AP.
  • rocblas_fill_lower: The lower triangular part of A is supplied in AP.
[in]n- [rocblas_int] the number of rows and columns of matrix A. Must be at least 0.
[in]alphadevice pointer or host pointer to scalar alpha.
[in]x- device pointer storing vector x.
[in]incx- [rocblas_int] specifies the increment for the elements of x.
[in,out]AP- device pointer storing the packed version of the specified triangular portion of the symmetric matrix A. Of at least size ((n * (n + 1)) / 2).
  if uplo == rocblas_fill_upper:
      The upper triangular portion of the symmetric matrix A is supplied.
      The matrix is compacted so that AP contains the triangular portion
      column-by-column
      so that:
      AP(0) = A(0,0)
      AP(1) = A(0,1)
      AP(2) = A(1,1), etc.
          Ex: (rocblas_fill_upper; n = 4)
              1 2 4 7
              2 3 5 8   -----> [1, 2, 3, 4, 5, 6, 7, 8, 9, 0]
              4 5 6 9
              7 8 9 0

  if uplo == rocblas_fill_lower:
      The lower triangular portion of the symmetric matrix A is supplied.
      The matrix is compacted so that AP contains the triangular portion
      column-by-column
      so that:
      AP(0) = A(0,0)
      AP(1) = A(1,0)
      AP(2) = A(2,1), etc.
          Ex: (rocblas_fill_lower; n = 4)
              1 2 3 4
              2 5 6 7    -----> [1, 2, 3, 4, 5, 6, 7, 8, 9, 0]
              3 6 8 9
              4 7 9 0

Member Function/Subroutine Documentation

◆ rocblas_sspr_()

integer(kind(rocblas_status_success)) function hipfort_rocblas::rocblas_sspr::rocblas_sspr_ ( type(c_ptr), value  handle,
integer(kind(rocblas_fill_upper)), value  uplo,
integer(c_int), value  n,
real(c_float)  alpha,
type(c_ptr), value  x,
integer(c_int), value  incx,
type(c_ptr), value  ap 
)

◆ rocblas_sspr_rank_0()

integer(kind(rocblas_status_success)) function hipfort_rocblas::rocblas_sspr::rocblas_sspr_rank_0 ( type(c_ptr)  handle,
integer(kind(rocblas_fill_upper))  uplo,
integer(c_int)  n,
real(c_float)  alpha,
real(c_float), target  x,
integer(c_int)  incx,
real(c_float), target  ap 
)

◆ rocblas_sspr_rank_1()

integer(kind(rocblas_status_success)) function hipfort_rocblas::rocblas_sspr::rocblas_sspr_rank_1 ( type(c_ptr)  handle,
integer(kind(rocblas_fill_upper))  uplo,
integer(c_int)  n,
real(c_float)  alpha,
real(c_float), dimension(:), target  x,
integer(c_int)  incx,
real(c_float), dimension(:), target  ap 
)

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