Browse Source

Fix incorrect argument to SLASET

Reference-LAPACK issue 425 (and 318)
tags/v0.3.11^2
Martin Kroeker GitHub 5 years ago
parent
commit
d64f1ef26b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      lapack-netlib/TESTING/EIG/schksb2stg.f

+ 2
- 2
lapack-netlib/TESTING/EIG/schksb2stg.f View File

@@ -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, SE, 1 )
CALL SLASET( 'Full', N, 1, ZERO, ZERO, SD, N )
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…
Cancel
Save