12-22-2019 06:24 AM
12-24-2019 02:32 AM
As far as I can tell, you've got a triple-nested loop, and you've only specified a tripcount on the inner loop. You need to specify it on the other two as well. In addition to that, I suspect that you're using floating-point operations here. These may not have fixed latency.
12-22-2019 09:35 PM
can you please share complete code to easily reproduce? Which version of Vivado HLs you are trying?
Regards
Viswanadh
12-24-2019 02:32 AM
As far as I can tell, you've got a triple-nested loop, and you've only specified a tripcount on the inner loop. You need to specify it on the other two as well. In addition to that, I suspect that you're using floating-point operations here. These may not have fixed latency.
12-24-2019 06:02 PM
Yeah, you are quite right. I specified it on the middle loop ,then it works. Thanks