File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -187,7 +187,7 @@ __gpu_match_any_u64(uint64_t __lane_mask, uint64_t __x) {
187187 uint64_t __match_mask = 0 ;
188188
189189 bool __done = 0 ;
190- while (__gpu_ballot (__lane_mask , __done )) {
190+ while (__gpu_ballot (__lane_mask , ! __done )) {
191191 if (!__done ) {
192192 uint64_t __first = __gpu_read_first_lane_u64 (__lane_mask , __x );
193193 if (__first == __x ) {
Original file line number Diff line number Diff line change @@ -207,7 +207,7 @@ __gpu_match_any_u64(uint64_t __lane_mask, uint64_t __x) {
207207 uint64_t __match_mask = 0 ;
208208
209209 bool __done = 0 ;
210- while (__gpu_ballot (__lane_mask , __done )) {
210+ while (__gpu_ballot (__lane_mask , ! __done )) {
211211 if (!__done ) {
212212 uint64_t __first = __gpu_read_first_lane_u64 (__lane_mask , __x );
213213 if (__first == __x ) {
You can’t perform that action at this time.
0 commit comments