仅对英特尔可见 — GUID: qec1622222606456
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: qec1622222606456
Ixiasoft
8.2.1. 运算中的任意精度定点Literal(字面常量)
当您使用ac_fixed数据类型来声明组件中的literal时,编译器会将literal进行扩展,无论您为ac_fixed literal设置怎样的大小。为了避免编译器扩展literal,请将literal转换为ac_fixed数据类型。
例如,以下代码片段中的literal被视为double数据类型:
Using Fixed12 = ac_fixed<12, 6, true>; component Fixed12 threshold_vanilla(Fixed12 a){ if (a < 12.7) { return a; } else { return 12.7; } }
在此代码片段中,12位ac_fixed值与12.7进行比较。literal(字面常量)12.7被视为double,值为12.699999…。此literal被转换为定点,以便与a对比,但是因为literal不受约束,编译器会选择一个较大的定点值,这样会导致较大的比较:
您可以通过将literal(字面常量)12.7强制转换为适当大小的ac_fixed数据类型:
Using Fixed12 = ac_fixed<12, 6, true>; component Fixed12 threshold_cast(Fixed12 a){ if (a < (Fixed12)12.7) { return a; } else { return 12.7; } }
关于选择单精度literal和函数而非双精度副本(counterpart)的影响的更多详细信息,请查看以下教程:
<quartus_installdir>//hls/examples/tutorials/best_practices/single_vs_double_precision_math