|
354 | 354 | *> 1. The data movement (matrix transpose) is coded using simple nested |
355 | 355 | *> DO-loops because BLAS and LAPACK do not provide corresponding subroutines. |
356 | 356 | *> Those DO-loops are easily identified in this source code - by the CONTINUE |
357 | | -*> statements labeled wit 11**. In an optimized version of this code, the |
| 357 | +*> statements labeled with 11**. In an optimized version of this code, the |
358 | 358 | *> nested DO loops should be replaced with calls to an optimized subroutine. |
359 | 359 | *> 2. This code scales A by 1/SQRT(M) if the largest ABS(A(i,j)) could cause |
360 | 360 | *> column norm overflow. This is the minial precaution and it is left to the |
|
390 | 390 | * |
391 | 391 | *> \par Contributors: |
392 | 392 | * ================== |
393 | | -*> |
| 393 | +*> |
394 | 394 | *> \verbatim |
395 | 395 | *> Developed and coded by Zlatko Drmac, Department of Mathematics |
396 | 396 | *> University of Zagreb, Croatia, drmac@math.hr |
@@ -953,7 +953,7 @@ SUBROUTINE CGESVDQ( JOBA, JOBP, JOBR, JOBU, JOBV, M, N, A, LDA, |
953 | 953 | $ CALL CLASET( 'L', NR-1,NR-1, CZERO,CZERO, A(2,1), LDA ) |
954 | 954 | CALL CGESVD( 'N', 'N', NR, N, A, LDA, S, U, LDU, |
955 | 955 | $ V, LDV, CWORK, LCWORK, RWORK, INFO ) |
956 | | -* |
| 956 | +* |
957 | 957 | END IF |
958 | 958 | * |
959 | 959 | ELSE IF ( LSVEC .AND. ( .NOT. RSVEC) ) THEN |
|
0 commit comments