aboutsummaryrefslogtreecommitdiffstats
path: root/fpga_interchange/arch.cc
diff options
context:
space:
mode:
authorKeith Rothman <537074+litghost@users.noreply.github.com>2021-04-01 15:18:17 -0700
committerKeith Rothman <537074+litghost@users.noreply.github.com>2021-04-06 10:42:05 -0700
commitc11ad31393389e0a16d84c2934332ea3755de60c (patch)
treefc54bc6bec71919b29288f899587c871258c1cce /fpga_interchange/arch.cc
parent9b82ded77ba80726acb9b846bdbc7d7b1e963ec6 (diff)
downloadnextpnr-c11ad31393389e0a16d84c2934332ea3755de60c.tar.gz
nextpnr-c11ad31393389e0a16d84c2934332ea3755de60c.tar.bz2
nextpnr-c11ad31393389e0a16d84c2934332ea3755de60c.zip
[interchange] Scale edge cost of pseudo pips.
Previous pseudo pips were the same cost as regular pips, but this is definitely too fast, and meant that the router was prefering them. Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com>
Diffstat (limited to 'fpga_interchange/arch.cc')
-rw-r--r--fpga_interchange/arch.cc11
1 files changed, 11 insertions, 0 deletions
diff --git a/fpga_interchange/arch.cc b/fpga_interchange/arch.cc
index 5b38a879..f9209922 100644
--- a/fpga_interchange/arch.cc
+++ b/fpga_interchange/arch.cc
@@ -1959,6 +1959,17 @@ void Arch::explain_bel_status(BelId bel) const
site.explain(getCtx());
}
+DelayQuad Arch::getPipDelay(PipId pip) const {
+ // FIXME: Implement when adding timing-driven place and route.
+ const auto & pip_data = pip_info(chip_info, pip);
+
+ // Scale pseudo-pips by the number of wires they consume to make them
+ // more expensive than a single edge. This approximation exists soley to
+ // make the non-timing driven solution avoid thinking that pseudo-pips
+ // are the same cost as regular pips.
+ return DelayQuad(100*(1+pip_data.pseudo_cell_wires.size()));
+}
+
// Instance constraint templates.
template void Arch::ArchConstraints::bindBel(Arch::ArchConstraints::TagState *, const Arch::ConstraintRange);
template void Arch::ArchConstraints::unbindBel(Arch::ArchConstraints::TagState *, const Arch::ConstraintRange);