Initialize X and Y to zero for N=0 (Reference-LAPACK PR463)
This commit is contained in:
parent
3a30c12019
commit
c26780d451
|
@ -271,8 +271,15 @@
|
||||||
*
|
*
|
||||||
* Quick return if possible
|
* Quick return if possible
|
||||||
*
|
*
|
||||||
IF( N.EQ.0 )
|
IF( N.EQ.0 ) THEN
|
||||||
$ RETURN
|
DO I = 1, M
|
||||||
|
X(I) = CZERO
|
||||||
|
END DO
|
||||||
|
DO I = 1, P
|
||||||
|
Y(I) = CZERO
|
||||||
|
END DO
|
||||||
|
RETURN
|
||||||
|
END IF
|
||||||
*
|
*
|
||||||
* Compute the GQR factorization of matrices A and B:
|
* Compute the GQR factorization of matrices A and B:
|
||||||
*
|
*
|
||||||
|
|
|
@ -270,8 +270,15 @@
|
||||||
*
|
*
|
||||||
* Quick return if possible
|
* Quick return if possible
|
||||||
*
|
*
|
||||||
IF( N.EQ.0 )
|
IF( N.EQ.0 ) THEN
|
||||||
$ RETURN
|
DO I = 1, M
|
||||||
|
X(I) = ZERO
|
||||||
|
END DO
|
||||||
|
DO I = 1, P
|
||||||
|
Y(I) = ZERO
|
||||||
|
END DO
|
||||||
|
RETURN
|
||||||
|
END IF
|
||||||
*
|
*
|
||||||
* Compute the GQR factorization of matrices A and B:
|
* Compute the GQR factorization of matrices A and B:
|
||||||
*
|
*
|
||||||
|
|
|
@ -270,8 +270,15 @@
|
||||||
*
|
*
|
||||||
* Quick return if possible
|
* Quick return if possible
|
||||||
*
|
*
|
||||||
IF( N.EQ.0 )
|
IF( N.EQ.0 ) THEN
|
||||||
$ RETURN
|
DO I = 1, M
|
||||||
|
X(I) = ZERO
|
||||||
|
END DO
|
||||||
|
DO I = 1, P
|
||||||
|
Y(I) = ZERO
|
||||||
|
END DO
|
||||||
|
RETURN
|
||||||
|
END IF
|
||||||
*
|
*
|
||||||
* Compute the GQR factorization of matrices A and B:
|
* Compute the GQR factorization of matrices A and B:
|
||||||
*
|
*
|
||||||
|
|
|
@ -271,8 +271,15 @@
|
||||||
*
|
*
|
||||||
* Quick return if possible
|
* Quick return if possible
|
||||||
*
|
*
|
||||||
IF( N.EQ.0 )
|
IF( N.EQ.0 ) THEN
|
||||||
$ RETURN
|
DO I = 1, M
|
||||||
|
X(I) = CZERO
|
||||||
|
END DO
|
||||||
|
DO I = 1, P
|
||||||
|
Y(I) = CZERO
|
||||||
|
END DO
|
||||||
|
RETURN
|
||||||
|
END IF
|
||||||
*
|
*
|
||||||
* Compute the GQR factorization of matrices A and B:
|
* Compute the GQR factorization of matrices A and B:
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue