仅对英特尔可见 — GUID: vth1551563774817
Ixiasoft
1. Intel® HLS Compiler Pro版参考手册
2. 编译器
3. C语言和库支持
4. 组件接口
5. 组件存储器(存储器属性)
6. 组件中的循环
7. 组件并发
8. 任意精度数学支持
9. 组件目标频率(Target Frequency)
10. 任务系统
11. 库
12. 高级硬件综合控制
13. Intel® High Level Synthesis Compiler Pro版参考总结
A. 高级数学源代码库
B. 支持的数学函数
C. Cyclone® V限制
D. Intel® HLS Compiler Pro版参考手册存档
E. Intel® HLS Compiler Pro版参考手册修订历史
13.1. Intel® HLS Compiler Pro版i++命令行参数
13.2. Intel® HLS Compiler Pro版头文件
13.3. Intel® HLS Compiler Pro版编译器定义的预处理器宏
13.4. Intel® HLS Compiler Pro版关键字
13.5. Intel® HLS Compiler Pro版模拟API(仅测试台)
13.6. Intel® HLS Compiler Pro版组件存储器属性
13.7. Intel® HLS Compiler Pro版循环预处理指令
13.8. Intel® HLS Compiler Pro版范围预处理指令
13.9. Intel® HLS Compiler Pro版组件属性
13.10. Intel® HLS Compiler Pro版组件默认值接口
13.11. Intel® HLS Compiler Pro版组件调用接口控制属性
13.12. Intel® HLS Compiler Pro版组件宏
13.13. Intel® HLS Compiler Pro版技术性任务系统API
13.14. Intel® HLS Compiler Pro版管道API
13.15. Intel® HLS Compiler Pro版流输入接口
13.16. Intel® HLS Compiler Pro版流输出接口
13.17. Intel® HLS Compiler Pro版存储器映射接口
13.18. Intel® HLS Compiler Pro版加载-存储单元控制
13.19. Intel® HLS Compiler Pro版任意精度数据类型
仅对英特尔可见 — GUID: vth1551563774817
Ixiasoft
6.6. 循环迭代推测(speculated_iterations预处理指令
通过speculated_iterations指令,您可以调整循环的speculated iterations次数。推测迭代是在计算循环退出条件时启动的循环迭代。调整推测迭代的次数有助于在组件中实现更高效的循环流水线。
Intel® HLS Compiler确定以每个循环为基础推测迭代次数。您可以在High Level Design Report (report.html)中查看Loop Analysis Report内一个循环的推测迭代次数。
对于退出条件计算成为瓶颈的循环(如Loop Analysis Report中所示),请考虑使用speculated_iterations指令增加推测的迭代次数。如果发现循环中的其它瓶颈,则增加推测迭代次数可能不会改善循环II。
对于频繁调用的低延迟循环体循环(例如,行程计数较短的内循环),您可能需要使用speculated_iterations指令来减少推测迭代次数,从而减少设计开销。但是,将推测迭代的次数设置得过低可能会增加循环II,因为没有足够的时间来评估退出条件。
以下实例显示使用speculated_iterations指令后的,请查看如下教程:
<quartus_installdir>/hls/examples/tutorials/loop_controls/speculated_iterations <quartus_installdir>/hls/examples/tutorials/loop_controls/small_speculated_iterations