Skip to content

Commit

Permalink
resources: add # instead of 'utilization'
Browse files Browse the repository at this point in the history
Signed-off-by: Alessandro Comodi <acomodi@antmicro.com>
  • Loading branch information
acomodi committed May 7, 2020
1 parent 5f6dcce commit d1dd299
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dataframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def get_clock_dataframe(results):
index = pandas.Index(designs)
return pandas.DataFrame(
{
'clock_names': clock_names,
'clocks': clock_names,
'clock_actual_frequency': actual_frequency,
'clock_requested_frequency': requested_frequency,
'clock_hold_violation': hold_violation,
Expand Down Expand Up @@ -75,7 +75,7 @@ def get_general_dataframe(results):

resources_keys = list(resources.keys())
for key in resources_keys:
resources["{}_utilization".format(key)] = resources.pop(key)
resources["#{}".format(key)] = resources.pop(key)

# Get versions
tools = dict()
Expand Down

0 comments on commit d1dd299

Please sign in to comment.