I am not sure if I should ask my question here or in maths/cross-validated webpage.
I am looking for efficient optimizer in python for quadratic programming that it is in the form:
minimize sum_{i=0}^n f_i(x) subject to linear constraints. Each f_i is a quadratic function itself (actually the Q matrix is identity) for all i.
My main issue is with efficiency (time, usually space comes with sparse matrices), for scipy it takes ages as I had to define objective function manually as the sum of n such quadratics. For cplex I couldn't manage to write my problem.
Note: The subproblems are not independent - they are constrained by common matrix.