Skip to content

Commit 8531d65

Browse files
committed
comments fixed: op missed
1 parent e7bb5f4 commit 8531d65

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

TESTING/LIN/cqrt17.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ REAL FUNCTION CQRT17( TRANS, IRESID, M, N, NRHS, A,
224224
$ INFO )
225225
END IF
226226
*
227-
* compute R'*A
227+
* compute R'*op(A)
228228
*
229229
CALL CGEMM( 'Conjugate transpose', TRANS, NRHS, NCOLS, NROWS,
230230
$ CMPLX( ONE ), C, LDB, A, LDA, CMPLX( ZERO ), WORK,

TESTING/LIN/dqrt17.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ DOUBLE PRECISION FUNCTION DQRT17( TRANS, IRESID, M, N, NRHS, A,
225225
$ INFO )
226226
END IF
227227
*
228-
* compute R'*A
228+
* compute R'*op(A)
229229
*
230230
CALL DGEMM( 'Transpose', TRANS, NRHS, NCOLS, NROWS, ONE, C, LDB,
231231
$ A, LDA, ZERO, WORK, NRHS )

TESTING/LIN/sqrt17.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ REAL FUNCTION SQRT17( TRANS, IRESID, M, N, NRHS, A,
225225
$ INFO )
226226
END IF
227227
*
228-
* compute R'*A
228+
* compute R'*op(A)
229229
*
230230
CALL SGEMM( 'Transpose', TRANS, NRHS, NCOLS, NROWS, ONE, C, LDB,
231231
$ A, LDA, ZERO, WORK, NRHS )

TESTING/LIN/zqrt17.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ DOUBLE PRECISION FUNCTION ZQRT17( TRANS, IRESID, M, N, NRHS, A,
225225
$ INFO )
226226
END IF
227227
*
228-
* compute R'*A
228+
* compute R'*op(A)
229229
*
230230
CALL ZGEMM( 'Conjugate transpose', TRANS, NRHS, NCOLS, NROWS,
231231
$ DCMPLX( ONE ), C, LDB, A, LDA, DCMPLX( ZERO ), WORK,

0 commit comments

Comments
 (0)