Skip to content

Commit

Permalink
Adds preserve_all_attrs to graph conversion call.
Browse files Browse the repository at this point in the history
  • Loading branch information
rlratzel committed Jan 24, 2024
1 parent 180baa8 commit 836d51f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion benchmarks/nx-cugraph/pytest-based/bench_algos.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ def get_graph_obj_for_benchmark(graph_obj, backend_wrapper):
"""
G = graph_obj
if backend_wrapper.backend_name == "cugraph-preconverted":
G = nxcg.from_networkx(G)
G = nxcg.from_networkx(G, preserve_all_attrs=True)
return G


Expand Down
1 change: 1 addition & 0 deletions benchmarks/nx-cugraph/pytest-based/run-2402.sh
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

mkdir -p logs

# benches="$benches ..." pattern is easy to comment out individual runs
benches=

while [[ $1 != "" ]]; do
Expand Down

0 comments on commit 836d51f

Please sign in to comment.