Forum Discussion
WWP00
New Contributor
7 years agoWhat is the most effective way to copy subsets of arrays between local and global 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] ...
KennyT_altera
Super Contributor
7 years agoYou can refer to https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/hb/opencl-sdk/archives/aocl-best-practices-guide-15.1.pdf page 1-47.
Transferring Loop-Carried Dependency to Local Memory
For more queries, can you put this to the correct category fall under open cl? https://forums.intel.com/s/topic/0TO0P0000001AUUWA2/intel-high-level-design
Thanks