| 34 | DEVICE ClusterBarrier() = delete; |
| 35 | |
| 36 | DEVICE void init(uint32_t arrive_count) const { |
| 37 | ClusterBarrier::init(&this->barrier_, arrive_count); |
| 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); |
no test coverage detected