Skip to content

Commit

Permalink
return error when the function is called
Browse files Browse the repository at this point in the history
  • Loading branch information
afender committed Mar 25, 2021
1 parent c552d27 commit df0609a
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions python/cugraph/traversal/ms_bfs.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,10 @@ def concurrent_bfs(Graphs, sources, depth_limit=None, offload=False):
If offload is True, or if the output does not fit in memory :
Writes csv files containing BFS output to the disk.
"""

raise NotImplementedError(
"concurrent_bfs is coming soon! Please up vote the github issue 1465\
to help us prioritize"
)
if not isinstance(Graphs, list):
raise TypeError(
"Graphs should be a list of cugraph.Graph or cugraph.DiGraph"
Expand Down Expand Up @@ -245,7 +248,10 @@ def multi_source_bfs(
If offload is True, or if the output does not fit in memory :
Writes csv files containing BFS output to the disk.
"""

raise NotImplementedError(
"concurrent_bfs is coming soon! Please up vote the github issue 1465\
to help us prioritize"
)
# if components is not None:
# null_check(components["vertex"])
# null_check(components["colors"])
Expand Down

0 comments on commit df0609a

Please sign in to comment.