Viewon01
unread,Aug 8, 2011, 11:27:12 AM8/8/11Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to clpp
I'm currently trying to implement a multi-count algorithm. So, I
explain :
I have a dataset with 'int' values where the first byte is a key
(1,2,4,8,16 are possibles values).
So, I need to sort the data set but also being able to 'count' the
number of instances for each key.
I'm currently trying, a simple count can be done with a 'local
counting' and then a scan.
But for multi-count (in one scan only) it is more difficult, mainly
due to local memory allocation constraints !
So, if you know a papers/algorithm about this, I'm very interested.
Thx
Krys
BTW: I have commit the 'count' algorithm. It is not tested but
contains 99% of the logic !