PTX fence instruction submodule.
| 385 | |
| 386 | |
| 387 | class FenceNamespace: |
| 388 | """PTX fence instruction submodule.""" |
| 389 | |
| 390 | def __init__(self): |
| 391 | self.proxy_async = _op_wrapper(_cuda_op.ptx_fence_proxy_async) |
| 392 | self.mbarrier_init = _op_wrapper(_cuda_op.ptx_fence_mbarrier_init) |
| 393 | |
| 394 | def __call__(self, *args, **kwds): |
| 395 | return _op_wrapper(_cuda_op.ptx_fence)(*args, **kwds) |
| 396 | |
| 397 | __tir_call_op_name__ = "ptx_fence" |
| 398 | |
| 399 | |
| 400 | class GriddepcontrolNamespace: |
no outgoing calls
no test coverage detected
searching dependent graphs…