Skip to content

Commit 445d019

Browse files
committed
update FIXME with more detail
1 parent 2b47100 commit 445d019

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

python/cugraph/cugraph/dask/link_analysis/hits.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,9 @@ def hits(input_graph, tol=1.0e-5, max_iter=100, nstart=None, normalized=True):
155155
client = default_client()
156156

157157
# FIXME: 'legacy_renum_only' will not trigger the C++ renumbering
158+
# In the future, once all the algos follow the C/Pylibcugraph path,
159+
# compute_renumber_edge_list will only be used for multicolumn and
160+
# string vertices since the renumbering will be done in pylibcugraph
158161
input_graph.compute_renumber_edge_list(
159162
transposed=False, legacy_renum_only=True)
160163
ddf = input_graph.edgelist.edgelist_df

python/cugraph/cugraph/dask/sampling/neighborhood_sampling.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,9 @@ def EXPERIMENTAL__uniform_neighborhood(input_graph,
129129
# Initialize dask client
130130
client = default_client()
131131
# FIXME: 'legacy_renum_only' will not trigger the C++ renumbering
132+
# In the future, once all the algos follow the C/Pylibcugraph path,
133+
# compute_renumber_edge_list will only be used for multicolumn and
134+
# string vertices since the renumbering will be done in pylibcugraph
132135
input_graph.compute_renumber_edge_list(
133136
transposed=False, legacy_renum_only=True)
134137

0 commit comments

Comments
 (0)