ParaMonte Fortran 2.0.0
Parallel Monte Carlo and Machine Learning Library
See the latest version documentation. |
Return the Rank-K Update of a Complex Hermitian matrix.
More...
Public Member Functions | |
pure subroutine | zherk (uplo, trans, n, k, alpha, a, lda, beta, c, ldc) |
pure subroutine | cherk (uplo, trans, n, k, alpha, a, lda, beta, c, ldc) |
Return the Rank-K Update of a Complex Hermitian matrix.
\begin{equation} C = \alpha A A^H + \beta C, C = \alpha A^H A + \beta C, \end{equation}
This generic interface offers a compile-time resolution to the BLAS cherk
, zherk
matrix update routines.
See the documentation of reference BLAS library for the definition of the input arguments.
Final Remarks ⛓
If you believe this algorithm or its documentation can be improved, we appreciate your contribution and help to edit this page's documentation and source file on GitHub.
For details on the naming abbreviations, see this page.
For details on the naming conventions, see this page.
This software is distributed under the MIT license with additional terms outlined below.
This software is available to the public under a highly permissive license.
Help us justify its continued development and maintenance by acknowledging its benefit to society, distributing it, and contributing to it.
Definition at line 728 of file pm_blas.F90.
pure subroutine pm_blas::blasHERK::cherk | ( | character, intent(in) | uplo, |
character, intent(in) | trans, | ||
integer(IK), intent(in) | n, | ||
integer(IK), intent(in) | k, | ||
real(TKG), intent(in) | alpha, | ||
complex(TKG), intent(in) | a, | ||
integer(IK), intent(in) | lda, | ||
real(TKG), intent(in) | beta, | ||
complex(TKG), intent(inout) | c, | ||
integer(IK), intent(in) | ldc | ||
) |
Definition at line 738 of file pm_blas.F90.
References pm_kind::IK, and pm_kind::RKS.
pure subroutine pm_blas::blasHERK::zherk | ( | character, intent(in) | uplo, |
character, intent(in) | trans, | ||
integer(IK), intent(in) | n, | ||
integer(IK), intent(in) | k, | ||
real(TKG), intent(in) | alpha, | ||
complex(TKG), intent(in) | a, | ||
integer(IK), intent(in) | lda, | ||
real(TKG), intent(in) | beta, | ||
complex(TKG), intent(inout) | c, | ||
integer(IK), intent(in) | ldc | ||
) |
Definition at line 729 of file pm_blas.F90.
References pm_kind::IK, and pm_kind::RKD.