仅对英特尔可见 — GUID: wbg1548359148358
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: wbg1548359148358
Ixiasoft
13.5. Intel® HLS Compiler Pro版模拟API(仅测试台)
函数 | 描述 |
---|---|
ihc_hls_enqueue | 此函数将HLS组件的一次调用排入队列。 |
ihc_hls_enqueue_noret | 此函数将HLS组件的一次调用加入队列。当HLS组件的返回类型为 void时,应使用此函数。 |
ihc_hls_component_run_all | 当组件可以接受新调用时,此函数会将组件的所有被列队的调用推送到HDL模拟器的组件中。 |
ihc_hls_sim_reset | 此函数在自动模拟期间向组件发送重置信号。 |
ihc_hls_set_component_wait_cycle | 在观察到指定组件的done信号后,此函数告知模拟处理继续运行指定个数的额外周期(超出默认的100个周期的等待时间)。 |
ihc_hls_enqueue函数
- 句法
- ihc_hls_enqueue(void* retptr, void* funcptr, /*function arguments*/)
- 描述
-
此函数将HLS组件的一次调用加入队列。返回值存储在第一个参数中,该参数应为指向返回类型的指针。直到ihc_hls_component_run_all()被调用,该组件才会运行。
要了解更多信息,请查看教程: <quartus_installdir>/hls/examples/tutorials/usability/enqueue_call.
ihc_hls_enqueue_noret函数
- 句法
- ihc_hls_enqueue_noret(void* funcptr, /*function arguments*/)
- 描述
-
此函数将HLS组件的一次调用加入队列。when the return type of the 当HLS组件的返回类型为void时,请使用该函数。直到ihc_hls_component_run_all()被调用,该组件才会运行。
要了解更多信息,请查看教程: <quartus_installdir>/hls/examples/tutorials/usability/enqueue_call.
ihc_hls_component_run_all函数
- 句法
- ihc_hls_component_run_all (void* funcptr)
- 描述
-
此函数接受指向HLS组件函数的指针。运行时,只要组件可以接受新的调用,组件的所有已列队调用都将尽快推送到HDL模拟器的组件中。
要了解更多信息,请查看教程: <quartus_installdir>/hls/examples/tutorials/usability/enqueue_call.
ihc_hls_sim_reset函数
- 句法
- int ihc_hls_sim_reset(void)
- 描述
-
自动模拟期间,此函数向组件发送重置信号。如果执行了重置,则返回1,否则返回0。
要了解更多信息,请查看教程: <quartus_installdir>/hls/examples/tutorials/component_memories/static_var_init.
ihc_hls_set_component_wait_cycle函数
- 句法
- ihc_hls_set_component_wait_cycle(<component function name>, <# of wait cycles>)
- 描述
-
在观察特定组件的done信号后,此函数告知模拟进程继续运行指定数量的额外周期(超过默认的100个周期的等待时间)。该延迟可以使得比组件函数具有更高延迟的任务函数在模拟期间成功返回其输出。
当您模拟一个使用任务系统的设计时可以使用此函数,其中任务函数的完成与ihc::collect调用并不同步。
默认情况下,在组件置位done信号后,模拟进程会继续模拟额外100个周期以确保所有操作都已传播回测试台。此函数告知指定组件的模拟进程在100个周期的默认等待周期之上继续运行指定的周期数。
模拟API代码实例:
component int foo(int val) { // function definition } component void bar (int val) { // function definition } int main() { // ……. int input = 0; int res[5]; ihc_hls_enqueue(&res, &foo, input); ihc_hls_enqueue_noret(&bar, input); input = 1; ihc_hls_enqueue(&res, &foo, input); ihc_hls_enqueue_noret(&bar, input); ihc_hls_component_run_all(&foo); ihc_hls_component_run_all(&bar); }