Skip to content

Commit

Permalink
revert 634a762
Browse files Browse the repository at this point in the history
  • Loading branch information
aMahanna committed Apr 28, 2024
1 parent 634a762 commit e467196
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions nx_arangodb/algorithms/centrality/betweenness.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import os

from networkx.algorithms.centrality import betweenness as nx_betweenness

from nx_arangodb.convert import _to_graph as _to_nx_arangodb_graph
Expand Down Expand Up @@ -29,14 +27,12 @@
_plc="betweenness_centrality",
)
def betweenness_centrality(
G, k=None, normalized=True, weight=None, endpoints=False, seed=None
G, k=None, normalized=True, weight=None, endpoints=False, seed=None, run_on_gpu=True
):
print("ANTHONY: Calling betweenness_centrality from nx_arangodb")

run_on_gpu = os.environ.get("RUN_ON_GPU", "false").lower()

# 1.
if GPU_ENABLED and run_on_gpu == "true":
if GPU_ENABLED and run_on_gpu:
print("ANTHONY: GPU is enabled. Using nx-cugraph bc()")

if weight is not None:
Expand Down

0 comments on commit e467196

Please sign in to comment.