Centrality#

Betweenness Centrality#

single-GPU#

cugraph.centrality.betweenness_centrality(G)

Compute the betweenness centrality for all vertices of the graph G.

cugraph.centrality.edge_betweenness_centrality(G)

Compute the edge betweenness centrality for all edges of the graph G.

multi-GPU#

cugraph.dask.centrality.betweenness_centrality

Katz Centrality#

single-GPU#

cugraph.centrality.katz_centrality(G[, ...])

Compute the Katz centrality for the nodes of the graph G.

multi-GPU#

cugraph.dask.centrality.katz_centrality.katz_centrality(...)

Compute the Katz centrality for the nodes of the graph G.

Degree Centrality#

single-GPU#

cugraph.centrality.degree_centrality(G[, ...])

Computes the degree centrality of each vertex of the input graph.

multi-GPU#

Eigenvector Centrality#

single-GPU#

cugraph.centrality.eigenvector_centrality(G)

Compute the eigenvector centrality for a graph G.

multi-GPU#

cugraph.dask.centrality.eigenvector_centrality.eigenvector_centrality(...)

Compute the eigenvector centrality for a graph G.