Hello, I am new to GPU programming. Currently I’m trying to develop a system using CUDA C. However, my question about global memory is can different threads read the same global memory location at the same time?
Yes! You can read more about memory coalescence just by doing simple googling and that’ll teach you how global loads in CUDA work.