You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to split an MxN array into k^2 chunks of size (M/k)x(N/k) and then process these in parallel. I'm aware of exact_chunks, but it doesn't natively support par_iter, right? What is the idiomatic way to do this?