guinn8

Results 4 comments of guinn8

Thanks @gpakosz! I got the array of mutexes working and it has massively increased performance. I did this by allocating an arbitrarily (!= `buffer_size`) sized array of mutexes in the...

Fair enough to no accept the PR as is. Redefining `PACKEDARRAY_MALLOC` to use `calloc` is not entirely straight forward as you would need to handle the additional argument, that's why...

You are correct about it being a flaw in my application, my code assumed zero initialization. Looked like a bug from my perspective as the error was only observed on...

I found that replacing all `uint32_t` with `uint64_t` in `PackedArray.c` and `PackedArray.h` got me the extra space I needed. Likely overkill but ensures I don't overflow some `uint32_t` I forgot...