hipblaszdgmm Interface Reference#
hipfort_hipblas::hipblaszdgmm Interface Reference
BLAS Level 3 API. More...
Public Member Functions | |
integer(kind(hipblas_status_success)) function | hipblaszdgmm_ (handle, side, m, n, A, lda, x, incx, C, ldc) |
integer(kind(hipblas_status_success)) function | hipblaszdgmm_full_rank (handle, side, m, n, A, lda, x, incx, C, ldc) |
integer(kind(hipblas_status_success)) function | hipblaszdgmm_rank_0 (handle, side, m, n, A, lda, x, incx, C, ldc) |
integer(kind(hipblas_status_success)) function | hipblaszdgmm_rank_1 (handle, side, m, n, A, lda, x, incx, C, ldc) |
Detailed Description
BLAS Level 3 API.
dgmm performs one of the matrix-matrix operations
C = A * diag(x) if side == HIPBLAS_SIDE_RIGHT C = diag(x) * A if side == HIPBLAS_SIDE_LEFT
where C and A are m by n dimensional matrices. diag( x ) is a diagonal matrix and x is vector of dimension n if side == HIPBLAS_SIDE_RIGHT and dimension m if side == HIPBLAS_SIDE_LEFT.
@param[in] handle [hipblasHandle_t] handle to the hipblas library context queue. @param[in] side [hipblasSideMode_t] specifies the side of diag(x) @param[in] m [int] matrix dimension m. @param[in] n [int] matrix dimension n. @param[in] A device pointer storing matrix A. @param[in] lda [int] specifies the leading dimension of A. @param[in] x device pointer storing vector x. @param[in] incx [int] specifies the increment between values of x @param[in, out] C device pointer storing matrix C. @param[in] ldc [int] specifies the leading dimension of C.
Member Function/Subroutine Documentation
◆ hipblaszdgmm_()
integer(kind(hipblas_status_success)) function hipfort_hipblas::hipblaszdgmm::hipblaszdgmm_ | ( | type(c_ptr), value | handle, |
integer(kind(hipblas_side_left)), value | side, | ||
integer(c_int), value | m, | ||
integer(c_int), value | n, | ||
type(c_ptr), value | A, | ||
integer(c_int), value | lda, | ||
type(c_ptr), value | x, | ||
integer(c_int), value | incx, | ||
type(c_ptr), value | C, | ||
integer(c_int), value | ldc | ||
) |
◆ hipblaszdgmm_full_rank()
integer(kind(hipblas_status_success)) function hipfort_hipblas::hipblaszdgmm::hipblaszdgmm_full_rank | ( | type(c_ptr) | handle, |
integer(kind(hipblas_side_left)) | side, | ||
integer(c_int) | m, | ||
integer(c_int) | n, | ||
complex(c_double_complex), dimension(:,:), target | A, | ||
integer(c_int) | lda, | ||
complex(c_double_complex), dimension(:), target | x, | ||
integer(c_int) | incx, | ||
complex(c_double_complex), dimension(:,:), target | C, | ||
integer(c_int) | ldc | ||
) |
◆ hipblaszdgmm_rank_0()
integer(kind(hipblas_status_success)) function hipfort_hipblas::hipblaszdgmm::hipblaszdgmm_rank_0 | ( | type(c_ptr) | handle, |
integer(kind(hipblas_side_left)) | side, | ||
integer(c_int) | m, | ||
integer(c_int) | n, | ||
complex(c_double_complex), target | A, | ||
integer(c_int) | lda, | ||
complex(c_double_complex), target | x, | ||
integer(c_int) | incx, | ||
complex(c_double_complex), target | C, | ||
integer(c_int) | ldc | ||
) |
◆ hipblaszdgmm_rank_1()
integer(kind(hipblas_status_success)) function hipfort_hipblas::hipblaszdgmm::hipblaszdgmm_rank_1 | ( | type(c_ptr) | handle, |
integer(kind(hipblas_side_left)) | side, | ||
integer(c_int) | m, | ||
integer(c_int) | n, | ||
complex(c_double_complex), dimension(:), target | A, | ||
integer(c_int) | lda, | ||
complex(c_double_complex), dimension(:), target | x, | ||
integer(c_int) | incx, | ||
complex(c_double_complex), dimension(:), target | C, | ||
integer(c_int) | ldc | ||
) |
The documentation for this interface was generated from the following file: