(self, x, copy=True, nan=0.0, posinf=None, neginf=None)
| 2447 | return torch.matmul(a, b) |
| 2448 | |
| 2449 | def nan_to_num(self, x, copy=True, nan=0.0, posinf=None, neginf=None): |
| 2450 | out = None if copy else x |
| 2451 | return torch.nan_to_num(x, nan=nan, posinf=posinf, neginf=neginf, out=out) |
| 2452 | |
| 2453 | def det(self, x): |
| 2454 | return torch.linalg.det(x) |
nothing calls this directly
no test coverage detected