Gregory Lee
Gregory Lee
Note: On Dec 22, I rebased off of current master, cleaned up the commits into a small set of features and then did a force update. A copy of the...
I was interested whether the code would work directly with the new CUDA 7.0 RC, so I tried it out yesterday. There are a lot of new functions in 7.0...
@Tasignotas I have not seen this problem. Is your matrix size zero? If so, then nnz=0 and pycuda will raise the error you saw on the following call: `gpuarray.zeros((0,), dtype=np.float64)`...
Hello again @Tasignotas, I think I know what the problem is now. The new behavior of not requiring an explicit handle to be passed resulted in the need to either...
I have put a slightly updated standalone version of the CFFI wrappers for cuSPARSE (and now cuSOLVER, but no higher level wrappers there) in a repository at https://github.com/grlee77/python-cuda-cffi. I do...
>Really??!! From SAGE's manifesto 'Mission: Creating a viable free open source alternative to Magma, Maple, Mathematica and Matlab' https://www.sagemath.org/ > So I take that to mean Magma is not free,...
Hi @lebedov and @brianthelion. I was recently in need of some CSR matrix-vector and matrix-matrix routines so I just wrapped these with CFFI last week, starting from the code that...
We plan to have an equivalent of SciPy's `distance_transform_edt` (Euclidean distance transform) for CuPy arrays in the upcoming cuCIM 22.08 release. The GPU implementation is currently in 2D and 3D...
> In general, we don't performance claims, especially for complex models such as qMT. We have performance improvement plans for future releases, but for now, we would like to put...
If I recall correctly that phantom is fully analytic, but the computation of it is fairly involved an likely not trivial to port from Matlab to Python. At least, I...