Skip to content

Commit

Permalink
Merge pull request #4107 from martin-frbg/lapack860
Browse files Browse the repository at this point in the history
Remove OMP-private variable outside OpenMP context (Reference-LAPACK PR 860)
  • Loading branch information
martin-frbg authored Jun 26, 2023
2 parents 3688c42 + 4920222 commit dc24391
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lapack-netlib/SRC/chetrd_hb2st.F
Original file line number Diff line number Diff line change
Expand Up @@ -537,7 +537,7 @@ SUBROUTINE CHETRD_HB2ST( STAGE1, VECT, UPLO, N, KD, AB, LDAB,
$ STIND, EDIND, SWEEPID, N, KD, IB,
$ WORK ( INDA ), LDA,
$ HOUS( INDV ), HOUS( INDTAU ), LDV,
$ WORK( INDW + TID*KD ) )
$ WORK( INDW ) )
#endif
IF ( BLKLASTIND.GE.(N-1) ) THEN
STT = STT + 1
Expand Down
2 changes: 1 addition & 1 deletion lapack-netlib/SRC/dsytrd_sb2st.F
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@ SUBROUTINE DSYTRD_SB2ST( STAGE1, VECT, UPLO, N, KD, AB, LDAB,
$ STIND, EDIND, SWEEPID, N, KD, IB,
$ WORK ( INDA ), LDA,
$ HOUS( INDV ), HOUS( INDTAU ), LDV,
$ WORK( INDW + TID*KD ) )
$ WORK( INDW ) )
#endif
IF ( BLKLASTIND.GE.(N-1) ) THEN
STT = STT + 1
Expand Down
2 changes: 1 addition & 1 deletion lapack-netlib/SRC/ssytrd_sb2st.F
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@ SUBROUTINE SSYTRD_SB2ST( STAGE1, VECT, UPLO, N, KD, AB, LDAB,
$ STIND, EDIND, SWEEPID, N, KD, IB,
$ WORK ( INDA ), LDA,
$ HOUS( INDV ), HOUS( INDTAU ), LDV,
$ WORK( INDW + TID*KD ) )
$ WORK( INDW ) )
#endif
IF ( BLKLASTIND.GE.(N-1) ) THEN
STT = STT + 1
Expand Down
2 changes: 1 addition & 1 deletion lapack-netlib/SRC/zhetrd_hb2st.F
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ SUBROUTINE ZHETRD_HB2ST( STAGE1, VECT, UPLO, N, KD, AB, LDAB,
$ STIND, EDIND, SWEEPID, N, KD, IB,
$ WORK ( INDA ), LDA,
$ HOUS( INDV ), HOUS( INDTAU ), LDV,
$ WORK( INDW + TID*KD ) )
$ WORK( INDW ) )
#endif
IF ( BLKLASTIND.GE.(N-1) ) THEN
STT = STT + 1
Expand Down

0 comments on commit dc24391

Please sign in to comment.