Skip to content

Latest commit

 

History

History
66 lines (44 loc) · 3.08 KB

README.md

File metadata and controls

66 lines (44 loc) · 3.08 KB

NUMA.jl

NUMA tools (from libnuma) for Julia

Documentation Build Status Quality

Example: Allocating on a specific NUMA node

In the following basic example, we explicitly allocate arrays on specific NUMA nodes.

julia> using NUMA, Random

julia> x = Vector{Float64}(numanode(1), 10); rand!(x);

julia> which_numa_node(x)
1

julia> y = Vector{Float64}(numanode(6), 10); rand!(y);

julia> which_numa_node(y)
6

Documentation

For more information, please check out the package documentation.

Useful Resources

Acknowledgements