Using the machine model, find the minimum initiation interval and a uniform schedule for the iterations, for the following loop:
for(i =1; iA[i] = B[i-1] + 1;
B[i] = A[i-1] +2;
}
Remember that the counting of iterations is handled by auto-increment of registers, and no operations are needed solely for the counting associated with the for-loop.