nexus: Randomise delay to stop router from getting stuck

Signed-off-by: David Shah <dave@ds0.me>
This commit is contained in:
David Shah 2020-10-03 17:23:48 +01:00
parent 53d1c2c309
commit 75040cdbdf

View File

@ -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
{