Merge branch 'power_and_buffer_analysis' into TA_dynamic_windows

This commit is contained in:
Lukas Steiner
2020-11-25 15:28:59 +01:00

View File

@@ -90,6 +90,13 @@ def memory_idle(connection):
return (idle[0]/clk)
@metric
def memory_delayed(connection):
total = memory_total(connection)
active = memory_active(connection)
idle = memory_idle(connection)
return total - active - idle
@metric
def memory_utilisation_percent_new(connection):
total = memory_total(connection)