ecp5: Add 10% safety margin to pip delays
Signed-off-by: David Shah <dave@ds0.me>
This commit is contained in:
parent
1ae722272a
commit
94dc54f4fa
@ -193,8 +193,8 @@ def process_timing_data():
|
|||||||
interconn_data = json.load(f)
|
interconn_data = json.load(f)
|
||||||
for pipclass, pipdata in sorted(interconn_data.items()):
|
for pipclass, pipdata in sorted(interconn_data.items()):
|
||||||
|
|
||||||
min_delay = pipdata["delay"][0]
|
min_delay = pipdata["delay"][0] * 1.1
|
||||||
max_delay = pipdata["delay"][2]
|
max_delay = pipdata["delay"][2] * 1.1
|
||||||
min_fanout = pipdata["fanout"][0]
|
min_fanout = pipdata["fanout"][0]
|
||||||
max_fanout = pipdata["fanout"][2]
|
max_fanout = pipdata["fanout"][2]
|
||||||
if grade == "6":
|
if grade == "6":
|
||||||
|
Loading…
Reference in New Issue
Block a user