You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to run leiden clustering on ~40 M cells. During the run I see the GPU is idle in terms of power usage and is forever to perform the leiden clustering. It takes time to execute the code below. Could I please know how can I sort out the issue?
rsc.tl.leiden(adatafilt) ->
def leiden (args): ->
g = _create_graph(adjacency, use_weights) ->
`def _create_graph(adjacency, use_weights=True):
from cugraph import Graph
Hello @rilango @cjnolet @mlgill @raydouglass @pentschev,
I am trying to run leiden clustering on ~40 M cells. During the run I see the GPU is idle in terms of power usage and is forever to perform the leiden clustering. It takes time to execute the code below. Could I please know how can I sort out the issue?
rsc.tl.leiden(adatafilt)
->def leiden (args):
->g = _create_graph(adjacency, use_weights)
->`def _create_graph(adjacency, use_weights=True):
from cugraph import Graph
Takes forever to execute the below line
g.from_cudf_edgelist(df, source="source", destination="destination", weight="weights")
The text was updated successfully, but these errors were encountered: