Is there any example of static_multimap executing retrieve() in a custom kernel? #548
-
Is there any example of static_multimap executing retrieve() in a custom kernel? I found it is quite different from insert, involving buffering. I want to know what does "// Final flush of output buffer" mean in kernels.cuh? Where are the results stored before this? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
Related to #528. The current device |
Beta Was this translation helpful? Give feedback.
-
@avithemad would it be possible for you to switch to the new |
Beta Was this translation helpful? Give feedback.
Related to #528.
The current device
retrieve
is designed to write all matches for a given key efficiently. The fact that you need to write a custom kernel implies thatfor_each
is probably a better fit as opposed toretrieve
. We will put up the newstatic_multimap
having this feature in the next few weeks. Will keep you posted.