仅对英特尔可见 — GUID: ewa1462824715524
Ixiasoft
1. Intel® High Level Synthesis Compiler Pro Edition用户指南
2. Intel® High Level Synthesis (HLS) Compiler Pro Edition概述
3. 创建高级综合组件和测试台
4. 验证设计的功能性
5. 优化和完善您的组件
6. 通过仿真验证您的IP
7. 使用Intel Quartus Prime Pro Edition综合您的组件IP
8. 将您的IP集成到一个系统中
A. 查看High-Level Design Reports (report.html)
B. Intel® HLS Compiler Pro Edition限制
C. Intel® HLS Compiler Pro Edition用户指南归档
D. Intel® HLS Compiler Pro Edition用户指南文档修订历史
仅对英特尔可见 — GUID: ewa1462824715524
Ixiasoft
6.3.2. 显式函数调用和排队函数调用的比较
ihc_hls_enqueue和ihc_hls_enqueue_noret函数允许在组件启动间隔(II)为1的情况下,通过流水线方式在每个周期开始新的组件调用。如果组件II大于1,那么下一次组件调用将在II个周期后开始。
无enqueue函数调用的组件dut信号波形图显示了组件dut的信号波形。测试台不包括任何enqueue函数调用。
#include "HLS/hls.h" #include <stdio.h> component int dut(int a, int b) { return a*b; } int main (void) { int x1, x2, x3; x1 = dut(1, 2); x2 = dut(3, 4); x3 = dut(5, 6); printf("x1 = %d, x2 = %d, x3 = %d\n", x1, x2, x3); return 0; }
图 2. 没有排队函数调用的组件dut的信号波形图

包含排队函数调用的组件dut的信号波形图显示了当测试台包含排队函数调用时组件dut的信号波形。观察组件如何在每个时钟周期传递新数据,并将该波形与之前的波形进行比较。
#include "HLS/hls.h" #include <stdio.h> component int dut(int a, int b) { return a*b; } int main (void) { int x1, x2, x3; ihc_hls_enqueue(&x1, &dut, 1, 2); ihc_hls_enqueue(&x2, &dut, 3, 4); ihc_hls_enqueue(&x3, &dut, 5, 6); ihc_hls_component_run_all(&dut); printf("x1 = %d, x2 = %d, x3 = %d\n", x1, x2, x3); return 0; }
图 3. 包含排队函数调用的组件dut的信号波形图
