"sgl-kernel/git@developer.sourcefind.cn:change/sglang.git" did not exist on "37c66ec8563d4fb9b6a658f0ea282bcf6171b2f0"
  1. 22 Dec, 2018 1 commit
    • Quan (Andy) Gan's avatar
      [CI] Jenkins on Windows builds (#324) · 75e2af79
      Quan (Andy) Gan authored
      * Jenkins build & test on Windows
      
      * oops
      
      * still running nohup on Windows slaves
      
      * ooops again
      
      * squishing vcvars and cmake
      
      * another try
      
      * reverting back
      
      * --user
      
      * switching to msbuild
      
      * made the graph size in cache testing bigger
      
      * put commands into script files
      
      * oooops
      75e2af79
  2. 17 Dec, 2018 2 commits
  3. 16 Dec, 2018 2 commits
  4. 11 Dec, 2018 1 commit
    • Minjie Wang's avatar
      [Release] v0.1.3 (#288) · 597ac7f8
      Minjie Wang authored
      * 0.1.2 release
      
      * oops
      
      * more fixes on windows
      
      * [Bugfix] fix download dir (#275)
      
      * fix download dir
      
      * add doc for the env var
      
      * windows 7 -> 10
      
      * doc update
      
      * [Bugfix] Fix conversion from networkx (#286)
      
      * fix from_nx when no edge id available
      
      * add test cases
      
      * more detailed tests
      
      * more comments
      
      * [Bugfix] Switch to sparse_coo_matrix for torch 1.0+ (#282)
      
      * switch to sparse_coo_matrix for torch 1.0+
      
      * fix bug when the version is 0.4.1.post2
      
      * change to distutils
      597ac7f8
  5. 07 Dec, 2018 1 commit
  6. 06 Dec, 2018 1 commit
  7. 05 Dec, 2018 7 commits
  8. 04 Dec, 2018 1 commit
  9. 03 Dec, 2018 3 commits
  10. 26 Nov, 2018 2 commits
  11. 22 Nov, 2018 3 commits
    • Minjie Wang's avatar
      Fix num_rows bug in batched_graph (#169) · 4dfe7547
      Minjie Wang authored
      4dfe7547
    • Zihao Ye's avatar
      [API] change the signature of node/edge filter (#166) · 23e2e83b
      Zihao Ye authored
      * change the signature of node/edge filter
      
      * upd filter
      23e2e83b
    • Lingfan Yu's avatar
      [Runtime] Scheduler and Executor (#140) · deb653f8
      Lingfan Yu authored
      * executor api
      
      * draft executor interface
      
      * WIP
      
      * revert changes to avoid conflict with api change
      
      * core scheduling logic
      
      * WIP: build graph adj
      
      * incidence matrix for in edges
      
      * support incidence matrix for partial recv nodes
      
      * improve
      
      * build adjmat in scheduler
      
      * graph store
      
      * get degree bucketing schedule
      
      * connect to c++ degree bucketing
      
      * conceptual executor creation code
      
      * executor comments
      
      * fix
      
      * more executor comments
      
      * WIP: full send_and_recv schedule
      
      * most schedulers
      
      * simplify scheduler
      
      * executors
      
      * runtime
      
      * builtin function base class
      
      * adj indices and shape
      
      * completely refactor scheduler
      
      * rename and move bundled out to function.py
      
      * use_edge_feature in msg func
      
      * rewrite scheduler
      
      * node edge executor
      
      * connect with graph api
      
      * handle zero degree
      
      * misc
      
      * fix test cases
      
      * fix a good many bugs...
      
      * remove old scheduler
      
      * push and pull
      
      * fix send recv
      
      * c++ lint
      
      * fix batched send recv
      
      * hot fix for mxnet
      
      * typo
      
      * write back executor
      
      * apply node edge
      
      * clean up, doc string
      
      * fix as requested
      
      * refactor
      
      * fix
      
      * WIP
      
      * WIP
      
      * ir draft
      
      * more on ir
      
      * WIP: spmv schedule
      
      * WIP
      
      * recv schedule
      
      * refactor
      
      * WIP
      
      * snr degree bucketing
      
      * snr scheduler
      
      * move prog to graph.py; rename
      
      * unittest for send/recv
      
      * remove some legacy codes
      
      * WIP: update_all
      
      * pass test_basics
      
      * passed all current utests
      
      * more utests; fix mx utest
      
      * WIP: fixing zero deg initial value
      
      * some tests
      
      * fix 0deg problem
      
      * fix mx
      
      * fix mx
      
      * some notes
      
      * fix as requested
      deb653f8
  12. 21 Nov, 2018 2 commits
    • Minjie Wang's avatar
      [Frame] change num rows behavior (#163) · 0ec1a492
      Minjie Wang authored
      * move initializer to column scheme; change num rows behavior
      
      * poke mx ci
      
      * fix mx utest in append
      
      * fix bug in add edges
      
      * utest for updating partial rows
      
      * fix bug in from_networkx and from_scipy_matrix
      
      * revert per-col initializer change
      
      * fix pickle utest
      0ec1a492
    • Da Zheng's avatar
      [Test] add tests for built-in functions (#159) · 440aecee
      Da Zheng authored
      * add spmv tests on mxnet.
      
      * test backward.
      
      * add tests for pull.
      
      * use mxnet backend.
      
      * address comment.
      
      * add comments.
      440aecee
  13. 19 Nov, 2018 1 commit
  14. 16 Nov, 2018 1 commit
    • Gan Quan's avatar
      Pickling support (#155) · 79a51025
      Gan Quan authored
      * pickling support
      
      * resorting to suggested way of pickling
      
      * custom attribute pickling check
      
      * working around a weird pytorch pickling bug
      
      * including partial frame case
      
      * pickling everything now
      
      * fix as requested
      79a51025
  15. 15 Nov, 2018 1 commit
  16. 14 Nov, 2018 2 commits
    • Da Zheng's avatar
      [API] Subgraph sampling API. (#138) · 2389df81
      Da Zheng authored
      * add neighbor sampler.
      
      * fix sampler.
      
      * handle non-existing nodes differently in MapParentIdToSubgraphId.
      
      * fix sampling tests.
      
      * parallelize sampling.
      
      * add more tests.
      
      * fix a bug in subgraph loader.
      
      * get number of sampled nodes directly.
      
      * load mxnet CSR to DGLGraph directly.
      
      * create graph from mxnet csr array directly.
      
      * use subgraph loader in SSE.
      
      * fix a bug in sampling.
      
      * output framework tensor.
      
      * fix.
      
      * remove unnecessary code.
      
      * fix tests.
      
      * add SSE README.
      
      * move to contrib.
      
      * address comments.
      
      * add tests.
      2389df81
    • Minjie Wang's avatar
      [GraphIndex] refactor graph caching (#150) · 048f6d7a
      Minjie Wang authored
      * refactor graph caching
      
      * fix mx test
      
      * fix typo
      048f6d7a
  17. 12 Nov, 2018 3 commits
    • VoVAllen's avatar
      [Doc][Model] New Capsule Tutorial & Example (#143) · 7cb50072
      VoVAllen authored
      * new capsule tutorial
      
      * capsule for new API
      
      * fix deprecated API
      
      * New tutorial and example
      
      * investigate gc problem
      
      * add viz code
      
      * new capsule tutorial
      
      * remove ipynb
      
      * move u_hat
      
      * add link
      
      * add requirements.txt
      
      * remove ani.save
      
      * update ci to install requirements
      
      * add graphviz
      7cb50072
    • Minjie Wang's avatar
      [CI] Improved CI (#141) · a95459e3
      Minjie Wang authored
      * change ci
      
      * update ci
      
      * update ci
      
      * update ci
      
      * update ci
      
      * update ci
      
      * update ci
      
      * update ci
      
      * update ci
      
      * update ci
      
      * update ci
      
      * update ci
      
      * update ci
      
      * update ci
      
      * update ci
      
      * update ci
      
      * nx package
      
      * update ci
      
      * update ci
      
      * update ci
      
      * fix
      
      * mx dockerfile by zhengda
      
      * python3.6->3.5
      
      * update ci image
      
      * add tutorial test
      
      * fix ci
      
      * fix ssl problem
      
      * minor change
      
      * small fix on traversal utest
      
      * fix syntax
      
      * add matplotlib in image
      
      * fix
      
      * update ci
      
      * update ci
      a95459e3
    • Gan Quan's avatar
      better bfs edge test (#142) · 7cbb83db
      Gan Quan authored
      7cbb83db
  18. 11 Nov, 2018 2 commits
  19. 10 Nov, 2018 1 commit
    • Gan Quan's avatar
      [API] Readout interfaces (#124) · 40ca5de4
      Gan Quan authored
      * fixing builtin src*edge shape mismatch
      
      * bundled function refactor (?)
      
      * fixing names
      
      * readout prototype
      
      * oops
      
      * more fixes
      
      * removing readout prototype
      
      * sum_on() with SPMV, fixing batching with 0 edges
      
      * readouts with segmented sum
      
      * typo (??????)
      
      * fixes NLTK dependency (#125)
      
      * misc fixes including #126 (pushing again)
      
      * sanity check for mxnet
      
      * fixes NLTK dependency (#125) and #126
      
      * reverting to sum_nodes/edges
      40ca5de4
  20. 09 Nov, 2018 3 commits