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 agoHi,
You may found information here: https://stackoverflow.com/questions/20616844/how-to-transfer-array-data-in-vhdl
I would suggest you post it to there as it involve IEEE std.
Thanks