mirror of
https://github.com/YosysHQ/nextpnr.git
synced 2026-04-18 08:57:45 +00:00
ecp5: Add 10% safety margin to pip delays
Signed-off-by: David Shah <dave@ds0.me>
This commit is contained in:
@@ -193,8 +193,8 @@ def process_timing_data():
|
||||
interconn_data = json.load(f)
|
||||
for pipclass, pipdata in sorted(interconn_data.items()):
|
||||
|
||||
min_delay = pipdata["delay"][0]
|
||||
max_delay = pipdata["delay"][2]
|
||||
min_delay = pipdata["delay"][0] * 1.1
|
||||
max_delay = pipdata["delay"][2] * 1.1
|
||||
min_fanout = pipdata["fanout"][0]
|
||||
max_fanout = pipdata["fanout"][2]
|
||||
if grade == "6":
|
||||
|
||||
Reference in New Issue
Block a user