mkitti / ArrayAllocators.jl

Allocate arrays with malloc, calloc, or on NUMA nodes
MIT License
53 stars 1 forks source link

Move `libnuma` wrapper into separate package NUMA.jl? #19

Closed carstenbauer closed 1 year ago

carstenbauer commented 1 year ago

I sometimes want to use functions from libnuma and don't really want\need the array allocator aspect. Also, you currently pretty much only wrap the functions that you need for this use-case. For this reason, I'm thinking about creating a package NUMA.jl that is just a general wrapper around libnuma. To avoid duplicate code, you could then just depend on NUMA.jl.

How does that sound to you? (I would want to make you a co-owner)

carstenbauer commented 1 year ago

https://github.com/JuliaPerf/NUMA.jl

carstenbauer commented 1 year ago

As posted above, I decided to create a NUMA.jl package. Feel free to depend on it here (or don't) :)