Jonas Behr
Jonas Behr
Hey there, I wanted to catch up on the status of this issue. We are starting to increase the workloads going through this container task and are expecting production workloads...
This is just to cast my vote for this feature. I switched back to htslib for all the bamIO and I guess you know that no one ever really wants...
I have the same issue. I am running on an EC2 instance with 128Gb ram but it happens already after a few seconds. Is also using the AVX2 mode. And...
I had a look at the case. The memory is allocated here: int64_t *pos_ar = (int64_t *) _mm_malloc( mem_lim * sizeof(int64_t), 64); It would be nice to add a check...
It seems in my case it was a variable overflow. If I change `mem_lim` to int64_t, then it runs. That is in file `src/FMI_search.cpp` line `1264`. But I might be...
Hi @eseiler, thanks a lot for looking into this. I am aware of the issue with the id helper. We have been working on this together before: https://github.com/seqan/seqan3/issues/3258 I currently...
Having a look at your example code, I think it will probably not trigger the memory management issue because I think this will primarily happen when one thread makes a...
Exactly, this is where the patch goes. In 3.3.0 it is 776, but sure, you found the right spot. My understanding is that thread_local will cause this to create one...