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 gave the no key hash map new_parallel function a vec of about 41 billion u64s. I left it unattended for several hours on a machine with 100 cores and came back to find one thread still busy. perf record shows all time is being spent in boomphf::Mphf<T>::hash and boomphf::hashmap::NoKeyBoomHashMap<K,D1>::new_parallel.
I haven't looked at the code closely but I am guessing it may be a straggler thread in one of the two par_chunks loops here.
Any possible mitigations I can take to avoid this?
The text was updated successfully, but these errors were encountered:
I gave the no key hash map
new_parallel
function a vec of about 41 billion u64s. I left it unattended for several hours on a machine with 100 cores and came back to find one thread still busy.perf record
shows all time is being spent inboomphf::Mphf<T>::hash
andboomphf::hashmap::NoKeyBoomHashMap<K,D1>::new_parallel
.I haven't looked at the code closely but I am guessing it may be a straggler thread in one of the two
par_chunks
loops here.Any possible mitigations I can take to avoid this?
The text was updated successfully, but these errors were encountered: