Skip to content

Commit 7d35b7b

Browse files
Fixed a timing problem with multi-cycle functions.
1 parent 742141e commit 7d35b7b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/HLS/module_allocation/allocation_information.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2913,7 +2913,7 @@ double AllocationInformation::estimate_call_delay() const
29132913
}
29142914
else
29152915
{
2916-
call_delay = hls->registered_inputs ? 0 : clock_budget;
2916+
call_delay = clock_budget;
29172917
INDENT_DBG_MEX(
29182918
DEBUG_LEVEL_VERY_PEDANTIC, debug_level,
29192919
"---Minimum slack " +

0 commit comments

Comments
 (0)