Skip to content

Commit

Permalink
Update notebooks/demo/accelerating_networkx.ipynb
Browse files Browse the repository at this point in the history
Co-authored-by: Erik Welch <[email protected]>
  • Loading branch information
nv-rliu and eriknw authored Oct 1, 2024
1 parent a80c43d commit e3c6b8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion notebooks/demo/accelerating_networkx.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@
"id": "z1hxut3GTj5A"
},
"source": [
"You may have noticed that using the `nx-cugraph` backend resulted in a slightly slower execution time. This is not surprising when working with a graph this small, since the overhead of converting the graph for the first time and launching the algorithm kernel on the GPU is actually significantly more than the computation time itself. We'll see later that this overhead is negligeble when compared to the time saved when running on a GPU for larger graphs.\n",
"You may have noticed that using the `nx-cugraph` backend resulted in a slightly slower execution time. This is not surprising when working with a graph this small, since the overhead of converting the graph for the first time and launching the algorithm kernel on the GPU is actually significantly more than the computation time itself. We'll see later that this overhead is negligible when compared to the time saved when running on a GPU for larger graphs.\n",
"\n",
"Since we've enabled graph conversion caching, we can see that if we re-run the same call the execution time is noticeably shorter."
]
Expand Down

0 comments on commit e3c6b8b

Please sign in to comment.