使用HLS从c实现霍夫曼编码

时间:2016-08-15 00:25:38

标签: huffman-code hls vivado

当我尝试使用Vivado HLS进行sythnise时,我得到了关于不可合成类型的错误。我的项目是关于霍夫曼编码。

@I [HLS-10] Starting code transformations ...
@I [HLS-10] Checking synthesizability ...
@E [SYNCHK-11] huff.c:17: Constant 'temp' has an unsynthesizable type '[13 x %struct.tnode.0.2.4]*' (possible cause(s): structure variable cannot be decomposed due to unsupported type conversion or memory copy operation).
@E [SYNCHK-11] huff.c:21: Constant 'ptemp' has an unsynthesizable type '[13 x %struct.tnode.0.2.4*]*' (possible cause(s): pointer to pointer or global pointer).
@E [SYNCHK-72] huff.c:24: unsupported c/c++ library function 'qsort'.
@E [SYNCHK-41] huff.c:38: unsupported pointer reinterpretation from type '%struct.tnode.0.2.4 = type { %struct.tnode.0.2.4*, %struct.t...' to type 'i8*' on variable 'ptemp'.
@E [SYNCHK-42] huff.c:47: pointer comparison is not supported.
@I [SYNCHK-10] 5 error(s), 0 warning(s).
@E [HLS-70] Synthesizability check failed. 

在做C sim时也有一些困难。

    **..
...
@I [APCC-3] Tmp directory is apcc_db
@I [APCC-1] APCC is done.
@I [LIC-101] Checked in feature [VIVADO_HLS]
   Generating csim.exe
@E Simulation failed: SIGSEGV.
@E [SIM-1] CSim failed with errors.
4
    while executing
"source C:/Users/qijun/Desktop/Huff/hls/solution1/csim.tcl"
    invoked from within
"hls::main C:/Users/qijun/Desktop/Huff/hls/solution1/csim.tcl"
    ("uplevel" body line 1)
    invoked from within
"uplevel 1 hls::main {*}$args"
    (procedure "hls_proc" line 5)
    invoked from within
"hls_proc $argv"
@I [LIC-101] Checked in feature [VIVADO_HLS] **

附件包括我的"顶级功能"的代码。 我对HLS工具没有经验。有人可以帮我解决这个问题吗?我们如何在vivado HLS的顶级功能中包含数据结构? 谢谢

1 个答案:

答案 0 :(得分:0)

首先,您忘记添加附件或任何代码。

其次,我强烈建议您至少阅读Xilinx文档中Recommended Coding Styles的一些内容,其中明确说明某些类型的C构造不受支持,例如您在输出中看到的那些

所以你可能只想重构或重新编码部分霍夫曼以符合这些标准。