Skip to content

Commit

Permalink
Merge pull request #860 from chrwarm/openmp_bug
Browse files Browse the repository at this point in the history
[cz]hetrd_hb2st.F, [sd]sytrd_sb2st.F OpenMP fixes
  • Loading branch information
weslleyspereira authored Jun 26, 2023
2 parents a763f93 + bed71eb commit e2428ec
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion 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 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 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 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 e2428ec

Please sign in to comment.