API

Important note

In contrast to the C-interface, we use one-based indices for the "high-level" API. Hence, the first NUMA node is NUMA node 1 (not 0). Consequently, on a system with 8 NUMA domains, numa_max_node() returns 8 (not 7).

Index

References - Add-ons

NUMA.current_cpuMethod

Returns the ID (starting at zero) of the CPU-thread on which the calling Julia thread is currently running on.

source
NUMA.current_cpusMethod

Returns the IDs (starting at zero) of the CPU-threads on which the Julia threads are currently running on.

source
NUMA.current_numa_nodeMethod

Returns the NUMA node associated with the CPU-thread on which the calling Julia thread is currently running on.

source
NUMA.current_numa_nodesMethod

Returns the NUMA nodes associated with the CPU-threads on which the Julia threads are currently running on.

source
NUMA.ncpusMethod

Returns the number CPU-threads available on this system.

source
NUMA.which_numa_nodeFunction
which_numa_node(arr::AbstractArray) -> Int64
which_numa_node(arr::AbstractArray, i; kwargs...) -> Int64

Query on which NUMA node the given array is allocated (assuming that it is allocated on a single node).

Technically only the address of a single element is checked (by default the first one). The optional second integer argument can be used to specify this element.

The optional keyword argument variant can be used to switch between methods used to determine the NUMA node. Valid options are :move_pages (default) and :get_mempolicy.

Note: Returned NUMA node IDs start at zero!

source
NUMA.which_numa_nodeMethod
which_numa_node(ptr::Ptr{T}; variant) -> Int64

Query on which NUMA node the page associated with the given memory address (pointer) is located.

The optional keyword argument variant can be used to switch between methods used to determine the NUMA node. Valid options are :move_pages (default) and :get_mempolicy.

Note: Returned NUMA node IDs start at zero!

source
NUMA.numalocalMethod
numalocal() -> NUMA.NUMALocal

Returns an array initializer that represents the local NUMA node. To be used as, e.g., Vector{Float64}(numalocal(), 1024).

source
NUMA.numanodeMethod
numanode(i::Integer) -> NUMA.NUMANode

Returns an array initializer that represents a specific NUMA node. To be used as, e.g., Vector{Float64}(numanode(1), 1024).

source

References - Bitmask

NUMA.BitmaskType

Represents a bit mask. To be used to indicate, e.g., node masks or cpu masks.

Example:

julia> bm = Bitmask()
Bitmask (trunc): 00000000

julia> fill!(bm, 1); bm
Bitmask (trunc): 11111111

julia> bm[2] = 0; bm
Bitmask (trunc): 11111101

julia> numa_set_membind(bm)

julia> numa_get_membind()
Bitmask (trunc): 11111101
source

References

NUMA.numa_allocate_cpumaskMethod
numa_allocate_cpumask() -> Bitmask

Returns a bitmask of a size equal to the kernel's cpu mask. In other words, large enough to represent all cpus.

source
NUMA.numa_allocate_nodemaskMethod
numa_allocate_nodemask() -> Bitmask

Returns a bitmask of a size equal to the kernel's node mask. In other words, large enough to represent all nodes.

source
NUMA.numa_bitmask_allocFunction
numa_bitmask_alloc() -> Bitmask
numa_bitmask_alloc(n::Integer) -> Bitmask

Allocates a bitmask structure and its associated bit mask. The memory allocated for the bit mask contains enough words (type UInt64) to contain n bits. If n isn't provided, nnumanodes() is used.

The bit mask is zero-filled.

source
NUMA.numa_get_membindMethod
numa_get_membind() -> Bitmask

Returns the mask of nodes from which memory can currently be allocated

source
NUMA.numa_get_mems_allowedMethod
numa_get_mems_allowed() -> Bitmask

Returns the mask of nodes from which the process is allowed to allocate memory in it's current cpuset context

source
NUMA.numa_node_of_cpuFunction
numa_node_of_cpu() -> Int64
numa_node_of_cpu(cpuid::Integer) -> Int64

Returns the NUMA node that the cpu with the given id (starting at zero) belongs to.

source
NUMA.numa_node_sizeFunction
numa_node_size(

) -> NamedTuple{(:memtot, :memfree), Tuple{Int64, Int64}}
numa_node_size(
    node::Integer
) -> NamedTuple{(:memtot, :memfree), Tuple{Int64, Int64}}

Returns a named tuple holding the total memory and free memory of the given NUMA node. If no node index is provided as an argument, current_numa_node() is used.

source
NUMA.numa_num_possible_nodesMethod
numa_num_possible_nodes() -> Int64

Returns the size of kernel's node mask, i.e. large enough to represent the maximum number of nodes that the kernel can handle

source
NUMA.numa_set_membindMethod
numa_set_membind(bm::Bitmask)

Sets the memory allocation mask. The task will only allocate memory from the nodes set in the given nodemask. Passing an empty nodemask or a nodemask that contains nodes other than those in the mask returned by numa_get_mems_allowed() will result in an error.

source