Lev E. Givon

Results 76 comments of Lev E. Givon

Sorry about the incomplete state of the cusparse wrappers; I'm in the process of rewriting them (and the other low-level NVIDIA library wrappers) using [cffi](http://bitbucket.org/cffi/cffi) (see the [cffi](https://github.com/lebedov/scikits.cuda/tree/cffi) branch of...

The cusparse wrappers in the master branch are currently incomplete (and hence not listed in the docs), and I don't currently have time to transition the entire package to cffi....

I would like to have the high-level functions (i.e., in the `linalg` module) be able to use CUSOLVER or MAGMA (if available) given that obtaining access to CULA is no...

I just added support for computing the full SVD with CUSOLVER rather than CULA if so desired.

@paoloviviani, there are wrappers for MAGMA's GESVD and GESDD functions in skcuda/magma.py (although one obviously must install the MAGMA shared library manually to use them). If you would like to...

You can try mocking up the skcuda modules imported by your package in your sphinx configuration so that the import error doesn't break autodoc; see the [docs/source/conf.py](https://github.com/lebedov/scikit-cuda/blob/master/docs/source/conf.py) for how I...

If you are thinking about running several independent FFT operations on different GPUs simultaneously, you can try using Python's multiprocessing package to start several processes, each which initializes pycuda with...

Apologies for the delayed response. If multiple GPUs are present on your system, you can specify which device pycuda should use as follows: ```python3 import pycuda.driver import pycuda.tools pycuda.driver.init() dev...

Are `t1`, `d1`, `t2`, `d2` fixed parameters? If so, `scipy.integrate.quad()` seems to run pretty rapidly for the following example: ```python import functools import numpy as np import scipy.integrate as integrate...

Added. Give them a try and let me know if there are issues.