Paul Goulart

Results 105 comments of Paul Goulart

Paper here: https://arxiv.org/abs/2405.12762 You'll see from the results there that the Julia and Rust versions are generally very close.

It is possible, but not tested much beyond `f32`. The reason is mostly that there is no obvious best choice of an extended precision type for us to choice. There...

The code is generically typed, so supports both f32 and f64. It is written mostly with `f64` in mind though, in the sense that all of the default parameters are...

I am going to close this for now, since we are not actively working on extending support to any 3rd party crate for higher precision support. Happy to revisit if...

This is extremely surprising to me, since there is no parallelism in the core code at all AFAIK. Are you running this as a native Rust application or via Julia?...

Are you using this for semidefinite programming (SDP) problems? I don't really see why the density of P would be a factor here, since the linear solve step uses our...

Only what is printed to the terminal. Are you compiling with BLAS enabled if it is just a QP? You shouldn't need BLAS for that type of problem, and it...

Was this only an issue with SDPs, with `OPENBLAS_NUM_THREADS=4` the solution for you? if so I think we can close it.

Merging to develop for the moment in preparation for v0.8. Thank you for the fix.

In 0.7.1 we fixed a bug in the data equilibration that allowed the matrix scaling to exceed the limits set by the user. In the course of fixing that I...