It turns out the issue had to do with how the resets were being set with the HDL coder. By default the HDL coder gives every delay block an asychronous reset. There is a global setting you can change so that it places synchronous resets instead. Once I did that I was able to map everything into a single DSP slice.
Multiply and add not correctly mapping to a single DSP slice
7 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Justin Kuric
il 25 Mag 2022
Modificato: Jerome Davie
il 21 Giu 2024
The guidelines show that this design synthesizes to a single DSP48E1 slice with no additional logic, but the results I am getting are different.
The synthesized design only uses the multiplier on the DSP slice then includes additional LUTs and registers for the adders. The ports of the DSP slice that could be used for the adders are just tied to ground in the synthesized design despite being able to accomodate data types of these sizes. I am targeting a Virtex 7 device just like in the example and am using MATLAB 2021a with Vivado 2018.2 as the synthesis tool. Is there some setting in the HDL coder that I am missing?
0 Commenti
Risposta accettata
Justin Kuric
il 1 Giu 2022
1 Commento
Steven Hatcher
il 1 Giu 2022
Hi Justin,
That's good to hear. I believe we give some warnings about the reset type depending on the target device that is set. We also have the HDL Code Advisor to detect this situation and give recommendations.
Steven
Più risposte (1)
Steven Hatcher
il 31 Mag 2022
Hi Justin,
Are any of the adders using saturation or rounding logic that a Xilinx DSP48E1 would not natively support? Looking at the generated HDL code for the adders can help determine this.
Steven
2 Commenti
Jerome Davie
il 21 Giu 2024
Modificato: Jerome Davie
il 21 Giu 2024
There is additional info that's helpful for such a use case. I've been schooled on this issue and results are here: https://www.mathworks.com/matlabcentral/answers/2129931-hdl-coder-mult-add-uses-dsp48e1-fabric
Most important take away being that you should set the DSP style flag to 'ON' in the module's HDL block properties. I had found out about and applied the synchronous reset setting, but it still didn't work until that flag was set.
Regards,
Jerome
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!