-
Notifications
You must be signed in to change notification settings - Fork 309
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]Optimize cugraph-DGL csc codepath #3977
Merged
rapids-bot
merged 12 commits into
rapidsai:branch-23.12
from
VibhuJawa:optimize_dgl_csc_codepath
Nov 8, 2023
Merged
Changes from 9 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
c8536d5
optimize_dgl_csc_codepath
VibhuJawa 30b346f
optimize_dgl_csc_codepath
VibhuJawa e5509e8
Merge branch 'branch-23.12' into optimize_dgl_csc_codepath
VibhuJawa a51ab95
Add cugraph_dgl_benchmark
VibhuJawa 5bc98d7
Merge branch 'optimize_dgl_csc_codepath' of https://github.com/VibhuJ…
VibhuJawa 9eb946f
optimize_dgl_csc_codepath
VibhuJawa 6d41e3e
Remove reset_index
VibhuJawa 4e12e1b
Add arguments for cugraph_dgl_csr_sampling
VibhuJawa f55925c
Merge branch 'branch-23.12' into optimize_dgl_csc_codepath
VibhuJawa 25412c0
Update benchmarks/cugraph/standalone/bulk_sampling/cugraph_bulk_sampl…
VibhuJawa 9ac0959
Merge branch 'branch-23.12' into optimize_dgl_csc_codepath
VibhuJawa e996ce9
Style fixes
VibhuJawa File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
152 changes: 152 additions & 0 deletions
152
benchmarks/cugraph-dgl/scale-benchmarks/cugraph_dgl_benchmark.py
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,152 @@ | ||
# Copyright (c) 2018-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. | ||
import os | ||
|
||
os.environ["LIBCUDF_CUFILE_POLICY"] = "KVIKIO" | ||
os.environ["KVIKIO_NTHREADS"] = "64" | ||
os.environ["RAPIDS_NO_INITIALIZE"] = "1" | ||
import json | ||
import pandas as pd | ||
import os | ||
import time | ||
from rmm.allocators.torch import rmm_torch_allocator | ||
import rmm | ||
import torch | ||
from cugraph_dgl.dataloading import HomogenousBulkSamplerDataset | ||
from model import run_1_epoch | ||
from argparse import ArgumentParser | ||
from load_graph_feats import load_node_labels, load_node_features | ||
|
||
|
||
def create_dataloader(sampled_dir, total_num_nodes, sparse_format, return_type): | ||
print("Creating dataloader", flush=True) | ||
st = time.time() | ||
dataset = HomogenousBulkSamplerDataset( | ||
total_num_nodes, | ||
edge_dir="in", | ||
sparse_format=sparse_format, | ||
return_type=return_type, | ||
) | ||
|
||
dataset.set_input_files(sampled_dir) | ||
dataloader = torch.utils.data.DataLoader( | ||
dataset, collate_fn=lambda x: x, shuffle=False, num_workers=0, batch_size=None | ||
) | ||
et = time.time() | ||
print(f"Time to create dataloader = {et - st:.2f} seconds", flush=True) | ||
return dataloader | ||
|
||
|
||
def setup_common_pool(): | ||
rmm.reinitialize(initial_pool_size=5e9, pool_allocator=True) | ||
torch.cuda.memory.change_current_allocator(rmm_torch_allocator) | ||
|
||
|
||
def main(args): | ||
print( | ||
f"Running cugraph-dgl dataloading benchmark with the following parameters:\n" | ||
f"Dataset path = {args.dataset_path}\n" | ||
f"Sampling path = {args.sampling_path}\n" | ||
) | ||
with open(os.path.join(args.dataset_path, "meta.json"), "r") as f: | ||
input_meta = json.load(f) | ||
|
||
sampled_dirs = [ | ||
os.path.join(args.sampling_path, f) for f in os.listdir(args.sampling_path) | ||
] | ||
|
||
time_ls = [] | ||
for sampled_dir in sampled_dirs: | ||
with open(os.path.join(sampled_dir, "output_meta.json"), "r") as f: | ||
sampled_meta_d = json.load(f) | ||
|
||
replication_factor = sampled_meta_d["replication_factor"] | ||
feat_load_st = time.time() | ||
label_data = load_node_labels( | ||
args.dataset_path, replication_factor, input_meta | ||
)["paper"]["y"] | ||
feat_data = feat_data = load_node_features( | ||
args.dataset_path, replication_factor, node_type="paper" | ||
) | ||
print( | ||
f"Feature and label data loading took = {time.time()-feat_load_st}", | ||
flush=True, | ||
) | ||
|
||
r_time_ls = e2e_benchmark(sampled_dir, feat_data, label_data, sampled_meta_d) | ||
[x.update({"replication_factor": replication_factor}) for x in r_time_ls] | ||
[x.update({"num_edges": sampled_meta_d["total_num_edges"]}) for x in r_time_ls] | ||
time_ls.extend(r_time_ls) | ||
|
||
print( | ||
f"Benchmark completed for replication factor = {replication_factor}\n{'=' * 30}", | ||
flush=True, | ||
) | ||
|
||
df = pd.DataFrame(time_ls) | ||
df.to_csv("cugraph_dgl_e2e_benchmark.csv", index=False) | ||
print(f"Benchmark completed for all replication factors\n{'=' * 30}", flush=True) | ||
|
||
|
||
def e2e_benchmark( | ||
sampled_dir: str, feat: torch.Tensor, y: torch.Tensor, sampled_meta_d: dict | ||
): | ||
""" | ||
Run the e2e_benchmark | ||
Args: | ||
sampled_dir: directory containing the sampled graph | ||
feat: node features | ||
y: node labels | ||
sampled_meta_d: dictionary containing the sampled graph metadata | ||
""" | ||
time_ls = [] | ||
|
||
# TODO: Make this a parameter in bulk sampling script | ||
sampled_meta_d["sparse_format"] = "csc" | ||
sampled_dir = os.path.join(sampled_dir, "samples") | ||
dataloader = create_dataloader( | ||
sampled_dir, | ||
sampled_meta_d["total_num_nodes"], | ||
sampled_meta_d["sparse_format"], | ||
return_type="cugraph_dgl.nn.SparseGraph", | ||
) | ||
time_d = run_1_epoch( | ||
dataloader, | ||
feat, | ||
y, | ||
fanout=sampled_meta_d["fanout"], | ||
batch_size=sampled_meta_d["batch_size"], | ||
model_backend="cugraph_dgl", | ||
) | ||
time_ls.append(time_d) | ||
print("=" * 30) | ||
return time_ls | ||
|
||
|
||
def parse_arguments(): | ||
parser = ArgumentParser() | ||
parser.add_argument( | ||
"--dataset_path", type=str, default="/raid/vjawa/ogbn_papers100M/" | ||
) | ||
parser.add_argument( | ||
"--sampling_path", | ||
type=str, | ||
default="/raid/vjawa/nov_1_bulksampling_benchmarks/", | ||
) | ||
return parser.parse_args() | ||
|
||
|
||
if __name__ == "__main__": | ||
setup_common_pool() | ||
arguments = parse_arguments() | ||
main(arguments) |
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@oorliu ,
The only dgl specific args for our benchmarking efforts are: