Skip to content

Commit

Permalink
Adding missing context to PXERBLA calls. The assumption that it is ca…
Browse files Browse the repository at this point in the history
…lled from an invalid argument error seems dubious, as -INFO is resulting in a negative value. Perhaps the problem is in a workspace query to PDLAQR{0,1}.
  • Loading branch information
Jack Poulson committed Mar 24, 2014
1 parent 091ea6a commit 3dfdf1b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion SRC/pdhseqr.f
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ SUBROUTINE PDHSEQR( JOB, COMPZ, N, ILO, IHI, H, DESCH, WR, WI, Z,
*
* Quick return in case of invalid argument.
*
CALL PXERBLA( 'PDHSEQR', -INFO )
CALL PXERBLA( ICTXT, 'PDHSEQR', -INFO )
RETURN
*
ELSE IF( N.EQ.0 ) THEN
Expand Down
2 changes: 1 addition & 1 deletion SRC/pshseqr.f
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ SUBROUTINE PSHSEQR( JOB, COMPZ, N, ILO, IHI, H, DESCH, WR, WI, Z,
*
* Quick return in case of invalid argument.
*
CALL PXERBLA( 'PSHSEQR', -INFO )
CALL PXERBLA( ICTXT, 'PSHSEQR', -INFO )
RETURN
*
ELSE IF( N.EQ.0 ) THEN
Expand Down

0 comments on commit 3dfdf1b

Please sign in to comment.