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) {
187
187
uint64_t __match_mask = 0 ;
188
188
189
189
bool __done = 0 ;
190
- while (__gpu_ballot (__lane_mask , __done )) {
190
+ while (__gpu_ballot (__lane_mask , ! __done )) {
191
191
if (!__done ) {
192
192
uint64_t __first = __gpu_read_first_lane_u64 (__lane_mask , __x );
193
193
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) {
207
207
uint64_t __match_mask = 0 ;
208
208
209
209
bool __done = 0 ;
210
- while (__gpu_ballot (__lane_mask , __done )) {
210
+ while (__gpu_ballot (__lane_mask , ! __done )) {
211
211
if (!__done ) {
212
212
uint64_t __first = __gpu_read_first_lane_u64 (__lane_mask , __x );
213
213
if (__first == __x ) {
You can’t perform that action at this time.
0 commit comments