-
Notifications
You must be signed in to change notification settings - Fork 915
New issue
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
[BUG] Illegal memory access to collision counter in concurrent_unordered_multimap #7413
Comments
Since the |
No problem at all. It's not a blocker for me as well. Just want to raise an issue here so that it can get tracked. |
Thanks. I think this oversight is a holdover from when the |
This issue has been labeled |
No longer relevant as of #10642. |
Describe the bug
In
cpp/src/hash/concurrent_unordered_multimap.cuh
, member elementm_collisions
is allocated in host memory, but the host pointer is passed toatomicAdd
in device functioninsert
, here, and here.Steps/Code to reproduce bug
Any code using
concurrent_unordered_multimap
withcount_collisions
set totrue
should observe illegal memory access in the kernel.The text was updated successfully, but these errors were encountered: