We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When binding the following Rayon workload to specific NUMA nodes, performance significantly degrades.
fn execute(pool: &ThreadPool) { let given: NumIter = (0..NUM_ITERATIONS) .into_par_iter() .map(|_| { let mut result = 0; for i in (2..100).rev() { let mut is_prime = true; for j in 2..i { if i % j == 0 { is_prime = false; break; } } if is_prime { result = (result + i as usize) % 1000; } } result }) .sum(); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Environment
Issue
When binding the following Rayon workload to specific NUMA nodes, performance significantly degrades.
The text was updated successfully, but these errors were encountered: