Results 189 comments of Brendan O'Donoghue

I think it should be compatible so long as you tell it where the header files and the cuda binaries are. If you run into problems just open an issue.

Yes, that would be a nice feature to have. It would be relatively straightforward to add support for a callback function that takes the relevant data structs and returns a...

This is awesome, thanks for writing these recipes. To clarify - where does the mkl come from that should be linked against? Is it a conda distribution or must the...

As far as I can tell this is an issue with the numpy conda package. SCS uses numpy.distutils.system_info function get_info to tell it where the blas/lapack libraries it should link...

As far as I know other packages don't expose that information like numpy does. And scipy uses the same get_info functionality from numpy to build: https://github.com/scipy/scipy/search?utf8=%E2%9C%93&q=get_info

One potential workaround that would work for all platforms is for the conda recipe for SCS to bypass numpy and get the lapack / blas libs directly. SCS will use...

To spell it out, the build.sh and bld.bat files would have to be something along the lines of ``` export BLAS_LAPACK_LIB_PATHS = $PREFIX/lib export BLAS_LAPACK_LIBS = "mkl_lapack95_lp64:mkl_intel_lp64:mkl_intel_thread:mkl_core:iomp5" python setup.py install...

Thanks for this very detailed guide! It will really help other people who want to install on windows anaconda. What steps do you think can we take in the SCS...

I have made the change as in step 6, and also hopefully fixed the --extraverbose issue.

Ok, I didn't change much but I will cut a new release to PyPi when I get a chance.