I need to solve a convex quadratic problem numerically:
$\min f(x) = \frac{1}{2} x^\top A x - b^\top x$,
where $A$ is a very large and ill-conditioned semi positive definite matrix. Typical conjugate gradient method doesn't work well. SGD is too slow.
I'm looking for a good numerical method with relatively less computational effort.
Any experience or suggestions? Thank you!