William Zijie Zhang

Results 160 comments of William Zijie Zhang

maybe we should wait for the PEP to be released in January? I am not confident in understanding your changes enough to ensure that the builds would still work. Also,...

@Yingrui-Z thank you for raising this error! If you able to do so, could you share a minimal example which reproduces the error? The main changes from cvxpy 1.4.2 to...

Hi @Yingrui-Z , for the second issue you just posted, I think you can try to use the SCIPY canon backend as a parameter to the solve function. i.e ``problem.solve(canon_backend=cp.SCIPY_CANON_BACKEND)``....

Hello @tmckayus thanks for raising this issue! Please send a message on the [discord](https://discord.com/invite/4urRQeGBCr) and other developers/maintainers can chime in on the discussion. To answer your question about the CI,...

> The first question here is: are there other solvers that use CUDA? Only solvers written against the CUDA library will run on NVIDIA GPUs. @PTNobel and @ZedongPeng recently added...

> Update: I pushed changes based on the feedback, I still have to add the documentation piece (and fix the conflicts). I will work on this today. What is your...

I think it's because sp.diags is not of type spmatrix? It might be enough to just change the instance check on line 208 to use ``sp.issparse(A)`` instead.

oh nvm I think I see what you mean. In quad_form there is a try_catch that turns ``P`` into a dense array if ``sparse_cholesky`` raised a ValueError. But the snippet...

Hey @yasirroni I don't think we plan on adding support for a convex wrapper. You can see the source code (and an example) here: https://github.com/cvxpy/cvxpy/blob/3c37fd7d1de1b07f5c73247c8f21795bb50d1c5f/cvxpy/atoms/affine/wraps.py#L70. Please try to create your...

#2976 resolves this issue, thanks @7astro7 , really nice work!