Skip to content

Commit

Permalink
[FIX] Remove Unintentional Expensive Check from SG Uniform Neighbor S…
Browse files Browse the repository at this point in the history
…ample (#4421)

#4355 accidentally added an expensive check to SG uniform neighbor sample.  This PR reverts that addition.

Authors:
  - Alex Barghi (https://github.com/alexbarghi-nv)

Approvers:
  - Rick Ratzel (https://github.com/rlratzel)

URL: #4421
  • Loading branch information
alexbarghi-nv authored May 15, 2024
1 parent 198fc79 commit 37b67c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/cugraph/cugraph/sampling/uniform_neighbor_sample.py
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ def uniform_neighbor_sample(
else None,
h_fan_out=fanout_vals,
with_replacement=with_replacement,
do_expensive_check=True,
do_expensive_check=False,
with_edge_properties=with_edge_properties,
random_state=random_state,
prior_sources_behavior=prior_sources_behavior,
Expand Down

0 comments on commit 37b67c9

Please sign in to comment.