├── .github └── workflows │ └── verify.yml ├── LICENSE ├── README.md ├── hdl ├── cic_d.sv ├── cic_functions.vh ├── cic_i.sv ├── comb.sv ├── core_config.tcl ├── downsampler.sv ├── downsampler_variable.sv └── integrator.sv ├── legacy_stuff ├── CIC_filter_ug.odt └── cic_core_latest.tar.gz ├── model └── cic_d_model.py ├── requirements.txt ├── tests ├── Makefile ├── spectral_analysis.py ├── test_cic_d.py └── verilator_waiver.vlt └── tools ├── calculate_register_pruning.py ├── register_pruning_analysis.py └── register_pruning_parameter_calculator.py /.github/workflows/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catkira/CIC/HEAD/.github/workflows/verify.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catkira/CIC/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catkira/CIC/HEAD/README.md -------------------------------------------------------------------------------- /hdl/cic_d.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catkira/CIC/HEAD/hdl/cic_d.sv -------------------------------------------------------------------------------- /hdl/cic_functions.vh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catkira/CIC/HEAD/hdl/cic_functions.vh -------------------------------------------------------------------------------- /hdl/cic_i.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catkira/CIC/HEAD/hdl/cic_i.sv -------------------------------------------------------------------------------- /hdl/comb.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catkira/CIC/HEAD/hdl/comb.sv -------------------------------------------------------------------------------- /hdl/core_config.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catkira/CIC/HEAD/hdl/core_config.tcl -------------------------------------------------------------------------------- /hdl/downsampler.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catkira/CIC/HEAD/hdl/downsampler.sv -------------------------------------------------------------------------------- /hdl/downsampler_variable.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catkira/CIC/HEAD/hdl/downsampler_variable.sv -------------------------------------------------------------------------------- /hdl/integrator.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catkira/CIC/HEAD/hdl/integrator.sv -------------------------------------------------------------------------------- /legacy_stuff/CIC_filter_ug.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catkira/CIC/HEAD/legacy_stuff/CIC_filter_ug.odt -------------------------------------------------------------------------------- /legacy_stuff/cic_core_latest.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catkira/CIC/HEAD/legacy_stuff/cic_core_latest.tar.gz -------------------------------------------------------------------------------- /model/cic_d_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catkira/CIC/HEAD/model/cic_d_model.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catkira/CIC/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catkira/CIC/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/spectral_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catkira/CIC/HEAD/tests/spectral_analysis.py -------------------------------------------------------------------------------- /tests/test_cic_d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catkira/CIC/HEAD/tests/test_cic_d.py -------------------------------------------------------------------------------- /tests/verilator_waiver.vlt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catkira/CIC/HEAD/tests/verilator_waiver.vlt -------------------------------------------------------------------------------- /tools/calculate_register_pruning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catkira/CIC/HEAD/tools/calculate_register_pruning.py -------------------------------------------------------------------------------- /tools/register_pruning_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catkira/CIC/HEAD/tools/register_pruning_analysis.py -------------------------------------------------------------------------------- /tools/register_pruning_parameter_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catkira/CIC/HEAD/tools/register_pruning_parameter_calculator.py --------------------------------------------------------------------------------