-
Notifications
You must be signed in to change notification settings - Fork 304
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This PR depends upon ~#3148 (#3170) This PR closes #3154 - [x] Works on SG Homogenous Graph (OBGN-Products) - [x] Works on SG Heterogenous Graphs (OBGN-Mag) - [x] Works on MG Homogenous Graphs (OBGN-Products, OBGN-PAPERS100M (1 Billion edge graph)) - [x] Works on MG Heterogenous Graphs (OBGN-Mag) Tests to add: - [x] Tests on SG Homogenous Graphs - [x] Tests on SG Heterogenous Graphs - [x] Tests on MG Homogenous Graphs - [x] Tests on MG Heterogenous Graphs Maybe Todo: <s>- [ ] Test Multi-trainer examples and verification </s> (Will do a follow up) Authors: - Vibhu Jawa (https://github.com/VibhuJawa) - Rick Ratzel (https://github.com/rlratzel) - Alex Barghi (https://github.com/alexbarghi-nv) - Chuck Hastings (https://github.com/ChuckHastings) Approvers: - Alex Barghi (https://github.com/alexbarghi-nv) - Rick Ratzel (https://github.com/rlratzel) URL: #3181
- Loading branch information
Showing
23 changed files
with
2,118 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Copyright (c) 2019-2023, NVIDIA CORPORATION. | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
from cugraph_dgl.dataloading.dataset import ( | ||
HomogenousBulkSamplerDataset, | ||
HetrogenousBulkSamplerDataset, | ||
) | ||
from cugraph_dgl.dataloading.neighbor_sampler import NeighborSampler | ||
from cugraph_dgl.dataloading.dataloader import DataLoader |
Oops, something went wrong.