nexus: Randomise delay to stop router from getting stuck

Signed-off-by: David Shah <[email protected]>
This commit is contained in:
David Shah
2020-11-30 08:45:27 +00:00
parent 53d1c2c309
commit 75040cdbdf
+1 -1
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
{