Skip to content

Commit

Permalink
renamed to bsp
Browse files Browse the repository at this point in the history
  • Loading branch information
BradReesWork committed Dec 2, 2019
1 parent 7a8d116 commit 82c8293
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion python/cugraph/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@

from cugraph.snmg.link_analysis.mg_pagerank import mg_pagerank

from cugraph.pregel.traversal import bfs_df_pregel
from cugraph.bsp.traversal import bfs_df_pregel

from cugraph.proto.components import strong_connected_component
from cugraph.proto.structure import find_bicliques
Expand Down
2 changes: 1 addition & 1 deletion python/cugraph/bsp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
# See the License for the specific language governing permissions and
# limitations under the License.

from cugraph.pregel.traversal import bfs_df_pregel
from cugraph.bsp.traversal import bfs_df_pregel

2 changes: 1 addition & 1 deletion python/cugraph/bsp/traversal/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
# See the License for the specific language governing permissions and
# limitations under the License.

from cugraph.pregel.traversal.bfs_bsp import bfs_df_pregel
from cugraph.bsp.traversal.bfs_bsp import bfs_df_pregel

Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def cugraph_call(cu_M, start_vertex):
df = cu_M[['0', '1']]

t1 = time.time()
df = cugraph.pregel.traversal.bfs_df_pregel(
df = cugraph.bsp.traversal.bfs_df_pregel(
df, start_vertex, src_col='0', dst_col='1')
t2 = time.time() - t1
print('Time : '+str(t2))
Expand Down

0 comments on commit 82c8293

Please sign in to comment.