Skip to content

Commit 2fe2538

Browse files
committed
[TODO] Timing: mark place for fe->re / re->fe timing modifications
Signed-off-by: Pawel Czarnecki <pczarnecki@antmicro.com>
1 parent e262b2a commit 2fe2538

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vpr/src/timing/atom_delay_calc.inl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,10 @@ inline float AtomDelayCalc::atom_clock_to_q_delay(const AtomPinId /*clock_pin*/,
7171
VTR_ASSERT(gpin->type == PB_PIN_SEQUENTIAL);
7272

7373
if (delay_type == DelayType::MAX) {
74-
return gpin->tco_max;
74+
return gpin->tco_max; // + half of clock period
7575
} else {
7676
VTR_ASSERT(delay_type == DelayType::MIN);
77-
return gpin->tco_min;
77+
return gpin->tco_min; // - half of clock period
7878
}
7979
}
8080

0 commit comments

Comments
 (0)