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

Remove OMP-private variable outside OpenMP context (Reference-LAPACK PR 860) #4107

Merged
merged 4 commits into from
Jun 26, 2023
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 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