This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I think @larsmans or @jakevdp know which type should be used for indexing arrays in scipy sparse data-structures, assuming this is the cause of the problem.
In [8]: np.version.version
Out[8]: '1.6.1rc3'
In [9]: np.arange(42).dtype
Out[9]: dtype('int64')
damn it - I'll fix it - thanks for pointing this out
2012/6/26 Gilles Louppe
reply@reply.github.com:
```
In [9]: np.version.version
Out[9]: '1.5.1'
In [10]: np.arange(42).dtype
Out[10]: dtype('int32'
```
---
Reply to this email directly or view it on GitHub:
4f1e871#commitcomment-1504370
I had the same issue locally. It can be fixed by replacing
np.int64_twithlong.