(self, x, copy=True, nan=0.0, posinf=None, neginf=None)
| 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) |
| 2875 | |
| 2876 | def det(self, x): |
| 2877 | return cp.linalg.det(x) |
nothing calls this directly
no test coverage detected