Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix description of mrq, mlq functions #84

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion SRC/pcunmlq.f
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ SUBROUTINE PCUNMLQ( SIDE, TRANS, M, N, K, A, IA, JA, DESCA, TAU,
* DESCA (global and local input) INTEGER array of dimension DLEN_.
* The array descriptor for the distributed matrix A.
*
* TAU (local input) COMPLEX, array, dimension LOCc(IA+K-1).
* TAU (local input) COMPLEX, array, dimension LOCr(IA+K-1).
* This array contains the scalar factors TAU(i) of the
* elementary reflectors H(i) as returned by PCGELQF.
* TAU is tied to the distributed matrix A.
Expand Down
2 changes: 1 addition & 1 deletion SRC/pcunmrq.f
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ SUBROUTINE PCUNMRQ( SIDE, TRANS, M, N, K, A, IA, JA, DESCA, TAU,
* DESCA (global and local input) INTEGER array of dimension DLEN_.
* The array descriptor for the distributed matrix A.
*
* TAU (local input) COMPLEX, array, dimension LOCc(IA+K-1).
* TAU (local input) COMPLEX, array, dimension LOCr(IA+K-1).
* This array contains the scalar factors TAU(i) of the
* elementary reflectors H(i) as returned by PCGERQF.
* TAU is tied to the distributed matrix A.
Expand Down
2 changes: 1 addition & 1 deletion SRC/pdormlq.f
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ SUBROUTINE PDORMLQ( SIDE, TRANS, M, N, K, A, IA, JA, DESCA, TAU,
* DESCA (global and local input) INTEGER array of dimension DLEN_.
* The array descriptor for the distributed matrix A.
*
* TAU (local input) DOUBLE PRECISION array, dimension LOCc(IA+K-1).
* TAU (local input) DOUBLE PRECISION array, dimension LOCr(IA+K-1).
* This array contains the scalar factors TAU(i) of the
* elementary reflectors H(i) as returned by PDGELQF.
* TAU is tied to the distributed matrix A.
Expand Down
2 changes: 1 addition & 1 deletion SRC/pdormrq.f
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ SUBROUTINE PDORMRQ( SIDE, TRANS, M, N, K, A, IA, JA, DESCA, TAU,
* DESCA (global and local input) INTEGER array of dimension DLEN_.
* The array descriptor for the distributed matrix A.
*
* TAU (local input) DOUBLE PRECISION array, dimension LOCc(IA+K-1).
* TAU (local input) DOUBLE PRECISION array, dimension LOCr(IA+K-1).
* This array contains the scalar factors TAU(i) of the
* elementary reflectors H(i) as returned by PDGERQF.
* TAU is tied to the distributed matrix A.
Expand Down
2 changes: 1 addition & 1 deletion SRC/psormlq.f
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ SUBROUTINE PSORMLQ( SIDE, TRANS, M, N, K, A, IA, JA, DESCA, TAU,
* DESCA (global and local input) INTEGER array of dimension DLEN_.
* The array descriptor for the distributed matrix A.
*
* TAU (local input) REAL, array, dimension LOCc(IA+K-1).
* TAU (local input) REAL, array, dimension LOCr(IA+K-1).
* This array contains the scalar factors TAU(i) of the
* elementary reflectors H(i) as returned by PSGELQF.
* TAU is tied to the distributed matrix A.
Expand Down
2 changes: 1 addition & 1 deletion SRC/psormrq.f
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ SUBROUTINE PSORMRQ( SIDE, TRANS, M, N, K, A, IA, JA, DESCA, TAU,
* DESCA (global and local input) INTEGER array of dimension DLEN_.
* The array descriptor for the distributed matrix A.
*
* TAU (local input) REAL, array, dimension LOCc(IA+K-1).
* TAU (local input) REAL, array, dimension LOCr(IA+K-1).
* This array contains the scalar factors TAU(i) of the
* elementary reflectors H(i) as returned by PSGERQF.
* TAU is tied to the distributed matrix A.
Expand Down
2 changes: 1 addition & 1 deletion SRC/pzunmlq.f
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ SUBROUTINE PZUNMLQ( SIDE, TRANS, M, N, K, A, IA, JA, DESCA, TAU,
* DESCA (global and local input) INTEGER array of dimension DLEN_.
* The array descriptor for the distributed matrix A.
*
* TAU (local input) COMPLEX*16, array, dimension LOCc(IA+K-1).
* TAU (local input) COMPLEX*16, array, dimension LOCr(IA+K-1).
* This array contains the scalar factors TAU(i) of the
* elementary reflectors H(i) as returned by PZGELQF.
* TAU is tied to the distributed matrix A.
Expand Down
2 changes: 1 addition & 1 deletion SRC/pzunmrq.f
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ SUBROUTINE PZUNMRQ( SIDE, TRANS, M, N, K, A, IA, JA, DESCA, TAU,
* DESCA (global and local input) INTEGER array of dimension DLEN_.
* The array descriptor for the distributed matrix A.
*
* TAU (local input) COMPLEX*16, array, dimension LOCc(IA+K-1).
* TAU (local input) COMPLEX*16, array, dimension LOCr(IA+K-1).
* This array contains the scalar factors TAU(i) of the
* elementary reflectors H(i) as returned by PZGERQF.
* TAU is tied to the distributed matrix A.
Expand Down