Intel® 高层次综合编译器专业版Pro版: 参考手册

ID 683349
日期 12/04/2023
Public
文档目录

13.5. Intel® HLS Compiler Pro版模拟API(仅测试台)

表 41.   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);
}