(self)
| 267 | """The WGMMA MMAAsync instruction submodule.""" |
| 268 | |
| 269 | def __init__(self): |
| 270 | self.ss = _op_wrapper(_cuda_op.ptx_wgmma_mma_async_ss) |
| 271 | self.rs = _op_wrapper(_cuda_op.ptx_wgmma_mma_async_rs) |
| 272 | |
| 273 | |
| 274 | class MbarrierNamespace: |
nothing calls this directly
no test coverage detected