1. 12 Jul, 2021 3 commits
  2. 09 Jul, 2021 1 commit
  3. 07 Jul, 2021 1 commit
  4. 06 Jul, 2021 1 commit
  5. 04 Jul, 2021 1 commit
  6. 02 Jul, 2021 1 commit
  7. 29 Jun, 2021 1 commit
  8. 28 Jun, 2021 2 commits
  9. 25 Jun, 2021 2 commits
  10. 23 Jun, 2021 3 commits
  11. 21 Jun, 2021 1 commit
  12. 16 Jun, 2021 4 commits
    • Da Zheng's avatar
      [Distributed] Support hierarchical partitioning (#3000) · aaec3d8a
      Da Zheng authored
      
      
      * add.
      
      * fix.
      
      * fix.
      
      * fix.
      
      * fix.
      
      * add tests.
      
      * support node split and edge split.
      
      * support 1 partition.
      
      * add tests.
      
      * fix.
      
      * fix test.
      
      * use hierarchical partition.
      
      * add check.
      Co-authored-by: default avatarZheng <dzzhen@3c22fba32af5.ant.amazon.com>
      Co-authored-by: default avatarUbuntu <ubuntu@ip-172-31-22-57.us-west-2.compute.internal>
      Co-authored-by: default avatarUbuntu <ubuntu@ip-172-31-71-112.ec2.internal>
      aaec3d8a
    • Hengrui Zhang's avatar
      fix bugs (#3008) · 18eaad17
      Hengrui Zhang authored
      
      Co-authored-by: default avatarzhjwy9343 <6593865@qq.com>
      18eaad17
    • Hengrui Zhang's avatar
      36c6c649
    • espylapiza's avatar
      [Example] update ogbn-arxiv and ogbn-proteins results (#3018) · 305d5c16
      espylapiza authored
      
      
      * [Example] GCN on ogbn-arxiv dataset
      
      * Add README.md
      
      * Update GCN implementation on ogbn-arxiv
      
      * Update GCN on ogbn-arxiv
      
      * Fix typo
      
      * Use evaluator to get results
      
      * Fix duplicated
      
      * Fix duplicated
      
      * Update GCN on ogbn-arxiv
      
      * Add GAT for ogbn-arxiv
      
      * Update README.md
      
      * Update GAT on ogbn-arxiv
      
      * Update README.md
      
      * Update README
      
      * Update README.md
      
      * Update README.md
      
      * Add GAT implementation for ogbn-proteins
      
      * Add GAT implementation for ogbn-proteins
      
      * Add GAT implementation for ogbn-proteins
      
      * Add GAT implementation for ogbn-proteins
      
      * Add GAT implementation for ogbn-proteins
      
      * Update examples for ogbn-arxiv
      
      * Update examples for ogbn-arxiv
      
      * Update examples for ogbn-arxiv
      
      * Update examples for ogbn-arxiv
      
      * Update examples for ogbn-arxiv
      
      * Update examples for ogbn-arxiv
      
      * Update examples for ogbn-arxiv
      
      * Update examples for ogbn-arxiv
      
      * Update examples for ogbn-arxiv
      
      * Update examples for ogbn-arxiv
      
      * Update examples for ogbn-arxiv
      
      * Update examples for ogbn-arxiv
      
      * Update examples for ogbn-arxiv
      
      * Update examples for ogbn-arxiv
      
      * Add examples for ogbn-products.
      
      * Update examples for ogbn-proteins.
      
      * Update examples for ogbn-proteins.
      
      * Update examples for ogbn-proteins.
      
      * Update examples for ogbn-proteins.
      
      * Update examples for ogbn-proteins.
      
      * Update examples for ogbn-proteins.
      
      * Update examples for ogbn-proteins.
      
      * Update examples for ogbn-proteins.
      
      * Update examples for ogbn-proteins.
      
      * Update examples for ogbn-products.
      
      * Update examples for ogbn-products.
      
      * Update examples for ogbn-arxiv.
      
      * Update examples for ogbn-arxiv.
      
      * Update examples for ogbn-arxiv.
      
      * Update examples for ogbn-proteins.
      
      * Update examples for ogbn-products.
      
      * Update examples for ogbn-proteins.
      
      * Update examples for ogbn-arxiv.
      
      * Update examples for ogbn-proteins.
      
      * Update README.md
      
      * [Example] ogbn-arxiv & ogbn-proteins
      
      * [Example] ogbn-arxiv & ogbn-proteins
      
      * [Example] ogbn-arxiv & ogbn-proteins
      
      * [Example] ogbn-arxiv & ogbn-proteins
      Co-authored-by: default avatarMufei Li <mufeili1996@gmail.com>
      Co-authored-by: default avatarZihao Ye <expye@outlook.com>
      305d5c16
  13. 15 Jun, 2021 1 commit
  14. 13 Jun, 2021 2 commits
  15. 11 Jun, 2021 1 commit
    • nv-dlasalle's avatar
      [Feature] Allow using NCCL for communication in dgl.NodeEmbedding and dgl.SparseOptimizer (#2824) · 17d604b5
      nv-dlasalle authored
      
      
      * Split from NCCL PR
      
      * Fix type in comment
      
      * Expand documentation for sparse_all_to_all_push
      
      * Restore previous behavior in example
      
      * Re-work optimizer to use NCCL based on gradient location
      
      * Allow for running with embedding on CPU but using NCCL for gradient exchange
      
      * Optimize single partition case
      
      * Fix pylint errors
      
      * Add missing include
      
      * fix gradient indexing
      
      * Fix line continuation
      
      * Migrate 'first_step'
      
      * Skip tests without enough GPUs to run NCCL
      
      * Improve empty tensor handling for pytorch 1.5
      
      * Fix indentation
      
      * Allow multiple NCCL communicator to coexist
      
      * Improve handling of empty message
      
      * Update python/dgl/nn/pytorch/sparse_emb.py
      Co-authored-by: default avatarxiang song(charlie.song) <classicxsong@gmail.com>
      
      * Update python/dgl/nn/pytorch/sparse_emb.py
      Co-authored-by: default avatarxiang song(charlie.song) <classicxsong@gmail.com>
      
      * Keepy empty tensor dimensionaless
      
      * th.empty -> th.tensor
      
      * Preserve shape for empty non-zero dimension tensors
      
      * Use shared state, when embedding is shared
      
      * Add support for gathering an embedding
      
      * Fix typo
      
      * Fix more typos
      
      * Fix backend call
      
      * Use NodeDataLoader to take advantage of ddp
      
      * Update training script to share memory
      
      * Only squeeze last dimension
      
      * Better handle empty message
      
      * Keep embedding on the target device GPU if dgl_sparse if false in RGCN example
      
      * Fix typo in comment
      
      * Add asserts
      
      * Improve documentation in example
      Co-authored-by: default avatarxiang song(charlie.song) <classicxsong@gmail.com>
      17d604b5
  16. 10 Jun, 2021 1 commit
  17. 07 Jun, 2021 1 commit
  18. 04 Jun, 2021 1 commit
  19. 03 Jun, 2021 1 commit
  20. 02 Jun, 2021 1 commit
  21. 26 May, 2021 1 commit
  22. 17 May, 2021 2 commits
  23. 14 May, 2021 1 commit
  24. 12 May, 2021 1 commit
  25. 11 May, 2021 2 commits
  26. 03 May, 2021 1 commit
  27. 27 Apr, 2021 1 commit
  28. 26 Apr, 2021 1 commit