(self)
| 286 | """The Mbarrier Arrive instruction submodule.""" |
| 287 | |
| 288 | def __init__(self): |
| 289 | self.expect_tx = _op_wrapper(_cuda_op.ptx_mbarrier_arrive_expect_tx) |
| 290 | self.cluster_count = _op_wrapper(_cuda_op.ptx_mbarrier_arrive_cluster_count) |
| 291 | |
| 292 | def __call__(self, *args, **kwds): |
| 293 | return _op_wrapper(_cuda_op.ptx_mbarrier_arrive)(*args, **kwds) |
nothing calls this directly
no test coverage detected