Francesc Alted

Results 320 comments of Francesc Alted

We should resolve it of course :) PR's appreciated as always. 2015-08-08 23:37 GMT+02:00 Valentin Haenel [email protected]: > What should we do with this issue? I saw more emails about...

Yes, @gogoengie is probably right in that the `lastchunk` buffer is the responsible for all the allocated memory. A possible solution would be to make `lastchunk` lazy and create it...

A self-contained example is always best to show your point.

I would say that would be a useful addition, yes. A sensible parameter for the carray/ctable constructors could be `out_flavor` as it is already implemented in `bcolz.eval` (http://bcolz.blosc.org/reference.html?highlight=eval#bcolz.eval). @vapemaster would...

Well, Cython is very close in syntax to Python, so my recommendation is that you do a quick read at this first: http://docs.cython.org/src/tutorial/cython_tutorial.html Then it would just a matter of...

This looks good, thanks. Unfortunately c-blosc only supports being called effectively from multi-threaded operations in version >= 1.5, and with lesser versions, c-blosc makes sure that a lock is put...

Yes, @ARF1 suggestion of using prange is a good one. And he is right, Blosc used to pose a lock itself (similar to GIL), but with c-blosc >= 1.5 there...

I don't think that prange allows you to ensure an order, but if you want that, then use regular range right?

@alimanfoo is correct in that zarr is much better positioned for handling multidimensional arrays than bcolz is. Also, bcolz is mainly in maintenance mode (it has been underfunded for too...

Yep. Perhaps forcing a view of the numpy array should be relatively easy to add. Interested in providing a PR? If not easy, perhaps fixing the documentation would be better.