Skip to content

Commit

Permalink
fix: run_on_gpu dev param
Browse files Browse the repository at this point in the history
  • Loading branch information
aMahanna committed Apr 28, 2024
1 parent 4797eb9 commit 634a762
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions nx_arangodb/algorithms/centrality/betweenness.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
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 @@ -27,12 +29,14 @@
_plc="betweenness_centrality",
)
def betweenness_centrality(
G, k=None, normalized=True, weight=None, endpoints=False, seed=None, run_on_gpu=True
G, k=None, normalized=True, weight=None, endpoints=False, seed=None
):
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:
if GPU_ENABLED and run_on_gpu == "true":
print("ANTHONY: GPU is enabled. Using nx-cugraph bc()")

if weight is not None:
Expand Down

0 comments on commit 634a762

Please sign in to comment.