I read the document about the loop unrolling. It explains that if you set unrolling factor as 1, then the program will work like with #pragma nounrolling.
However, that documents does not include #pragma unroll(0) case.. Since the range of n is 0 to 255, I'm just wondering out of curiosity there is any difference between #pragma unroll(0) and #pragma unroll(1) cases.
I'm using C with icc compiler.
From the Intel documentation:
Based on that, I would make an assumption there is no difference between
#pragma unroll(0) and #pragma unroll(1)as the the code generated would be equivalent.