Skip to content

Commit a98ffc6

Browse files
committed
comments unified: specify where result will be stored in xGBT01 and xPOT01
Were unified with xGET02, xGET08, xPOT06, xQRT16, xSYT02.
1 parent dc67192 commit a98ffc6

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

TESTING/LIN/cgtt02.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ SUBROUTINE CGTT02( TRANS, N, NRHS, DL, D, DU, X, LDX, B, LDB,
182182
RETURN
183183
END IF
184184
*
185-
* Compute B - op(A)*X.
185+
* Compute B - op(A)*X and store in B.
186186
*
187187
CALL CLAGTM( TRANS, N, NRHS, -ONE, DL, D, DU, X, LDX, ONE, B,
188188
$ LDB )

TESTING/LIN/dgtt02.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ SUBROUTINE DGTT02( TRANS, N, NRHS, DL, D, DU, X, LDX, B, LDB,
182182
RETURN
183183
END IF
184184
*
185-
* Compute B - op(A)*X.
185+
* Compute B - op(A)*X and store in B.
186186
*
187187
CALL DLAGTM( TRANS, N, NRHS, -ONE, DL, D, DU, X, LDX, ONE, B,
188188
$ LDB )

TESTING/LIN/sgtt02.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ SUBROUTINE SGTT02( TRANS, N, NRHS, DL, D, DU, X, LDX, B, LDB,
182182
RETURN
183183
END IF
184184
*
185-
* Compute B - op(A)*X.
185+
* Compute B - op(A)*X and store in B.
186186
*
187187
CALL SLAGTM( TRANS, N, NRHS, -ONE, DL, D, DU, X, LDX, ONE, B,
188188
$ LDB )

TESTING/LIN/zgtt02.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ SUBROUTINE ZGTT02( TRANS, N, NRHS, DL, D, DU, X, LDX, B, LDB,
182182
RETURN
183183
END IF
184184
*
185-
* Compute B - op(A)*X.
185+
* Compute B - op(A)*X and store in B.
186186
*
187187
CALL ZLAGTM( TRANS, N, NRHS, -ONE, DL, D, DU, X, LDX, ONE, B,
188188
$ LDB )

0 commit comments

Comments
 (0)