NUMA.jl

NUMA tools (from libnuma) for Julia
Author JuliaPerf
Popularity
9 Stars
Updated Last
5 Months Ago
Started In
August 2023

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

Required Packages

Used By Packages

No packages found.