Forum Discussion
Altera_Forum
Honored Contributor
8 years agohow to understand burst sizes info from profiler
hi, The profiler is showing me the following measurements for the read on the "K_contributors" global arg: Bandwidth: 0.1 MB/s, 100 % efficiency Average Burst Size: 2.0 (Max Burst size...
Altera_Forum
Honored Contributor
8 years agoYou should unroll the loop so that the compiler would infer a wider port to memory, allowing for larger burst size. There is little to no runtime coalescing done for single work-item kernels and hence, you should not expect a large burst size without unrolling, just because the accesses are consecutive.