ParaMonte Fortran 2.0.0
Parallel Monte Carlo and Machine Learning Library
See the latest version documentation. |
computes an LU factorization of a general M-by-N matrix A using partial pivoting with row interchanges.
More...
Public Member Functions | |
pure subroutine | zgetrf (m, n, a, lda, ipiv, info) |
pure subroutine | cgetrf (m, n, a, lda, ipiv, info) |
pure subroutine | dgetrf (m, n, a, lda, ipiv, info) |
pure subroutine | sgetrf (m, n, a, lda, ipiv, info) |
computes an LU factorization of a general M-by-N matrix A using partial pivoting with row interchanges.
This generic interface offers a compile-time resolution to the LAPACK sgetrf
, dgetrf
, cgetrf
, zgetrf
, LAPACK routines.
See the documentation of reference LAPACK 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 60 of file pm_lapack.F90.
pure subroutine pm_lapack::lapackGETRF::cgetrf | ( | integer(IK), intent(in) | m, |
integer(IK), intent(in) | n, | ||
complex(TKG), intent(inout) | a, | ||
integer(IK), intent(in) | lda, | ||
integer(IK), dimension(*), intent(out) | ipiv, | ||
integer(IK), intent(out) | info | ||
) |
Definition at line 67 of file pm_lapack.F90.
References pm_kind::CKS, and pm_kind::IK.
pure subroutine pm_lapack::lapackGETRF::dgetrf | ( | integer(IK), intent(in) | m, |
integer(IK), intent(in) | n, | ||
real(TKG), intent(inout) | a, | ||
integer(IK), intent(in) | lda, | ||
integer(IK), dimension(*), intent(out) | ipiv, | ||
integer(IK), intent(out) | info | ||
) |
Definition at line 73 of file pm_lapack.F90.
References pm_kind::IK, and pm_kind::RKD.
pure subroutine pm_lapack::lapackGETRF::sgetrf | ( | integer(IK), intent(in) | m, |
integer(IK), intent(in) | n, | ||
real(TKG), intent(inout) | a, | ||
integer(IK), intent(in) | lda, | ||
integer(IK), dimension(*), intent(out) | ipiv, | ||
integer(IK), intent(out) | info | ||
) |
Definition at line 79 of file pm_lapack.F90.
References pm_kind::IK, and pm_kind::RKS.
pure subroutine pm_lapack::lapackGETRF::zgetrf | ( | integer(IK), intent(in) | m, |
integer(IK), intent(in) | n, | ||
complex(TKG), intent(inout) | a, | ||
integer(IK), intent(in) | lda, | ||
integer(IK), dimension(*), intent(out) | ipiv, | ||
integer(IK), intent(out) | info | ||
) |
Definition at line 61 of file pm_lapack.F90.
References pm_kind::CKD, and pm_kind::IK.