Super Sample Rate FIR Resource Utilization

2 ビュー (過去 30 日間)
RobbieC
RobbieC 2020 年 1 月 29 日
コメント済み: RobbieC 2020 年 9 月 25 日
Does HDL coder exploit coefficient symmetry, half-band zero coefficients, and decimation when producing HDL for super sample rater FIR filters?

採用された回答

Bharath Venkataraman
Bharath Venkataraman 2020 年 1 月 31 日
HDL code for the super-sample FIR Filters does optimize for powers of 2, zeros and symmetry. I've attached a simple model which has filters (each with 4 coefficients) processing 4 samples at a time to show the effect of these optimizations.
The _noOpt branch consumes 16 multipliers, the _pow2 branch consumes 8 multipliers (2 coefficients are powers of 2) as does the _zeros branch (with 2 zero coefficients) and the _symm branch consumes 8 multipliers with smaller adders (symmetry optimization).
You can run HDL code generation on the top-levl subsystem and a resource report is generated that will show these numbers for each subsystem below (which have the filters inside).
  1 件のコメント
RobbieC
RobbieC 2020 年 9 月 25 日
Thank you for the response.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeHDL Code Generation についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by