aboutsummaryrefslogtreecommitdiffstats
path: root/ice40/arch.h
diff options
context:
space:
mode:
authorEddie Hung <eddieh@ece.ubc.ca>2018-07-30 19:19:30 -0700
committerEddie Hung <eddieh@ece.ubc.ca>2018-07-30 21:51:30 -0700
commita82f6f410595de26e82eaf4818e41036f0bc2f9c (patch)
tree22620c1be70ce79387d8309ccb46aceb295db0fa /ice40/arch.h
parente4b044da52ce7d8fed2e461bec09c86cb293566d (diff)
downloadnextpnr-a82f6f410595de26e82eaf4818e41036f0bc2f9c.tar.gz
nextpnr-a82f6f410595de26e82eaf4818e41036f0bc2f9c.tar.bz2
nextpnr-a82f6f410595de26e82eaf4818e41036f0bc2f9c.zip
Modify predictDelay signature
Diffstat (limited to 'ice40/arch.h')
-rw-r--r--ice40/arch.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ice40/arch.h b/ice40/arch.h
index 1725d181..57089ed7 100644
--- a/ice40/arch.h
+++ b/ice40/arch.h
@@ -684,7 +684,7 @@ struct Arch : BaseCtx
// -------------------------------------------------
delay_t estimateDelay(WireId src, WireId dst) const;
- delay_t predictDelay(WireId src, WireId dst) const;
+ delay_t predictDelay(const NetInfo *net_info, const PortRef &sink) const;
delay_t getDelayEpsilon() const { return 20; }
delay_t getRipupDelayPenalty() const { return 200; }
float getDelayNS(delay_t v) const { return v * 0.001; }