(self)
| 28 | """The Metal intrinsics submodule.""" |
| 29 | |
| 30 | def __init__(self): |
| 31 | self.make_filled_simdgroup_matrix = _op_wrapper(_metal_op.make_filled_simdgroup_matrix) |
| 32 | self.simdgroup_load = _op_wrapper(_metal_op.simdgroup_load) |
| 33 | self.simdgroup_store = _op_wrapper(_metal_op.simdgroup_store) |
| 34 | self.simdgroup_multiply_accumulate = _op_wrapper(_metal_op.simdgroup_multiply_accumulate) |
| 35 | |
| 36 | @staticmethod |
| 37 | def simd_shuffle(var, lane): |
nothing calls this directly
no test coverage detected