From b435655ecd7eb2daaa12bb3c8e4cb69beea6e863 Mon Sep 17 00:00:00 2001 From: Christoph Berganski Date: Sun, 28 Jan 2024 16:31:43 +0100 Subject: [PATCH] Fix table row of the DSP48 post synthesis resource utilization report According to the last synthesis I ran using Vitis/Vivado 2022.2, the DSP48 utilization seems to be reported in row 10 of the XML table. --- src/finn/analysis/fpgadataflow/post_synth_res.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/finn/analysis/fpgadataflow/post_synth_res.py b/src/finn/analysis/fpgadataflow/post_synth_res.py index 7b65b60fa7..f10d83158f 100644 --- a/src/finn/analysis/fpgadataflow/post_synth_res.py +++ b/src/finn/analysis/fpgadataflow/post_synth_res.py @@ -65,7 +65,7 @@ def post_synth_res(model, override_synth_report_filename=None): "FF": 6, "BRAM_36K": 7, "BRAM_18K": 8, - "DSP48": 9, + "DSP48": 10, } restype_to_ind_vitis = { "LUT": 4,