I am new to CUDA programming so I am curious as to how to do the following:
According to the question here: Using std::vector in cuda device code
we cannot use std::vector. I am trying to pass an argument like std::vector to a kernel. The void *
describes memory pointers on the GPU/ device (cuda terminology).
What is the best way to do so? Maybe void **
? will that work?