Pramod Shenoy

Results 10 comments of Pramod Shenoy

Thanks @PointKernel ! Can you please confirm if this line is logically correct if we need to override the Cooperative Group size - ``` cuco::static_multimap map{capacity, cuco::sentinel::empty_key{empty_key_sentinel}, cuco::sentinel::empty_value{empty_value_sentinel}}; ```

Hello @PointKernel Sorry to continue on this closed thread but I think it is related to the use case. What is the expected behavior of multimap if `static_multimap::device_mutable_view::insert()` is called...

However, the same key-value pair should not be inserted twice right? I am seeing the same key-value pair is inserted twice and they are the only entries in the `cuco::multi_map`

Thank you @PointKernel and @jrhemstad, I just realized that. I was under the impression `std::multimap` ensures Key-Value pair uniqueness. Do you have any recommendations to tackle this problem - We...

The keys may not be unique, but the Key-Value pair that we insert would be unique always. We would not want the same Key-Value pair being inserted multiple times either...

In an ideal scenario, we would want to store a key and a list of values associated with it. If we use a set, then would have to store the...

> Hm, I'm confused. > > If you want to store multiple values associated with the same key, then you'd want a multi map. But you also to want to...

Thanks a lot for the suggestions! Our system basically uses CUB like block wide functions with 128 threads and each thread handling 4 items. This is used for functions like...

Hi @PointKernel @jrhemstad I was trying to use the `device_view` version of `retrieve()` and needed some help. Is there an example usage of the API that I can refer to?...