ParaMonte Fortran 2.0.0
Parallel Monte Carlo and Machine Learning Library
See the latest version documentation. |
Return the result of the multiplication of two input General matrices matA
and matB
added to a third General matrix matC
.
More...
Public Member Functions | |
pure subroutine | zgemm (transa, transb, l, m, n, alpha, a, lda, b, ldb, beta, c, ldc) |
pure subroutine | cgemm (transa, transb, l, m, n, alpha, a, lda, b, ldb, beta, c, ldc) |
pure subroutine | dgemm (transa, transb, l, m, n, alpha, a, lda, b, ldb, beta, c, ldc) |
pure subroutine | sgemm (transa, transb, l, m, n, alpha, a, lda, b, ldb, beta, c, ldc) |
Return the result of the multiplication of two input General matrices matA
and matB
added to a third General matrix matC
.
This generic interface offers a compile-time resolution to the BLAS sgemm
, dgemm
, cgemm
, zgemm
General matrix multiplication 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 396 of file pm_blas.F90.
pure subroutine pm_blas::blasGEMM::cgemm | ( | character, intent(in) | transa, |
character, intent(in) | transb, | ||
integer(IK), intent(in) | l, | ||
integer(IK), intent(in) | m, | ||
integer(IK), intent(in) | n, | ||
complex(TKG), intent(in) | alpha, | ||
complex(TKG), intent(in) | a, | ||
integer(IK), intent(in) | lda, | ||
complex(TKG), intent(in) | b, | ||
integer(IK), intent(in) | ldb, | ||
complex(TKG), intent(in) | beta, | ||
complex(TKG), intent(inout) | c, | ||
integer(IK), intent(in) | ldc | ||
) |
Definition at line 405 of file pm_blas.F90.
References pm_kind::IK, and pm_kind::RKS.
pure subroutine pm_blas::blasGEMM::dgemm | ( | character, intent(in) | transa, |
character, intent(in) | transb, | ||
integer(IK), intent(in) | l, | ||
integer(IK), intent(in) | m, | ||
integer(IK), intent(in) | n, | ||
real(TKG), intent(in) | alpha, | ||
real(TKG), intent(in) | a, | ||
integer(IK), intent(in) | lda, | ||
real(TKG), intent(in) | b, | ||
integer(IK), intent(in) | ldb, | ||
real(TKG), intent(in) | beta, | ||
real(TKG), intent(inout) | c, | ||
integer(IK), intent(in) | ldc | ||
) |
Definition at line 413 of file pm_blas.F90.
References pm_kind::IK, and pm_kind::RKD.
pure subroutine pm_blas::blasGEMM::sgemm | ( | character, intent(in) | transa, |
character, intent(in) | transb, | ||
integer(IK), intent(in) | l, | ||
integer(IK), intent(in) | m, | ||
integer(IK), intent(in) | n, | ||
real(TKG), intent(in) | alpha, | ||
real(TKG), intent(in) | a, | ||
integer(IK), intent(in) | lda, | ||
real(TKG), intent(in) | b, | ||
integer(IK), intent(in) | ldb, | ||
real(TKG), intent(in) | beta, | ||
real(TKG), intent(inout) | c, | ||
integer(IK), intent(in) | ldc | ||
) |
Definition at line 421 of file pm_blas.F90.
References pm_kind::IK, and pm_kind::RKS.
pure subroutine pm_blas::blasGEMM::zgemm | ( | character, intent(in) | transa, |
character, intent(in) | transb, | ||
integer(IK), intent(in) | l, | ||
integer(IK), intent(in) | m, | ||
integer(IK), intent(in) | n, | ||
complex(TKG), intent(in) | alpha, | ||
complex(TKG), intent(in) | a, | ||
integer(IK), intent(in) | lda, | ||
complex(TKG), intent(in) | b, | ||
integer(IK), intent(in) | ldb, | ||
complex(TKG), intent(in) | beta, | ||
complex(TKG), intent(inout) | c, | ||
integer(IK), intent(in) | ldc | ||
) |
Definition at line 397 of file pm_blas.F90.
References pm_kind::IK, and pm_kind::RKD.