Lev E. Givon

Results 76 comments of Lev E. Givon

The version of CUDA you are using is quite old; cublasSgetrsBatched probably isn't defined in CUDA 5. If you can't update your CUDA installation (i.e., because you don't have admin...

Since numpy provides both eig and eigh functions (and since cusolver doesn't provide generalized eigenvalue decomposition yet), this suggestion is a good idea.

You may wish to look into using the [batches least squares linear solver in CUBLAS](https://docs.nvidia.com/cuda/cublas/index.html#cublas-lt-t-gt-gelsBatched) - I just added wrappers for it to skcuda.

@kmaork Thanks for the link to your library!

Thanks for letting me know about Formulaic!

Sounds like a good idea. Can you please try the code in the use-jpype branch and let me know if you encounter any issues? The API is almost the same...

I put together a [quick wrapper](https://gist.github.com/lebedov/cefbec588c2b2bd0251ba505bd8bf933) for the PDF to image functionality that may be what you are looking for; it returns the extracted pages as RGB numpy arrays. I...