Skip to content

Commit

Permalink
dlahrd.f: consistent line reflow for DTRMV calls
Browse files Browse the repository at this point in the history
  • Loading branch information
wdconinc authored Jan 10, 2025
1 parent 6ec7f2b commit 3aa8775
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions SRC/DEPRECATED/dlahrd.f
Original file line number Diff line number Diff line change
Expand Up @@ -231,8 +231,8 @@ SUBROUTINE DLAHRD( N, K, NB, A, LDA, TAU, T, LDT, Y, LDY )
*
* w := T**T *w
*
CALL DTRMV( 'Upper', 'Transpose', 'Non-unit', I-1, T, LDT,
$ T( 1, NB ), 1 )
CALL DTRMV( 'Upper', 'Transpose', 'Non-unit', I-1,
$ T, LDT, T( 1, NB ), 1 )
*
* b2 := b2 - V2*w
*
Expand Down Expand Up @@ -270,8 +270,8 @@ SUBROUTINE DLAHRD( N, K, NB, A, LDA, TAU, T, LDT, Y, LDY )
* Compute T(1:i,i)
*
CALL DSCAL( I-1, -TAU( I ), T( 1, I ), 1 )
CALL DTRMV( 'Upper', 'No transpose', 'Non-unit', I-1, T, LDT,
$ T( 1, I ), 1 )
CALL DTRMV( 'Upper', 'No transpose', 'Non-unit', I-1,
$ T, LDT, T( 1, I ), 1 )
T( I, I ) = TAU( I )
*
10 CONTINUE
Expand Down

0 comments on commit 3aa8775

Please sign in to comment.