| 38 | } |
| 39 | |
| 40 | DEVICE uint32_t test_wait(uint32_t phase, uint32_t pred = true) const { |
| 41 | return ClusterBarrier::test_wait(&this->barrier_, phase, pred); |
| 42 | } |
| 43 | |
| 44 | DEVICE uint32_t try_wait(uint32_t phase) const { |
| 45 | return ClusterBarrier::try_wait(&this->barrier_, phase); |
nothing calls this directly
no test coverage detected