diff options
author | myrtle <gatecat@ds0.me> | 2023-01-18 17:19:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-18 17:19:20 +0100 |
commit | dc2dac1f9e2ca23c3beac8d7f6db9aebaec23e31 (patch) | |
tree | d3224d8cb266cc68eb46a15e4cc9426f3c704338 /common/kernel/context.h | |
parent | a46afc6ff8aca9a4b9275b3385bfec70f008e10b (diff) | |
parent | 60793266334639144a9a5f8b7b0855c811ccd087 (diff) | |
download | nextpnr-dc2dac1f9e2ca23c3beac8d7f6db9aebaec23e31.tar.gz nextpnr-dc2dac1f9e2ca23c3beac8d7f6db9aebaec23e31.tar.bz2 nextpnr-dc2dac1f9e2ca23c3beac8d7f6db9aebaec23e31.zip |
Merge pull request #1078 from YosysHQ/gatecat/route-delay-quad
context: Add getNetinfoRouteDelayQuad
Diffstat (limited to 'common/kernel/context.h')
-rw-r--r-- | common/kernel/context.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/kernel/context.h b/common/kernel/context.h index 4a5667d0..b4e7920d 100644 --- a/common/kernel/context.h +++ b/common/kernel/context.h @@ -58,6 +58,7 @@ struct Context : Arch, DeterministicRNG size_t getNetinfoSinkWireCount(const NetInfo *net_info, const PortRef &sink) const; WireId getNetinfoSinkWire(const NetInfo *net_info, const PortRef &sink, size_t phys_idx) const; delay_t getNetinfoRouteDelay(const NetInfo *net_info, const PortRef &sink) const; + DelayQuad getNetinfoRouteDelayQuad(const NetInfo *net_info, const PortRef &sink) const; // provided by router1.cc bool checkRoutedDesign() const; |