- 06 Mar, 2023 2 commits
-
-
Quan (Andy) Gan authored
* fix duplicate worker_init_fn * lint * lint again * uugh
-
Rhett Ying authored
-
- 04 Mar, 2023 1 commit
-
-
Tingyu Wang authored
* add CuGraphGATConv model * lintrunner * update model to reflect changes in make_mfg_csr(), move max_in_degree to forward() * simplify pytest markers * fall back to FG option for large fanout * update error msg * add feat_drop and activation options * add residual option * Update python/dgl/nn/pytorch/conv/cugraph_gatconv.py Co-authored-by:
Mufei Li <mufeili1996@gmail.com> * Update python/dgl/nn/pytorch/conv/cugraph_gatconv.py Co-authored-by:
Mufei Li <mufeili1996@gmail.com> * reset res_fc --------- Co-authored-by:
Mufei Li <mufeili1996@gmail.com>
-
- 03 Mar, 2023 2 commits
-
-
Mufei Li authored
* Update * lint * lint * r prefix * CI * lint * skip TF * Update * edge homophily * linkx homophily * format * skip TF * fix test * update * lint * lint * review * lint * update * lint * update * CI --------- Co-authored-by:Ubuntu <ubuntu@ip-172-31-36-188.ap-northeast-1.compute.internal>
-
bgawrych authored
* Fix ubuntu 22 build * Add one more flag
-
- 02 Mar, 2023 1 commit
-
-
czkkkkkk authored
-
- 01 Mar, 2023 3 commits
-
-
Hongzhi (Steve), Chen authored
This reverts commit a5e31391.
-
Zhiteng Li authored
* add CLUSTER dataset * refine according to dongyu's comments --------- Co-authored-by:rudongyu <ru_dongyu@outlook.com>
-
Kacper Pietkun authored
-
- 28 Feb, 2023 2 commits
-
-
kylasa authored
Handling corner cases in the distributed lookup service. When the get partition ids function is invoked with empty request. This is needed because we are using alltoall function in the get_partition_ids function.
-
czkkkkkk authored
* [Sparse] Support converson to/from torch sparse tensor. * Update
-
- 27 Feb, 2023 3 commits
-
-
peizhou001 authored
-
Rhett Ying authored
* [CI] enable more options for conda env creation * update
-
Rhett Ying authored
* add always_yes mode for conda evn creation * Update create_dev_conda_env.sh
-
- 25 Feb, 2023 1 commit
-
-
kylasa authored
* Implemented the following changes. * Remove NUM_NODES_PER_CHUNK * Remove NUM_EDGES_PER_CHUNK * Remove the dependency between no. of edge files per edge type and no. of partitions * Remove the dependency between no. of edge feature files per edge type and no. of partitions * Remove the dependency between no. of edge feature files and no. of edge files per edge type. * Remove the dependency between no. of node feature files and no. of partitions * Add “node_type_counts”. This will be a list of integers. Each integer will represent total count of a node-type. The index in this list and the index in the “node_type” will be the same for a given node-type. * Add “edge_type_counts”. This will be a list of integers. Each integer will represent total count of an edge-type. The index in this list and the index in the “edge_type” list will be the same for a given edge-type. * Applying lintrunner patch. * Adding missing keys to the metadata in the unit test framework. * lintrunner patch. * Resolving CI test failures due to merge conflicts. * Applying lintrunner patch * applying lintrunner patch * Replacing tabspace with spaces - to satisfy lintrunner * Fixing the CI Test Failure cases. * Applying lintrunner patch * lintrunner complaining about a blank line. * Resolving issues with print statement for NoneType * Removed tests for the arbitrary chunks tests. Since this functionality is not supported anymore. * Addressing CI review comments. * addressing CI review comments * lintrunner patch * lintrunner patch. * Addressing CI review comments. * lintrunner patch.
-
- 24 Feb, 2023 2 commits
-
-
Mufei Li authored
* Update * lint * lint * r prefix * CI * lint * skip TF * Update --------- Co-authored-by:Ubuntu <ubuntu@ip-172-31-36-188.ap-northeast-1.compute.internal>
-
czkkkkkk authored
* [Sparse] Support column-wise softmax * Update python/dgl/sparse/softmax.py Co-authored-by:
Mufei Li <mufeili1996@gmail.com> --------- Co-authored-by:
Mufei Li <mufeili1996@gmail.com>
-
- 23 Feb, 2023 6 commits
-
-
kylasa authored
* A new script to validate graph partitioning pipeline * Addressing CI review comments. * lintrunner patch.
-
kylasa authored
* Uneven distribution of nodes/edges/features To handle unevenly sized files for nodes/edges and feature files for nodes and edges, we have to synchronize before starting large no. of messages (either one large message or a burst of messages). * Applying lintrunner patch. * Removing tabspaces for lintrunner. * lintrunner patch. * removed issues introduced by the merge conflicts. Lots of code was repeated
-
kylasa authored
[DistDGL][Mem_Optimizations]get_partition_ids, service provided by the distributed lookup service has high memory footprint (#5226) * get_partition_ids, service provided by the distributed lookup service has high memory footprint 'get_partitionid' function, which is used to retrieve owner processes of the given list of global node ids, has high memory footprint. Currently this is of the order of 8x compared to the size of the input list. For massively large datasets, this memory needs are very unrealistic and may result in OOM. In the case of CoreGraph, when retrieving owner of an edge list of size 6 Billion edges, the memory needs can be as high as 8*8*8 = 256 GB. To limit the amount of memory used by this function, we split the size of the message sent to the distributed lookup service, so that each message is limited by the number of global node ids, which is 200 million. This reduced the memory footprint of this entire function to be no more than 0.2 * 8 * 8 = 13 GB. which is within reasonable limits. Now since we send multiple small messages compared to one large message to the distributed lookup service, this may consume more wall-clock-time compared to earlier implementation. * lintrunner patch. * using np.ceil() per suggestion. * converting the output of np.ceil() as ints.
-
Kacper Pietkun authored
* fixed leak in SpMMCreateBlocks * clang format
-
Kunal Mukherjee authored
* subgraphx commit * nits * newline eof added * lint fix * test script updated to use default values * lint fix * graphs that are used for test cases are updated to a small graph * lint formatted * test paramter adj to complete the test under 20s * lint fixes --------- Co-authored-by:kxm180046 <kxm180046@utdallas.edu>
-
czkkkkkk authored
-
- 22 Feb, 2023 5 commits
-
-
kylasa authored
[DistDGL] Memory optimization to reduce memory footprint of the Dist Graph partitioning pipeline. (#5130) * Wrap np.argsort() in a function. This Use a python wrapper for the np.argsort() function for better usage of systems memory. * lintrunner patch. * lintrunner patch. * Changes to address code review comments.
-
peizhou001 authored
-
Hongzhi (Steve), Chen authored
Co-authored-by:Ubuntu <ubuntu@ip-172-31-28-63.ap-northeast-1.compute.internal>
-
Tingyu Wang authored
* add CuGraphSAGEConv model * fix lint issues * update model to reflect changes in make_mfg_csr(), move max_in_degree to forward() * lintrunner * allow reset_parameters() * remove norm option, simplify test * allow full graph fallback option, add example * address comments * address reviews --------- Co-authored-by:Mufei Li <mufeili1996@gmail.com>
-
Quan (Andy) Gan authored
* bump version * Update update_version.py
-
- 21 Feb, 2023 12 commits
-
-
Hongzhi (Steve), Chen authored
* autofix * sort * sort --------- Co-authored-by:Ubuntu <ubuntu@ip-172-31-28-63.ap-northeast-1.compute.internal>
-
Hongzhi (Steve), Chen authored
Co-authored-by:Ubuntu <ubuntu@ip-172-31-28-63.ap-northeast-1.compute.internal>
-
Hongzhi (Steve), Chen authored
Co-authored-by:Ubuntu <ubuntu@ip-172-31-28-63.ap-northeast-1.compute.internal>
-
Hongzhi (Steve), Chen authored
Co-authored-by:Ubuntu <ubuntu@ip-172-31-28-63.ap-northeast-1.compute.internal>
-
Hongzhi (Steve), Chen authored
* exclude_master * fix --------- Co-authored-by:Ubuntu <ubuntu@ip-172-31-28-63.ap-northeast-1.compute.internal>
-
Hongzhi (Steve), Chen authored
* test * blabla * add * reformat * balbla * rollback * remove --------- Co-authored-by:Ubuntu <ubuntu@ip-172-31-28-63.ap-northeast-1.compute.internal>
-
Rhett Ying authored
-
peizhou001 authored
* change concurrent id hash map
-
Hongzhi (Steve), Chen authored
Co-authored-by:Ubuntu <ubuntu@ip-172-31-28-63.ap-northeast-1.compute.internal>
-
Hongzhi (Steve), Chen authored
* Abort previous CI * script * newtry * more * fix * comment * add notes --------- Co-authored-by:Ubuntu <ubuntu@ip-172-31-28-63.ap-northeast-1.compute.internal>
-
Hongzhi (Steve), Chen authored
Co-authored-by:Ubuntu <ubuntu@ip-172-31-28-63.ap-northeast-1.compute.internal>
-
Hongzhi (Steve), Chen authored
Co-authored-by:Ubuntu <ubuntu@ip-172-31-28-63.ap-northeast-1.compute.internal>
-