diff options
author | Eddie Hung <eddieh@ece.ubc.ca> | 2018-07-30 19:19:30 -0700 |
---|---|---|
committer | Eddie Hung <eddieh@ece.ubc.ca> | 2018-07-30 19:19:30 -0700 |
commit | a099aca3c203eeea6b6cd093f31089c2a0933927 (patch) | |
tree | ba8e996d2118331bfaf618124da8b831962d1827 /generic | |
parent | d5049bf0eda113db9a218fe855c7e3d7d65b4384 (diff) | |
download | nextpnr-a099aca3c203eeea6b6cd093f31089c2a0933927.tar.gz nextpnr-a099aca3c203eeea6b6cd093f31089c2a0933927.tar.bz2 nextpnr-a099aca3c203eeea6b6cd093f31089c2a0933927.zip |
Modify predictDelay signature
Diffstat (limited to 'generic')
-rw-r--r-- | generic/arch.cc | 12 | ||||
-rw-r--r-- | generic/arch.h | 2 |
2 files changed, 8 insertions, 6 deletions
diff --git a/generic/arch.cc b/generic/arch.cc index f6c264bb..43015685 100644 --- a/generic/arch.cc +++ b/generic/arch.cc @@ -403,12 +403,14 @@ delay_t Arch::estimateDelay(WireId src, WireId dst) const return (dx + dy) * grid_distance_to_delay; } -delay_t Arch::predictDelay(WireId src, WireId dst) const +delay_t Arch::predictDelay(const NetInfo *net_info, const PortRef &sink) const; { - const WireInfo &s = wires.at(src); - const WireInfo &d = wires.at(dst); - int dx = abs(s.x - d.x); - int dy = abs(s.y - d.y); + const auto& driver = net_info->driver; + auto driver_loc = getBelLocation(driver.cell->bel); + auto sink_loc = getBelLocation(sink.cell->bel); + + int dx = abs(driver_loc.x - driver_loc.x); + int dy = abs(sink_loc.y - sink_locy); return (dx + dy) * grid_distance_to_delay; } diff --git a/generic/arch.h b/generic/arch.h index 4e4dd663..0c831004 100644 --- a/generic/arch.h +++ b/generic/arch.h @@ -194,7 +194,7 @@ struct Arch : BaseCtx const std::vector<GroupId> &getGroupGroups(GroupId group) const; delay_t estimateDelay(WireId src, WireId dst) const; - delay_t predictDelay(WireId src, WireId dst) const; + delay_t predictDelay(const NetInfo *net_info, const PortRef &sink) const; delay_t getDelayEpsilon() const { return 0.01; } delay_t getRipupDelayPenalty() const { return 1.0; } float getDelayNS(delay_t v) const { return v; } |