Skip to content Skip to sidebar Skip to footer
Showing posts with the label Memoryview

Cython: Create Memoryview Without Numpy Array?

Since I found memory-views handy and fast, I try to avoid creating NumPy arrays in cython and work … Read more Cython: Create Memoryview Without Numpy Array?

Initialise Cython Memoryview Efficiently

I'm currently setting my MemoryViews in my Cython pyx file as follows: @cython.boundscheck(Fals… Read more Initialise Cython Memoryview Efficiently

Reading A Binary File With Memoryview

I read a large file in the code below which has a special structure - among others two blocks that … Read more Reading A Binary File With Memoryview