Let's say I have a matrix X with n, m == X.shape in PyTorch.
What is the time complexity of calculating the pseudo-inverse with torch.pinverse?
In other words, what is the time complexity of
X_p = torch.pinverse(X)
?
Here is the documentation

