Skip to content

Commit

Permalink
use host_processors_per_node in final report (#897)
Browse files Browse the repository at this point in the history
* use host_processors_per_node in final report

* report per node processors

* fix typo
  • Loading branch information
guschmue authored Apr 6, 2021
1 parent 1227cb1 commit 8b58587
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/submission/generate-final-report.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def main():
df['Accelerator'] = df['Accelerator'].apply(lambda x: x if x != "-" else "")
df['a#'] = df['a#'].apply(lambda x: int(x) if x != "" else 0)
df['a#'] = df['a#'].apply(lambda x: x if x > 0 else "")
df['p#'] = df.apply(lambda x: int(x['host_processor_core_count']) * int(x['host_processors_per_node']), axis=1)
df['p#'] = df.apply(lambda x: int(x['host_processors_per_node']) * int(x['number_of_nodes']), axis=1)

# details url
base_url = "https://github.com/mlcommons/submissions_inference_1_0/tree/master"
Expand Down

0 comments on commit 8b58587

Please sign in to comment.