Skip to content

JuliaPerf/NUMA.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

48 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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