Skip to content

Commit

Permalink
Fix mixed experimental import
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbarghi-nv committed Dec 29, 2023
1 parent a58d358 commit f1ce3e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/cugraph/cugraph/experimental/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@
experimental_warning_wrapper(EXPERIMENTAL__find_bicliques)
)

from cugraph.gnn.data_loading import EXPERIMENTAL__BulkSampler
from cugraph.gnn.data_loading import BulkSampler

BulkSampler = experimental_warning_wrapper(EXPERIMENTAL__BulkSampler)
BulkSampler = promoted_experimental_warning_wrapper(BulkSampler)


from cugraph.link_prediction.jaccard import jaccard, jaccard_coefficient
Expand Down

0 comments on commit f1ce3e1

Please sign in to comment.