I had a debate today with some of my colleagues about what the best data structure would be to load 10k arrays of length 512 into CUDA memory.
The goal is to make these one dimensional arrays searchable.
so they need to be easily traversal.
We couldn’t agree on one answer so here is the question to everyone.
What would you use to load 10k arrays of length 512 into CUDA memory?
array[10000][512], linked list, vectors etc… ?