Skip to content

Commit fc5fe83

Browse files
committed
update reference for Zlatko's paper in ACM TOMS
1 parent 2639b9e commit fc5fe83

File tree

4 files changed

+16
-36
lines changed

4 files changed

+16
-36
lines changed

SRC/cgesvdq.f

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -289,14 +289,9 @@
289289
*..............................................................................
290290
* References
291291
* ==========
292-
* [1] Z. Drmac: A QR-preconditioned QR SVD method for computing the SVD
293-
* with high accuracy, TR-2016-HRZZ-9345-1,
294-
* Department of Mathematics, University of Zagreb.
295-
* Submitted to ACM TOMS.
296-
* [2] Z. Drmac: xGESVDQ: A software implementation of the QR-preconditioned
297-
* QR SVD method for computing the singular value decomposition
298-
* TR-2016-HRZZ-9345-2, Department of Mathematics,
299-
* University of Zagreb. Submitted to ACM TOMS.
292+
* [1] Zlatko Drmac, Algorithm 977: A QR-Preconditioned QR SVD Method for
293+
* Computing the SVD with High Accuracy. ACM Trans. Math. Softw.
294+
* 44(1): 11:1-11:30 (2017)
300295
*.......................................................................
301296
*"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
302297
*
@@ -783,7 +778,7 @@ SUBROUTINE CGESVDQ( JOBA, JOBP, JOBR, JOBU, JOBV, M, N, A, LDA,
783778
SCONDA = ONE / SQRT(RTMP)
784779
* For NR=N, SCONDA is an estimate of SQRT(||(R^* * R)^(-1)||_1),
785780
* N^(-1/4) * SCONDA <= ||R^(-1)||_2 <= N^(1/4) * SCONDA
786-
* See the references [1], [2] for more details.
781+
* See the reference [1] for more details.
787782
END IF
788783
*
789784
ENDIF

SRC/dgesvdq.f

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -291,14 +291,9 @@
291291
*..............................................................................
292292
* References
293293
* ==========
294-
* [1] Z. Drmac: A QR-preconditioned QR SVD method for computing the SVD
295-
* with high accuracy, TR-2016-HRZZ-9345-1,
296-
* Department of Mathematics, University of Zagreb.
297-
* Submitted to ACM TOMS.
298-
* [2] Z. Drmac: xGESVDQ: A software implementation of the QR-preconditioned
299-
* QR SVD method for computing the singular value decomposition
300-
* TR-2016-HRZZ-9345-2, Department of Mathematics,
301-
* University of Zagreb. Submitted to ACM TOMS.
294+
* [1] Zlatko Drmac, Algorithm 977: A QR-Preconditioned QR SVD Method for
295+
* Computing the SVD with High Accuracy. ACM Trans. Math. Softw.
296+
* 44(1): 11:1-11:30 (2017)
302297
*.......................................................................
303298
*"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
304299
*
@@ -783,7 +778,7 @@ SUBROUTINE DGESVDQ( JOBA, JOBP, JOBR, JOBU, JOBV, M, N, A, LDA,
783778
SCONDA = ONE / SQRT(RTMP)
784779
* For NR=N, SCONDA is an estimate of SQRT(||(R^* * R)^(-1)||_1),
785780
* N^(-1/4) * SCONDA <= ||R^(-1)||_2 <= N^(1/4) * SCONDA
786-
* See the references [1], [2] for more details.
781+
* See the reference [1] for more details.
787782
END IF
788783
*
789784
ENDIF

SRC/sgesvdq.f

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -291,14 +291,9 @@
291291
*..............................................................................
292292
* References
293293
* ==========
294-
* [1] Z. Drmac: A QR-preconditioned QR SVD method for computing the SVD
295-
* with high accuracy, TR-2016-HRZZ-9345-1,
296-
* Department of Mathematics, University of Zagreb.
297-
* Submitted to ACM TOMS.
298-
* [2] Z. Drmac: xGESVDQ: A software implementation of the QR-preconditioned
299-
* QR SVD method for computing the singular value decomposition
300-
* TR-2016-HRZZ-9345-2, Department of Mathematics,
301-
* University of Zagreb. Submitted to ACM TOMS.
294+
* [1] Zlatko Drmac, Algorithm 977: A QR-Preconditioned QR SVD Method for
295+
* Computing the SVD with High Accuracy. ACM Trans. Math. Softw.
296+
* 44(1): 11:1-11:30 (2017)
302297
*.......................................................................
303298
*"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
304299
*
@@ -783,7 +778,7 @@ SUBROUTINE SGESVDQ( JOBA, JOBP, JOBR, JOBU, JOBV, M, N, A, LDA,
783778
SCONDA = ONE / SQRT(RTMP)
784779
* For NR=N, SCONDA is an estimate of SQRT(||(R^* * R)^(-1)||_1),
785780
* N^(-1/4) * SCONDA <= ||R^(-1)||_2 <= N^(1/4) * SCONDA
786-
* See the references [1], [2] for more details.
781+
* See the reference [1] for more details.
787782
END IF
788783
*
789784
ENDIF

SRC/zgesvdq.f

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -289,14 +289,9 @@
289289
*..............................................................................
290290
* References
291291
* ==========
292-
* [1] Z. Drmac: A QR-preconditioned QR SVD method for computing the SVD
293-
* with high accuracy, TR-2016-HRZZ-9345-1,
294-
* Department of Mathematics, University of Zagreb.
295-
* Submitted to ACM TOMS.
296-
* [2] Z. Drmac: xGESVDQ: A software implementation of the QR-preconditioned
297-
* QR SVD method for computing the singular value decomposition
298-
* TR-2016-HRZZ-9345-2, Department of Mathematics,
299-
* University of Zagreb. Submitted to ACM TOMS.
292+
* [1] Zlatko Drmac, Algorithm 977: A QR-Preconditioned QR SVD Method for
293+
* Computing the SVD with High Accuracy. ACM Trans. Math. Softw.
294+
* 44(1): 11:1-11:30 (2017)
300295
*.......................................................................
301296
*"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
302297
*
@@ -783,7 +778,7 @@ SUBROUTINE ZGESVDQ( JOBA, JOBP, JOBR, JOBU, JOBV, M, N, A, LDA,
783778
SCONDA = ONE / SQRT(RTMP)
784779
* For NR=N, SCONDA is an estimate of SQRT(||(R^* * R)^(-1)||_1),
785780
* N^(-1/4) * SCONDA <= ||R^(-1)||_2 <= N^(1/4) * SCONDA
786-
* See the references [1], [2] for more details.
781+
* See the reference [1] for more details.
787782
END IF
788783
*
789784
ENDIF

0 commit comments

Comments
 (0)