gnumpy icon indicating copy to clipboard operation
gnumpy copied to clipboard

A distutils package for gnumpy and npmat

Results 4 gnumpy issues
Sort by recently updated
recently updated
newest added

[mltest.docx](https://github.com/dnouri/gnumpy/files/705633/mltest.docx) Hello, I'm trying to run a deep learning algorithm. I followed the code from [Adrian's](http://www.pyimagesearch.com/2014/09/22/getting-started-deep-learning-python/) tutorial. I'm getting the following error: File "mltest.py", line 4, in from nolearn.dbn import...

>>> import numpy as np >>> import gnumpy as gp >>> gp.garray(np.ones([10000,100000])) garray([[ 1., 1., 1., ..., 1., 1., 1.], [ 1., 1., 1., ..., 1., 1., 1.], [ 1.,...

Changes: * rewrote the code to support python3 * fixed the indentation from 1-2 spaces to 4 * removed trailing spaces * require numpy

when indexing a gnumpy.garray using a tuple of 2 lists of indices, gnumpy's implementation of `__getitem__` method casts the lists to the native gpu data type which is 32 bit...