how does loop unroll work in hdl coder?
显示 更早的评论
these are matlab resource report generated --more hardware is without loop unroll & less hardware is with loop unroll
回答(1 个)
Kiran Kintali
2020-9-5
0 个投票
These HDL Coder documentation files should explain the behavior.
The coder.hdl.loopspec('unroll') pragma transforms loops by creating multiples copies of the loop body in the RTL design, which allows some or all loop iterations to occur in parallel.
coder.hdl.loopspec('stream') generates a single instance of the loop body in the HDL code and generates additional state machine logic necessary to share the loop body.
类别
在 帮助中心 和 File Exchange 中查找有关 Code Generation 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!