Forum Discussion

WWP00's avatar
WWP00
Icon for New Contributor rankNew Contributor
6 years ago

How many clock cycles to transfer between global and local memory?

For example, suppose we have a local memory array: float local[10]; And a much larger, global memory array. Would we copy like: int memStart = 50; for (int i = 0; i < 10; ++i) local[i] ...