corealloc 0.1.0

Helper CLI utility decide on core allocation on the current system
corealloc-0.1.0 is not a library.
Visit the last successful build: corealloc-0.6.0

corealloc

Figures out which core-ids to pin your program to:

Allocate 12 cores, as close together as possible:

cargo run --release -- -c 12 -s sequential

Allocate 12 cores, spread out over multiple sockets, if possible:

cargo run --release -- -c 12 -s interleave

Same but don't consider neighbouring hyper-threads for allocation:

cargo run --release -- -c 12 -s interleave --no-ht