Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[REVIEW] Remove dead-code from cugraph-dgl #3291

Merged

Conversation

VibhuJawa
Copy link
Member

THIS PR closes #3290

@VibhuJawa VibhuJawa requested a review from a team as a code owner February 16, 2023 23:32
use_ddp,
ddp_seed,
shuffle,
kwargs.get("persistent_workers", False),
Copy link
Member Author

@VibhuJawa VibhuJawa Feb 16, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unrelated to PR, helps to align with dgl-1.0 as that added a breaking change

@@ -71,7 +71,7 @@ def set_input_directory(self, input_directory):
self._sampled_files = os.listdir(input_directory)
self._batch_to_fn_d = {
i: get_batch_fn_batch_start(i, self._sampled_files)
for i in range(0, self.num_batches + 1)
for i in range(0, self.num_batches)
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unrelated to PR, Caught likely now after updating #3249

@@ -133,7 +133,7 @@ def set_input_directory(self, input_directory):
self._sampled_files = os.listdir(input_directory)
self._batch_to_fn_d = {
i: get_batch_fn_batch_start(i, self._sampled_files)
for i in range(0, self.num_batches + 1)
for i in range(0, self.num_batches)
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unrelated to PR, Caught likely now after updating #3249

python/cugraph/cugraph/dask/common/mg_utils.py Outdated Show resolved Hide resolved
@VibhuJawa VibhuJawa added non-breaking Non-breaking change improvement Improvement / enhancement to an existing function labels Feb 16, 2023
Copy link
Member

@alexbarghi-nv alexbarghi-nv left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

@alexbarghi-nv
Copy link
Member

/merge

@rapids-bot rapids-bot bot merged commit d5f8300 into rapidsai:branch-23.04 Feb 21, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
improvement Improvement / enhancement to an existing function non-breaking Non-breaking change
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[IMP] Remove dead-code for cugraph-DGL
2 participants