Fix incorrect argument to SLASET
Reference-LAPACK issue 425 (and 318)
This commit is contained in:
parent
c62aad62e5
commit
d64f1ef26b
|
@ -670,8 +670,8 @@
|
||||||
* the one from above. Compare it with D1 computed
|
* the one from above. Compare it with D1 computed
|
||||||
* using the SSBTRD.
|
* using the SSBTRD.
|
||||||
*
|
*
|
||||||
CALL SLASET( 'Full', N, 1, ZERO, ZERO, SD, 1 )
|
CALL SLASET( 'Full', N, 1, ZERO, ZERO, SD, N )
|
||||||
CALL SLASET( 'Full', N, 1, ZERO, ZERO, SE, 1 )
|
CALL SLASET( 'Full', N, 1, ZERO, ZERO, SE, N )
|
||||||
CALL SLACPY( ' ', K+1, N, A, LDA, U, LDU )
|
CALL SLACPY( ' ', K+1, N, A, LDA, U, LDU )
|
||||||
LH = MAX(1, 4*N)
|
LH = MAX(1, 4*N)
|
||||||
LW = LWORK - LH
|
LW = LWORK - LH
|
||||||
|
|
Loading…
Reference in New Issue