Can memory read and write operations overlap in CUDA programming?

68 Views Asked by At

I know in CUDA programming, memory reads at different levels can overlap. For example, data transfers from global memory to shared memory and from shared memory to registers can overlap. But can read and write operations at the same memory level overlap, such as overlapping reads and writes to shared memory or global memory?

I checked the CUDA C++ Programming Guide, but couldn't find the relevant content. I think it's not possible, but I'm not entirely sure.

0

There are 0 best solutions below