parallel_map_numa_aware

Function parallel_map_numa_aware 

Source
pub fn parallel_map_numa_aware<T, U, F>(items: &[T], op: F) -> Vec<U>
where T: Sync, U: Send, F: Fn(&T) -> U + Sync,
Expand description

NUMA-aware parallel processing

Attempts to optimize parallel operations for NUMA (Non-Uniform Memory Access) systems by keeping work close to where data resides in memory.