- 30 Sep, 2022 2 commits
-
-
Quan (Andy) Gan authored
* first commit * add test * fixes * ah this is how you skip setup * fix * ugh * address comments * i like black
-
czkkkkkk authored
* [Sparse] Add SparseMatrix unittest and fix docstring problem * Minor fix * Update * check permission * rm future annonations * Skip create_from_csr and create_from_csc tests because Pytorch 1.9.0 does not have torch.sparse_csr_tensor Co-authored-by:Israt Nisa <nisisrat@amazon.com>
-
- 29 Sep, 2022 2 commits
-
-
Israt Nisa authored
* Add elementwise operators for diagonal matrix * minor * resolve ambiguity of ops * lint check * lint check * lint check Co-authored-by:Israt Nisa <nisisrat@amazon.com>
-
LuckyLiuM authored
* metapath2vec package * fix bugs --metapath2vec package * add unittest and fix bugs * fix pyling messages * del init.py * fix bugs * modify metapath2vec and add deepwalk * deepwalk module * del metapath2vec files * Update * Update * Update * Update * Update * Fix Co-authored-by:
Ubuntu <ubuntu@ip-172-31-9-26.ap-northeast-1.compute.internal> Co-authored-by:
Mufei Li <mufeili1996@gmail.com>
-
- 28 Sep, 2022 3 commits
-
-
Israt Nisa authored
* sddmm init * SDDMM with N-D nonzero values * drop support for vector shaped non zero elements * address comments * skip cpu test * skip GPU test too Co-authored-by:
Israt Nisa <nisisrat@amazon.com> Co-authored-by:
Minjie Wang <wmjlyjemaine@gmail.com>
-
Rhett Ying authored
* [Dist] enable to partition many chunks into less partitions via pipeline * refine * add meta file for num_parts, add more tests, refine docstring * remove args.num_parts * create pydantic class for partition metadata * refine * rename json file
-
Rhett Ying authored
* [Dist] save original node/edge IDs into separate files * separate nids and eids
-
- 27 Sep, 2022 2 commits
-
-
Mufei Li authored
* Update * lint * Fix * Update * Update * Update * update * Fix * Update * Fix * Fix * Fix * CI * Update * Update * Update * update test Co-authored-by:Ubuntu <ubuntu@ip-172-31-9-26.ap-northeast-1.compute.internal>
-
Xin Yao authored
* fix test stream * init cusparse handle
-
- 26 Sep, 2022 1 commit
-
-
czkkkkkk authored
* [Sparse] Add reduction operators * Fix linting problem * Fix linting problem * Fix linting problem * Fix docstring * Fix test cases * Fix linting problem * Skip reduction unittests
-
- 24 Sep, 2022 1 commit
-
-
Israt Nisa authored
* initial commit * address comments * lint check Co-authored-by:Israt Nisa <nisisrat@amazon.com>
-
- 23 Sep, 2022 2 commits
-
-
czkkkkkk authored
* [Sparse] Add Transposition * Fix docstring * Fix linting problem * Minor fix * Minor fix Co-authored-by:Minjie Wang <wmjlyjemaine@gmail.com>
-
Vibhu Jawa authored
* get_more_logs * Update cugraph_unit_test.sh * Update test_basics.py * Update cugraph_unit_test.sh * Update tests/cugraph/test_basics.py Co-authored-by:Minjie Wang <wmjlyjemaine@gmail.com>
-
- 22 Sep, 2022 1 commit
-
-
Rhett Ying authored
* [CI] Enable DGL cugaph nightly CI * fix build issue * remove runtime
-
- 21 Sep, 2022 1 commit
-
-
Xin Yao authored
* disable warning for tensorpipe * fix warning * enable lint check for cuh files * resolve comments
-
- 20 Sep, 2022 3 commits
-
-
peizhou001 authored
-
Mufei Li authored
* Update * Update * Update * Update * Update * Update * Update * Update * Update * Update * Update * Update * Update Co-authored-by:Ubuntu <ubuntu@ip-172-31-9-26.ap-northeast-1.compute.internal>
-
Quan (Andy) Gan authored
* fix * Update hetero.py * why did i remove this Co-authored-by:Xin Yao <xiny@nvidia.com>
-
- 19 Sep, 2022 2 commits
-
-
nv-dlasalle authored
* updates * Enable caching C++ result * Add missing docstring * Remove unused function * Add unit test * Address comments
-
Xin Yao authored
* rename `DLContext` to `DGLContext` * rename `kDLGPU` to `kDLCUDA` * replace DLTensor with DGLArray * fix linting * Unify DGLType and DLDataType to DGLDataType * Fix FFI * rename DLDeviceType to DGLDeviceType * decouple dlpack from the core library * fix bug * fix lint * fix merge * fix build * address comments * rename dl_converter to dlpack_convert * remove redundant comments
-
- 16 Sep, 2022 2 commits
-
-
Rhett Ying authored
This reverts commit ec171c64.
-
Vibhu Jawa authored
* Added cugraph nightly scripts * Removed nvcr.io//nvidia/pytorch:22.04-py3 reference Co-authored-by:Rhett Ying <85214957+Rhett-Ying@users.noreply.github.com>
-
- 15 Sep, 2022 2 commits
-
-
Xin Yao authored
* add set_stream * add .record_stream for NDArray and HeteroGraph * refactor dgl stream Python APIs * test record_stream * add unit test for record stream * use pytorch's stream * fix lint * fix cpu build * address comments * address comments * add record stream tests for dgl.graph * record frames and update dataloder * add docstring * update frame * add backend check for record_stream * remove CUDAThreadEntry::stream * record stream for newly created formats * fix bug * fix cpp test * fix None c_void_p to c_handle
-
Rhett Ying authored
* [DistPart] expose timeout config for process group * refine code * Update tools/distpartitioning/data_proc_pipeline.py Co-authored-by:
Minjie Wang <wmjlyjemaine@gmail.com> Co-authored-by:
Minjie Wang <wmjlyjemaine@gmail.com>
-
- 14 Sep, 2022 1 commit
-
-
Israt Nisa authored
* init * Add api doc for sparse library * support op btwn matrices with differnt sparsity * Fixed docstring * addresses comments * lint check * change keyword format to fmt Co-authored-by:Israt Nisa <nisisrat@amazon.com>
-
- 07 Sep, 2022 1 commit
-
-
ndickson-nvidia authored
[Feature] Added exclude_self and output_batch to knn graph construction (Issues #4323 #4316) (#4389) * * Added "exclude_self" and "output_batch" options to knn_graph and segmented_knn_graph * Updated out-of-date comments on remove_edges and remove_self_loop, since they now preserve batch information * * Changed defaults on new knn_graph and segmented_knn_graph function parameters, for compatibility; pytorch/test_geometry.py was failing * * Added test to ensure dgl.remove_self_loop function correctly updates batch information * * Added new knn_graph and segmented_knn_graph parameters to dgl.nn.KNNGraph and dgl.nn.SegmentedKNNGraph * * Formatting * * Oops, I missed the one in segmented_knn_graph when I fixed the similar thing in knn_graph * * Fixed edge case handling when invalid k specified, since it still needs to be handled consistently for tests to pass * Fixed context of batch info, since it must match the context of the input position data for remove_self_loop to succeed * * Fixed batch info resulting from knn_graph when output_batch is true, for case of 3D input tensor, representing multiple segments * * Added testing of new exclude_self and output_batch parameters on knn_graph and segmented_knn_graph, and their wrappers, KNNGraph and SegmentedKNNGraph, into the test_knn_cuda test * * Added doc comments for new parameters * * Added correct handling for uncommon case of k or more coincident points when excluding self edges in knn_graph and segmented_knn_graph * Added test cases for more than k coincident points * * Updated doc comments for output_batch parameters for clarity * * Linter formatting fixes * * Extracted out common function for test_knn_cpu and test_knn_cuda, to add the new test cases to test_knn_cpu * * Rewording in doc comments * * Removed output_batch parameter from knn_graph and segmented_knn_graph, in favour of always setting the batch information, except in knn_graph if x is a 2D tensor Co-authored-by:Minjie Wang <wmjlyjemaine@gmail.com>
-
- 06 Sep, 2022 1 commit
-
-
Chang Liu authored
* Use an internal cuda stream for CopyDataFromTo * small fix white space * Fix to compile * Make stream optional in copydata for compile * fix lint issue * Update cub functions to use internal stream * Lint check * Update CopyTo/CopyFrom/CopyFromTo to use internal stream * Address comments * Fix backward CUDA stream * Avoid overloading CopyFromTo() * Minor comment update * Overload copydatafromto in cuda device api Co-authored-by:xiny <xiny@nvidia.com>
-
- 05 Sep, 2022 2 commits
-
-
peizhou001 authored
* enable turn on/off libxsmm at runtime by adding a global config and related API Co-authored-by:Ubuntu <ubuntu@ip-172-31-19-194.ap-northeast-1.compute.internal>
-
nv-dlasalle authored
* Remove async_transferer * remove test * Remove AsyncTransferer Co-authored-by:
Xin Yao <xiny@nvidia.com> Co-authored-by:
Xin Yao <yaox12@outlook.com>
-
- 31 Aug, 2022 2 commits
-
-
Rhett Ying authored
* [BugFix] fix crash due to incorrect dtype in dgl.to_block() * fix test failure in TF
-
Rhett Ying authored
-
- 22 Aug, 2022 1 commit
-
-
Mufei Li authored
* Update distributed-preprocessing.rst * Update Co-authored-by:Ubuntu <ubuntu@ip-172-31-9-26.ap-northeast-1.compute.internal>
-
- 19 Aug, 2022 1 commit
-
-
Mufei Li authored
* chunked graph data format * Update * Update * Update task_distributed_test.sh * Update * Update * Revert "Update" This reverts commit 03c461870f19375fb03125b061fc853ab555577f. * Update * Update * ssh-keygen * CI * install openssh * openssh * Update * CI * Update * Update Co-authored-by:
Ubuntu <ubuntu@ip-172-31-53-142.us-west-2.compute.internal> Co-authored-by:
Ubuntu <ubuntu@ip-172-31-16-87.us-west-2.compute.internal> Co-authored-by:
Ubuntu <ubuntu@ip-172-31-20-21.us-west-2.compute.internal> Co-authored-by:
Ubuntu <ubuntu@ip-172-31-9-26.ap-northeast-1.compute.internal>
-
- 17 Aug, 2022 2 commits
-
-
Rhett Ying authored
* [CI] upgrade python version to 3.7.0 * do not upgrade for mxnet cpu due to seg fault * fix test failure for mxnet
-
Rhett Ying authored
* [CI] upgrade python version to 3.7.0 * do not upgrade for mxnet cpu due to seg fault * fix test failure for mxnet
-
- 16 Aug, 2022 1 commit
-
-
Rhett Ying authored
* [Feature] enable graph partition book support canonical etypes * fix lint * fix lint * add todo * refine according to review comments * fix lint * refine naming * revert PartitionPolicy __init__ * refine docstring * fix doc string
-
- 15 Aug, 2022 1 commit
-
-
Xin Yao authored
-
- 10 Aug, 2022 1 commit
-
-
YJ-Zhao authored
* rgcn-ogbn-mag * Add link in README.md * correct code-format,add the reset_parameters function to the HeteroEmbedding module * add the annotation in hetero.py * add a unit test * modify format * Update Co-authored-by:
Mufei Li <mufeili1996@gmail.com> Co-authored-by:
Ubuntu <ubuntu@ip-172-31-50-143.us-west-2.compute.internal>
-
- 09 Aug, 2022 1 commit
-
-
Quan (Andy) Gan authored
* bunch of fixes * Update test_edge_softmax_hetero.py * Update test_edge_softmax_hetero.py Co-authored-by:Minjie Wang <wmjlyjemaine@gmail.com>
-
- 07 Aug, 2022 1 commit
-
-
Chang Liu authored
* Fix doc and default settings for RelGraphConv * Add unit test * Split msg in two lines to pass CI-lint
-