Circular Buffering for FIR Filter
- No support for modulo addressing. How to avoid checking for wraparound at each iteration?
- Find wraparound point outside the loop since it is constant over the duration of the loop
- Split the loop into two loops that don’t wrap
Loop 1 processes k samples
Loop 2 processes n-k samples