On Tue, Sep 18, 2012 at 3:42 PM, mark florisson
wrote:
> On 18 September 2012 20:55, Christoph Groth wrote:
>> Hello,
>>
>> I have written a python extension module, tinyarray, (to be made public
>> soon) which implements an important subset of numpy optimized for
>> _small_ arrays. Tinyarrays a
On 18 September 2012 15:19, Christoph Groth wrote:
> Hi,
>
> Thanks a lot for the recently added generic memoryview support, it's
> just what we needed to optimize an important part of our program.
>
> However, I believe that there's a problem with Cython's support for
> objects which do not provi
On 18 September 2012 20:55, Christoph Groth wrote:
> Hello,
>
> I have written a python extension module, tinyarray, (to be made public
> soon) which implements an important subset of numpy optimized for
> _small_ arrays. Tinyarrays are immutable, which makes them usable as
> dictionary keys.
>
>
Hello,
I have written a python extension module, tinyarray, (to be made public
soon) which implements an important subset of numpy optimized for
_small_ arrays. Tinyarrays are immutable, which makes them usable as
dictionary keys.
Some important operations, i.e. creation of a small array from a
Hi,
Thanks a lot for the recently added generic memoryview support, it's
just what we needed to optimize an important part of our program.
However, I believe that there's a problem with Cython's support for
objects which do not provide "strides" information (because they are
C-contiguous).
The b