Given a 2D array of integers, for example
3 3 1 1 1
3 3 3 1 1
3 3 3 3 1
3 3 3 2 2
3 3 7 2 2
is there an efficient GPU algorithm, that produces a list of all occuring numbers? For example
1 2 3 7
for the 2d array above.
The list does not need to be sorted (so 3 2 1 7 for example would be okay as well).
I am quite new to the GPGPU field, so I am sorry if this is an often discussed problem. I couldn't find an elegant solution yet. Any help would be appreciated, thank you!