moerjielovecookie

Sawen_Blog

一个普通工科牲的博客网站
x
github
follow
email

Architecture of FIR Filter

Fully Parallel Systolic Architecture#

The fully parallel systolic filter optimizes symmetric coefficients, antisymmetric coefficients, and zero coefficients. The filter's delay is influenced by the symmetry of the filter coefficients. When the symmetric coefficients are absolutely equal, they share the same DSP block. This pairing allows the use of pre-adders in the DSP blocks of Xilinx and Altera during implementation. The structure of a symmetric filter, if not suitable for the symmetric coefficient optimization architecture, is shown in the upper part of the figure below, with the optimized version in the lower part:
fir_arch_systolic_sym.png|500

Fully Parallel Transposed Architecture#

The Fully Parallel Transposed Architecture shares multipliers for any coefficients that are absolutely equal while removing the multipliers required for zero coefficients. The filter delay for this structure is a fixed 6 clk. The upper part of the figure below shows the non-optimized symmetric filter, while the lower part shows the optimized structure:
fir_arch_transposed_sym.png|500

Partly Serial Systolic Architecture (1 < N < L)#

Where N is the delay length and L is the filter order. The partly serial filter requires M=ceil(L/N) pulse units, structured as follows:
fir_arch_systolic_partly_serial.png|500
The filter delay is M+ceil(L/M)+5. If the coefficients in the lookup table corresponding to a multiplier are 0 or a power of 2, the implementation process does not include the multiplier, and the change in power is achieved through shifting.

Fully Serial Systolic Architecture (N ≥ L)#

If the delay length is greater than the filter order, the filter is in a fully serial structure. The filter delay is $L+5$.
fir_arch_systolic_fully_serial.png|500

Loading...
Ownership of this post data is guaranteed by blockchain and smart contracts to the creator alone.