r""" Returns a tensor that is a transposed version of a. The given dimensions dim0 and dim1 are swapped. See: https://numpy.org/doc/stable/reference/generated/numpy.transpose.html
(self, a, axes=None)
| 1072 | raise NotImplementedError() |
| 1073 | |
| 1074 | def transpose(self, a, axes=None): |
| 1075 | r""" |
| 1076 | Returns a tensor that is a transposed version of a. The given dimensions dim0 and dim1 are swapped. |
| 1077 | |
| 1078 | See: https://numpy.org/doc/stable/reference/generated/numpy.transpose.html |
| 1079 | """ |
| 1080 | raise NotImplementedError() |
| 1081 | |
| 1082 | def matmul(self, a, b): |
| 1083 | r""" |
no outgoing calls