I want to solve a linear system of equations Ax = b
subject to x_i >= 0
.
This is of course a case of linear programming. The problem is that A
is too large to be created. I can, however, calculate Ax
efficiently.
So I have access to f(x) = Ax
, x
, and b
.
I prefer using pytorch (to utilize the GPU). What is the best way to tackle this?