diff --git a/benchmarks/nx-cugraph/pytest-based/create_results_summary_page.py b/benchmarks/nx-cugraph/pytest-based/create_results_summary_page.py index 3a23680cb60..0b2482c43ee 100644 --- a/benchmarks/nx-cugraph/pytest-based/create_results_summary_page.py +++ b/benchmarks/nx-cugraph/pytest-based/create_results_summary_page.py @@ -153,6 +153,14 @@ def get_system_info(): "hollywood", "soc-livejournal1", ] + # dataset, # Node, # Edge, Directed info + dataset_meta = { + "netscience": ["1,461", "5,484", "Yes"], + "email_Eu_core": ["1,005", "25,571", "Yes"], + "cit-patents": ["3,774,768", "16,518,948", "Yes"], + "hollywood": ["1,139,905", "57,515,616", "No"], + "soc-livejournal1": ["4,847,571", "68,993,773", "Yes"], + } print( """ @@ -193,10 +201,12 @@ def get_system_info():
""" + | Dataset Nodes Edges Directed | """
)
for ds in ordered_datasets:
- print(f" {ds} | ") + print( + f"{ds} {dataset_meta[ds][0]} {dataset_meta[ds][1]} {dataset_meta[ds][2]} | "
+ )
print(
"""
---|