Parth Nobel

Results 121 comments of Parth Nobel

Sounds like a plan. Let's do it @Transurgeon

> you construct a single problem that includes batching, it will be separable but that doesn't matter necessarily. There's no harm in solving it as one large problem. I think...

```python import cvxpy as cp import numpy as np d = 10 np.random.seed(0) A = np.random.randn(5, 10) B = np.random.randn(4, 10) C = np.random.randn(3, 10) x = cp.Variable(d) objective =...

Here's the minimized script: ```python import cvxpy as cp import numpy as np d = 10 objective = cp.Minimize(0) constr = [cp.mixed_norm(cp.hstack([np.ones(d)]), 1, 2)

> Ping @SteveDiamond and @PTNobel once more. Here's my proposal: > > If an Expression is constant and contains no Parameters, then we can infer all "disciplined-xyz-programming" properties by inspecting...

I need to write tests still, tho we will be unable to test this in CI since it depends on having a GPU.

This is ready for review; I am waiting to confirm the installation instructions to finish the docs and merge.

Blocked on diffcp release, which is blocked on me getting a PyPI token for it.

This code is vendored in, I'm deeply skeptical of making changes to it that aren't just wholesale updates to the library we're vendoring. I would vote to close, but thank...

We could maybe add a flag to write nan instead of raising an error. I can see how the nonderivative batch application would be quite useful with feasibility problems.