You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After going into zynq/hls/mmult_float and running vivado_hls -f hls.tcl, the numbers in my report, without changing anything, are different from expected (what's given in the assignment). I ran multiple times. It does seem to be using the correct device (xc7z020clg484-1). Given we're doing optimizations, does this difference matter?
It looks (from my naive investigation) like the L3 inner loop has 11 instead of 10 iteration latency, which bumps up the overall latency by 10%.
Here's what I get:
Latency
expected:
+--------+--------+--------+--------+---------+
| Latency | Interval | Pipeline|
| min | max | min | max | Type |
+--------+--------+--------+--------+---------+
| 209851| 209851| 209852| 209852| none |
+--------+--------+--------+--------+---------+
mine (about 10% slower):
+--------+--------+--------+--------+---------+
| Latency | Interval | Pipeline|
| min | max | min | max | Type |
+--------+--------+--------+--------+---------+
| 230331| 230331| 230332| 230332| none |
+--------+--------+--------+--------+---------+
After going into
zynq/hls/mmult_float
and runningvivado_hls -f hls.tcl
, the numbers in my report, without changing anything, are different from expected (what's given in the assignment). I ran multiple times. It does seem to be using the correct device (xc7z020clg484-1
). Given we're doing optimizations, does this difference matter?It looks (from my naive investigation) like the
L3
inner loop has 11 instead of 10 iteration latency, which bumps up the overall latency by 10%.Here's what I get:
Latency
expected:
mine (about 10% slower):
Utilization
expected:
mine (
FF
/LUT
higher):Loop performance
expected:
mine (
L1
/L2
/L3
are slower---might all be stemming fromL3
having 11 instead of 10 iteration latency?):The text was updated successfully, but these errors were encountered: