(self, a, b)
| 2868 | return cp.transpose(a, axes) |
| 2869 | |
| 2870 | def matmul(self, a, b): |
| 2871 | return cp.matmul(a, b) |
| 2872 | |
| 2873 | def nan_to_num(self, x, copy=True, nan=0.0, posinf=None, neginf=None): |
| 2874 | return cp.nan_to_num(x, copy=copy, nan=nan, posinf=posinf, neginf=neginf) |