diff options
Diffstat (limited to 'nexus/arch.h')
-rw-r--r-- | nexus/arch.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/nexus/arch.h b/nexus/arch.h index fcb864f6..deb9b6db 100644 --- a/nexus/arch.h +++ b/nexus/arch.h @@ -1192,7 +1192,7 @@ struct Arch : BaseArch<ArchRanges> delay_t estimateDelay(WireId src, WireId dst) const override; delay_t predictDelay(const NetInfo *net_info, const PortRef &sink) const override; delay_t getDelayEpsilon() const override { return 20; } - delay_t getRipupDelayPenalty() const override { return 120; } + delay_t getRipupDelayPenalty() const override; delay_t getWireRipupDelayPenalty(WireId wire) const; float getDelayNS(delay_t v) const override { return v * 0.001; } delay_t getDelayFromNS(float ns) const override { return delay_t(ns * 1000); } @@ -1241,6 +1241,10 @@ struct Arch : BaseArch<ArchRanges> // ------------------------------------------------- // Arch-specific global routing void route_globals(); + // ------------------------------------------------- + // Override for DSP clusters + bool getClusterPlacement(ClusterId cluster, BelId root_bel, + std::vector<std::pair<CellInfo *, BelId>> &placement) const override; // ------------------------------------------------- |