The Tcgen05 MMA instruction submodule.
| 327 | |
| 328 | |
| 329 | class Tcgen05MmaNamespace: |
| 330 | """The Tcgen05 MMA instruction submodule.""" |
| 331 | |
| 332 | def __init__(self): |
| 333 | self.block_scale = _op_wrapper(_cuda_op.ptx_tcgen05_mma_block_scale) |
| 334 | self.sp = Tcgen05MmaSpNamespace() |
| 335 | |
| 336 | def __call__(self, *args, **kwds): |
| 337 | return _op_wrapper(_cuda_op.ptx_tcgen05_mma)(*args, **kwds) |
| 338 | |
| 339 | # __call__ corresponds to ptx_tcgen05_mma |
| 340 | __tir_call_op_name__ = "ptx_tcgen05_mma" |
| 341 | |
| 342 | |
| 343 | class Tcgen05MmaSpNamespace: |
no outgoing calls
no test coverage detected
searching dependent graphs…