mirror of
https://github.com/YosysHQ/nextpnr.git
synced 2026-02-14 12:04:25 +00:00
nexus: Randomise delay to stop router from getting stuck
Signed-off-by: David Shah <dave@ds0.me>
This commit is contained in:
@@ -1115,7 +1115,7 @@ struct Arch : BaseCtx
|
||||
|
||||
WireId getPipDstWire(PipId pip) const { return canonical_wire(pip.tile, pip_data(pip).to_wire); }
|
||||
|
||||
DelayInfo getPipDelay(PipId pip) const { return getDelayFromNS(0.1); }
|
||||
DelayInfo getPipDelay(PipId pip) const { return getDelayFromNS(0.1 + (pip.index % 30) / 1000.0 ); }
|
||||
|
||||
UpDownhillPipRange getPipsDownhill(WireId wire) const
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user