Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix few typos and sytrd boundary workspace #1030

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion SRC/cgehrd.f
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ SUBROUTINE CGEHRD( N, ILO, IHI, A, LDA, TAU, WORK, LWORK,
IF( NH.LE.1 ) THEN
LWKOPT = 1
ELSE
NB = MIN( NBMAX, ILAENV( 1, 'DGEHRD', ' ', N, ILO, IHI,
NB = MIN( NBMAX, ILAENV( 1, 'CGEHRD', ' ', N, ILO, IHI,
$ -1 ) )
LWKOPT = N*NB + TSIZE
END IF
Expand Down
2 changes: 1 addition & 1 deletion SRC/chetrd.f
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@
* Determine the block size.
*
NB = ILAENV( 1, 'CHETRD', UPLO, N, -1, -1, -1 )
LWKOPT = N*NB
LWKOPT = MAX( 1, N*NB )

Check warning on line 254 in SRC/chetrd.f

View check run for this annotation

Codecov / codecov/patch

SRC/chetrd.f#L254

Added line #L254 was not covered by tests
WORK( 1 ) = SROUNDUP_LWORK(LWKOPT)
END IF
*
Expand Down
2 changes: 1 addition & 1 deletion SRC/sgelqt.f
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*>
*> \verbatim
*>
*> DGELQT computes a blocked LQ factorization of a real M-by-N matrix A
*> SGELQT computes a blocked LQ factorization of a real M-by-N matrix A
*> using the compact WY representation of Q.
*> \endverbatim
*
Expand Down
2 changes: 1 addition & 1 deletion SRC/sgemlq.f
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
*> A is REAL array, dimension
*> (LDA,M) if SIDE = 'L',
*> (LDA,N) if SIDE = 'R'
*> Part of the data structure to represent Q as returned by DGELQ.
*> Part of the data structure to represent Q as returned by SGELQ.
*> \endverbatim
*>
*> \param[in] LDA
Expand Down
2 changes: 1 addition & 1 deletion SRC/sgemlqt.f
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
*>
*> \verbatim
*>
*> DGEMLQT overwrites the general real M-by-N matrix C with
*> SGEMLQT overwrites the general real M-by-N matrix C with
*>
*> SIDE = 'L' SIDE = 'R'
*> TRANS = 'N': Q C C Q
Expand Down
2 changes: 1 addition & 1 deletion SRC/ssytrd.f
Original file line number Diff line number Diff line change
Expand Up @@ -249,8 +249,8 @@
* Determine the block size.
*
NB = ILAENV( 1, 'SSYTRD', UPLO, N, -1, -1, -1 )
LWKOPT = N*NB
LWKOPT = MAX( 1, N*NB )
WORK( 1 ) = SROUNDUP_LWORK(LWKOPT)

Check warning on line 253 in SRC/ssytrd.f

View check run for this annotation

Codecov / codecov/patch

SRC/ssytrd.f#L252-L253

Added lines #L252 - L253 were not covered by tests
END IF
*
IF( INFO.NE.0 ) THEN
Expand Down
2 changes: 1 addition & 1 deletion SRC/zhetrd.f
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ SUBROUTINE ZHETRD( UPLO, N, A, LDA, D, E, TAU, WORK, LWORK,
* Determine the block size.
*
NB = ILAENV( 1, 'ZHETRD', UPLO, N, -1, -1, -1 )
LWKOPT = N*NB
LWKOPT = MAX( 1, N*NB )
WORK( 1 ) = LWKOPT
END IF
*
Expand Down
Loading