You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the solution you'd like and any additional context
For GNN workflows when running on validation/test we need to sample all the neighboring edges . I think we should support uniform_neighbor_sample to allow an option to return that.
If we want to match DGL behavior we can probably return all neighbors for Fan-Out=-1 .
Please note that currently below fails with CUGRAPH_UNKNOWN_ERROR , we should probably raise an informative error as -1 is the default value for DGL library and users may end up trying it on their own.
I believe that this should work. The fact that it fails is likely a bug.
There is a more detailed error message. We need to refactor the cuGraph python layer (or perhaps the python layer, not sure which) to expose the most detailed message. I will try and reproduce this specific example to isolate what is going on.
Describe the solution you'd like and any additional context
For GNN workflows when running on validation/test we need to sample all the neighboring edges . I think we should support
uniform_neighbor_sample
to allow an option to return that.If we want to match DGL behavior we can probably return all neighbors for
Fan-Out=-1
.See related DGL documentation here
Please note that currently below fails with
CUGRAPH_UNKNOWN_ERROR
, we should probably raise an informative error as-1
is the default value for DGL library and users may end up trying it on their own.The text was updated successfully, but these errors were encountered: