仅对英特尔可见 — GUID: wvo1567186870704
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: wvo1567186870704
Ixiasoft
12.2. hls_fpga_reg()函数
某些情况下,明确要求编译器在操作数和函数调用的返回值之间插入寄存器阶段有助于提高组件性能。使用hls_fpga_reg()函数在函数调用的操作数和返回值之间插入至少一个寄存器。
通常,您不需要使用此函数即可从组件获得所需的性能。
要有效使用hls_fpga_reg()函数,您必须了解数据路径的各个部分如何被放置在FPGA器件上,并且您通常将hls_fpga_reg()函数用于如下用途:
- 断开数据路径中空间上相距较远的部分之间的关键路径,例如大型脉动阵列的处理单元之间的关键路径。
- 减少由于组件实现中空间相距较远的部分对布局和布线工作造成的压力。
如果需要详细了解hls_fpga_reg()函数,请查看次教程,具体查看位置如下:
<quartus_installdir>/hls/examples/tutorials/best_practices/fpga_reg
- 句法
-
Thls_fpga_reg(T op)
其中,T可是是任意大小的类型
- 描述
-
hls_fpga_reg()函数指示 Intel® HLS Compiler在信号路径上插入至少一个硬件流水线寄存器,将操作数分配给返回值。该内置函数作为赋值操作运行,其中将操作数分配给返回值。除了标准赋值操作运行之外,赋值操作没有隐含的语义或功能含义。
- 使用说明
-
您可以嵌套hls_fpga_reg()函数调用来增加分配路径上插入寄存器的最少数量。由于每个函数调用都保证插入至少一个寄存器阶段,因此嵌套调用的次数提供了寄存器数量的较低下限。
例如,下面的代码片段告知编译器在分配路径上插入至少两个寄存器。
int out=hls_fpga_reg(hls_fpga_reg(in));
编译器在路径上插入两个或更多个寄存器。