Skip to content

Commit 7fdd346

Browse files
committed
Merge branch 'master' of github.com:jprhyne/lapack
2 parents 8a338cf + dd2e5ef commit 7fdd346

File tree

8 files changed

+12
-16
lines changed

8 files changed

+12
-16
lines changed

SRC/clarfb.f

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -170,9 +170,8 @@
170170
*>
171171
*> The shape of the matrix V and the storage of the vectors which define
172172
*> the H(i) is best illustrated by the following example with n = 5 and
173-
*> k = 3. The elements equal to 1 are not stored; the corresponding
174-
*> array elements are modified but restored on exit. The rest of the
175-
*> array is not used.
173+
*> k = 3. The triangular part of V (including its diagonal) is not
174+
*> referenced.
176175
*>
177176
*> DIRECT = 'F' and STOREV = 'C': DIRECT = 'F' and STOREV = 'R':
178177
*>

SRC/cunhr_col.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ SUBROUTINE CUNHR_COL( M, N, NB, A, LDA, T, LDT, D, INFO )
421421
*
422422
JBTEMP2 = JB - 2
423423
DO J = JB, JB+JNB-2
424-
DO I = J-JBTEMP2, NB
424+
DO I = J-JBTEMP2, MIN( NB, N )
425425
T( I, J ) = CZERO
426426
END DO
427427
END DO

SRC/dlarfb.f

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -170,9 +170,8 @@
170170
*>
171171
*> The shape of the matrix V and the storage of the vectors which define
172172
*> the H(i) is best illustrated by the following example with n = 5 and
173-
*> k = 3. The elements equal to 1 are not stored; the corresponding
174-
*> array elements are modified but restored on exit. The rest of the
175-
*> array is not used.
173+
*> k = 3. The triangular part of V (including its diagonal) is not
174+
*> referenced.
176175
*>
177176
*> DIRECT = 'F' and STOREV = 'C': DIRECT = 'F' and STOREV = 'R':
178177
*>

SRC/dorhr_col.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ SUBROUTINE DORHR_COL( M, N, NB, A, LDA, T, LDT, D, INFO )
420420
*
421421
JBTEMP2 = JB - 2
422422
DO J = JB, JB+JNB-2
423-
DO I = J-JBTEMP2, NB
423+
DO I = J-JBTEMP2, MIN( NB, N )
424424
T( I, J ) = ZERO
425425
END DO
426426
END DO

SRC/slarfb.f

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -170,9 +170,8 @@
170170
*>
171171
*> The shape of the matrix V and the storage of the vectors which define
172172
*> the H(i) is best illustrated by the following example with n = 5 and
173-
*> k = 3. The elements equal to 1 are not stored; the corresponding
174-
*> array elements are modified but restored on exit. The rest of the
175-
*> array is not used.
173+
*> k = 3. The triangular part of V (including its diagonal) is not
174+
*> referenced.
176175
*>
177176
*> DIRECT = 'F' and STOREV = 'C': DIRECT = 'F' and STOREV = 'R':
178177
*>

SRC/sorhr_col.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ SUBROUTINE SORHR_COL( M, N, NB, A, LDA, T, LDT, D, INFO )
420420
*
421421
JBTEMP2 = JB - 2
422422
DO J = JB, JB+JNB-2
423-
DO I = J-JBTEMP2, NB
423+
DO I = J-JBTEMP2, MIN( NB, N )
424424
T( I, J ) = ZERO
425425
END DO
426426
END DO

SRC/zlarfb.f

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -170,9 +170,8 @@
170170
*>
171171
*> The shape of the matrix V and the storage of the vectors which define
172172
*> the H(i) is best illustrated by the following example with n = 5 and
173-
*> k = 3. The elements equal to 1 are not stored; the corresponding
174-
*> array elements are modified but restored on exit. The rest of the
175-
*> array is not used.
173+
*> k = 3. The triangular part of V (including its diagonal) is not
174+
*> referenced.
176175
*>
177176
*> DIRECT = 'F' and STOREV = 'C': DIRECT = 'F' and STOREV = 'R':
178177
*>

SRC/zunhr_col.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ SUBROUTINE ZUNHR_COL( M, N, NB, A, LDA, T, LDT, D, INFO )
421421
*
422422
JBTEMP2 = JB - 2
423423
DO J = JB, JB+JNB-2
424-
DO I = J-JBTEMP2, NB
424+
DO I = J-JBTEMP2, MIN( NB, N )
425425
T( I, J ) = CZERO
426426
END DO
427427
END DO

0 commit comments

Comments
 (0)