Si può usare il codice C++ in un programma CUDA C? Quando includo il file di intestazione iostream, il compilatore confonde la chiamata al kernel.
CUDA non ha il supporto di STL. Vector semplicemente non funziona in un kernel CUDA. La cosa più vicina deve essere la libreria Thrust. For example, thrust::device_vector vect; but it doesn’t work in device kernel code. Its just an STL-like structure with a GPU backed storage so that you can do the math on it … Leggi tutto