I am trying to unroll this loop by a factor of 2.
for(i=0; i<100; i++){ x[i] = y[i] + z[i]; z[i] = y[i] + a[i]; z[i+1] = y[i] * a[i]; }
I