mirror of https://github.com/YosysHQ/nextpnr.git
Do not use actual pip delay, determine best by number of passed pips
This commit is contained in:
parent
48cb371d27
commit
c66e422dd0
|
|
@ -199,8 +199,10 @@ void GateMateImpl::route_clock()
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
backtrace[src] = uh;
|
backtrace[src] = uh;
|
||||||
auto delay = ctx->getDelayNS(ctx->getPipDelay(uh).maxDelay() + ctx->getWireDelay(src).maxDelay() +
|
//auto delay = ctx->getDelayNS(ctx->getPipDelay(uh).maxDelay() + ctx->getWireDelay(src).maxDelay() +
|
||||||
ctx->getDelayEpsilon());
|
// ctx->getDelayEpsilon());
|
||||||
|
// Do not use actual delay, enough is to know number of passed pips
|
||||||
|
auto delay = ctx->getDelayNS(ctx->getDelayEpsilon());
|
||||||
visit.push(QueuedWire(src, curr.delay + delay));
|
visit.push(QueuedWire(src, curr.delay + delay));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue