Daan

Results 339 comments of Daan

Hi Manuel, hope you are doing well. In the `src/options.c` you can compile in the default options like `arena_reserve` . Aside: Normally though, the memory for such arena is only...

Ah I see. There are some options that are read before user code can set them -- it'll still work from environment variables but that is probably not what you...

I pushed an update to `dev` and `dev-slice` that let you set extra c definitions with `cmake ../.. -DMI_EXTRA_CPPDEFS=MI_ARENA_RESERVE=128*1024L` for example. Let me know if this would work for you.

Hi @WildCard65 , thanks for the fix, but can you make this PR against the `dev` branch ? (I tried to change the base but it would pull in all...

... I guess we need to prevent clashes with the runtime defined functions; maybe generate `kk__xxx` for user functions, or rename all primitives to `kkp_xxx`; I am embarrassed to not...

Thanks @Noxybot -- I cannot repro locally but I think I may have fixed the issue -- can you try with the latest dev3?

Ah, I think I know what this is. dev3 has a nice `_mi_page_map` that tracks all valid mimalloc pages in memory and it is committed on demand. However, I reserve...

Hi @pmeerw -- I think the issue is fixed now in the latest `dev3` (with commit 4161152 -- I wrote the issue ID wrongly so it didn't show up in...

Thanks! I think this is fixed in the latest `dev3`; actually the assert is just to "warn" that we use smallish slices for such large OS page size. The fix...

Well, a fresh version is coming soon v1.8.8 and v2.1.8 -- hopefully next week. However, with huge pages there will always be more memory usage since it is a 1...