Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=psb_dpk_), | intent(inout) | :: | a(2,2) | |||
integer, | intent(out) | :: | ipiv(2) | |||
integer, | intent(out) | :: | info |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=psb_dpk_), | intent(inout) | :: | a(3,3) | |||
integer, | intent(out) | :: | ipiv(3) | |||
integer, | intent(out) | :: | info |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=psb_dpk_), | intent(inout) | :: | a(4,4) | |||
integer, | intent(out) | :: | ipiv(4) | |||
integer, | intent(out) | :: | info |
Description: Adapted from LAPACK and unrolled for small sizes.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer, | intent(in) | :: | n | |||
real(kind=psb_dpk_), | intent(inout) | :: | a(n,n) | |||
integer, | intent(out) | :: | ipiv(n) | |||
integer, | intent(out) | :: | info |
Solve a system Ax=b where A has already been factored. Adapted from LAPACK, this is supposed to be called with small sizes (4 or thereabout)
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer, | intent(in) | :: | n | |||
real(kind=psb_dpk_), | intent(in) | :: | a(n,n) | |||
integer, | intent(in) | :: | ipiv(n) | |||
real(kind=psb_dpk_), | intent(inout) | :: | b(n) | |||
integer, | intent(out) | :: | info |