The Mbarrier Arrive instruction submodule.
| 283 | |
| 284 | |
| 285 | class MbarrierArriveNamespace: |
| 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) |
| 294 | |
| 295 | # __call__ corresponds to ptx_mbarrier_arrive |
| 296 | __tir_call_op_name__ = "ptx_mbarrier_arrive" |
| 297 | |
| 298 | |
| 299 | class Tcgen05Namespace: |
no outgoing calls
no test coverage detected
searching dependent graphs…