Skip to content

Commit

Permalink
update FIXME with more detail
Browse files Browse the repository at this point in the history
  • Loading branch information
jnke2016 committed May 11, 2022
1 parent 2b47100 commit 445d019
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions python/cugraph/cugraph/dask/link_analysis/hits.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,9 @@ def hits(input_graph, tol=1.0e-5, max_iter=100, nstart=None, normalized=True):
client = default_client()

# FIXME: 'legacy_renum_only' will not trigger the C++ renumbering
# In the future, once all the algos follow the C/Pylibcugraph path,
# compute_renumber_edge_list will only be used for multicolumn and
# string vertices since the renumbering will be done in pylibcugraph
input_graph.compute_renumber_edge_list(
transposed=False, legacy_renum_only=True)
ddf = input_graph.edgelist.edgelist_df
Expand Down
3 changes: 3 additions & 0 deletions python/cugraph/cugraph/dask/sampling/neighborhood_sampling.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,9 @@ def EXPERIMENTAL__uniform_neighborhood(input_graph,
# Initialize dask client
client = default_client()
# FIXME: 'legacy_renum_only' will not trigger the C++ renumbering
# In the future, once all the algos follow the C/Pylibcugraph path,
# compute_renumber_edge_list will only be used for multicolumn and
# string vertices since the renumbering will be done in pylibcugraph
input_graph.compute_renumber_edge_list(
transposed=False, legacy_renum_only=True)

Expand Down

0 comments on commit 445d019

Please sign in to comment.