1. 11 Jul, 2020 1 commit
  2. 10 Jul, 2020 3 commits
  3. 09 Jul, 2020 5 commits
  4. 08 Jul, 2020 1 commit
  5. 07 Jul, 2020 1 commit
  6. 06 Jul, 2020 3 commits
  7. 05 Jul, 2020 1 commit
  8. 04 Jul, 2020 2 commits
  9. 03 Jul, 2020 4 commits
    • Da Zheng's avatar
      [Feature] add sparse embedding. (#1497) · cadcc1c2
      Da Zheng authored
      * add sparse embedding.
      
      * fix
      
      * add test.
      
      * man fixes.
      
      * many fixes
      
      * fix sparse emb.
      
      * fix.
      
      * fix lint.
      
      * fix lint.
      
      * fix kvstore.
      
      * expose DistTensor.
      
      * test sparse embeddings.
      
      * add attach_grad to the backends.
      
      * remove part_id
      
      * fix.
      
      * move backward computation.
      
      * move more computation to backend.
      
      * fix a bug when applying learning rate.
      
      * fix a few things.
      
      * fix a few things.
      
      * add docstring
      
      * fix.
      
      * apply no_grad.
      
      * fix tests.
      
      * fix for other frameworks.
      
      * add examples in docstring.
      cadcc1c2
    • Da Zheng's avatar
      [Test] Fix test of distributed graph (#1748) · 17701174
      Da Zheng authored
      * Revert "Serialize server and client start for dist_graph_store test (#1736)"
      
      This reverts commit da16ebf0.
      
      * sleep
      17701174
    • mszarma's avatar
      Use timeval to set up SO_RCVTIMEO (#1734) · f80fc9bd
      mszarma authored
      
      
      Refactor code to use timeval struct
      for setting up the SO_RCVTIMEO variable
      timeout value for sockets in case of Linux.
      Changed SetTimeout API timeout input to seconds.
      Co-authored-by: default avatarChao Ma <mctt90@gmail.com>
      f80fc9bd
    • Quan (Andy) Gan's avatar
      [Model] GraphSAGE inductive example (#1741) · 4ddd477f
      Quan (Andy) Gan authored
      * graphsage inductive example
      
      * fix
      4ddd477f
  10. 02 Jul, 2020 5 commits
  11. 01 Jul, 2020 3 commits
  12. 30 Jun, 2020 2 commits
  13. 29 Jun, 2020 1 commit
  14. 28 Jun, 2020 8 commits
    • Mufei Li's avatar
      [DGLHeteroGraph] Add unittest for srcdst Order for DGLHeteroGraph.all_edges (#1677) · 0015eff7
      Mufei Li authored
      
      
      * Fix (#1)
      
      * Update
      
      * Fix
      
      * Fix
      
      * Update
      
      * Fix
      
      * Fix
      
      * Fix
      
      * Fix
      
      * Fixg
      
      * Fix
      
      * Fix
      
      * Fix
      
      * Fix
      
      * Fix
      
      * Fix
      
      * Fix
      
      * Fix
      
      * Add test case
      
      * Trigger CI (#2)
      
      * Update
      
      * Fix
      
      * Fix
      
      * Update
      
      * Fix
      
      * Fix
      
      * Fix
      
      * Fix
      
      * Fixg
      
      * Fix
      
      * Fix
      
      * Fix
      
      * Fix
      
      * Fix
      
      * Fix
      
      * Fix
      
      * Fix
      
      * Add test case
      
      * test
      
      * Fix (#3)
      
      * Update
      
      * Fix
      
      * Fix
      
      * Update
      
      * Fix
      
      * Fix
      
      * Fix
      
      * Fix
      
      * Fixg
      
      * Fix
      
      * Fix
      
      * Fix
      
      * Fix
      
      * Fix
      
      * Fix
      
      * Fix
      
      * Fix
      
      * Add test case
      
      * test
      
      * Fix
      
      * Fix
      
      * Roll back
      
      * Roll back
      
      * CI
      Co-authored-by: default avatarMinjie Wang <wmjlyjemaine@gmail.com>
      0015eff7
    • xiang song(charlie.song)'s avatar
      [Kernel] Migrate batching/unbatching on adjlist to CSR/COO (#1687) · 5747542f
      xiang song(charlie.song) authored
      
      
      * start
      
      * coo csr union partition
      
      * lint
      
      * lint
      
      * lint
      
      * Add matrix->data transform
      
      * update
      
      * Fix window compile
      
      * Add CSR support for DisjointPartition
      
      * lint
      
      * Fix
      
      * Use IdArray Op
      
      * Concat ready
      
      * Fix and all pass
      
      * resolve comments
      
      * Add union COO C++ test
      
      * Add C++ test for csr
      
      * lint
      
      * triger
      
      * Update include
      
      * Fix merge
      
      * test
      Co-authored-by: default avatarUbuntu <ubuntu@ip-172-31-51-214.ec2.internal>
      5747542f
    • xiang song(charlie.song)'s avatar
      [Feature] dgl.subgraph support Bool mask tensor as index. (#1709) · 55072b4e
      xiang song(charlie.song) authored
      
      
      * dgl.subgraph support using Bool mask tensor
      
      * support numpy boo tensor and add some test
      
      * Update
      
      * Fix docstring
      Co-authored-by: default avatarUbuntu <ubuntu@ip-172-31-51-214.ec2.internal>
      55072b4e
    • Minjie Wang's avatar
      [CUDA][Kernel] More CUDA kernels; Standardize the behavior for sorted COO/CSR (#1704) · 870da747
      Minjie Wang authored
      * add cub; array cumsum
      
      * CSRSliceRows
      
      * fix warning
      
      * operator << for ndarray; CSRSliceRows
      
      * add CSRIsSorted
      
      * add csr_sort
      
      * inplace coosort and outplace csrsort
      
      * WIP: coo is sorted
      
      * mv cuda_utils
      
      * add AllTrue utility
      
      * csr sort
      
      * coo sort
      
      * coo2csr for sorted coo arrays
      
      * CSRToCOO from sorted
      
      * pass tests for the new kernel changes
      
      * cannot use inplace sort
      
      * lint
      
      * try fix msvc error
      
      * Fix g.copy_to and g.asnumbits; ToBlock no longer uses CSC
      
      * stash
      
      * revert some hack
      
      * revert some changes
      
      * address comments
      
      * fix
      
      * fix to_block unittest
      
      * add todo note
      870da747
    • Quan (Andy) Gan's avatar
      fix parallel msbuild (#1717) · da8632ca
      Quan (Andy) Gan authored
      da8632ca
    • Quan (Andy) Gan's avatar
      fix knn graph bugs (#1716) · 2f983abe
      Quan (Andy) Gan authored
      2f983abe
    • Quan (Andy) Gan's avatar
      [Bug] Fix #1712 (#1714) · 8b539079
      Quan (Andy) Gan authored
      * fix debug compilation
      
      * fix
      
      * revert
      8b539079
    • Da Zheng's avatar
      [Distributed] Pytorch example of distributed GraphSage. (#1495) · 02d31974
      Da Zheng authored
      
      
      * add train_dist.
      
      * Fix sampling example.
      
      * use distributed sampler.
      
      * fix a bug in DistTensor.
      
      * fix distributed training example.
      
      * add graph partition.
      
      * add command
      
      * disable pytorch parallel.
      
      * shutdown correctly.
      
      * load diff graphs.
      
      * add ip_config.txt.
      
      * record timing for each step.
      
      * use ogb
      
      * add profiler.
      
      * fix a bug.
      
      * add train_dist.
      
      * Fix sampling example.
      
      * use distributed sampler.
      
      * fix a bug in DistTensor.
      
      * fix distributed training example.
      
      * add graph partition.
      
      * add command
      
      * disable pytorch parallel.
      
      * shutdown correctly.
      
      * load diff graphs.
      
      * add ip_config.txt.
      
      * record timing for each step.
      
      * use ogb
      
      * add profiler.
      
      * add Ips of the cluster.
      
      * fix exit.
      
      * support multiple clients.
      
      * balance node types and edges.
      
      * move code.
      
      * remove run.sh
      
      * Revert "support multiple clients."
      
      * fix.
      
      * update train_sampling.
      
      * fix.
      
      * fix
      
      * remove run.sh
      
      * update readme.
      
      * update readme.
      
      * use pytorch distributed.
      
      * ensure all trainers run the same number of steps.
      
      * Update README.md
      Co-authored-by: default avatarUbuntu <ubuntu@ip-172-31-16-250.us-west-2.compute.internal>
      02d31974