Altera_Forum
Honored Contributor
8 years agoReport Loop Analysis NDrange threads
Hello everyone
Im struggling to find what means the Details tab in Loop Analysis section of the report, saying nd-range: thread capacity = 303 example 2Dimension Kernel:___Kernel(__global short const * restrict input_a,__global short const * restrict input_b)
short aux;
int row = get_global_id(1);
int col = get_global_id(0);
int width = get_global_size(0);
for(int j=get_global_id(1); j < get_global_size(0); j++){
aux = input_a;
input_b += aux;
}
I only can run a maximum of 303 work-items? And what causes that "constraint" on the code ? :confused: