"git@developer.sourcefind.cn:change/sglang.git" did not exist on "0c0c81372ebebacb10f52a7424215e21d6421dae"
  1. 04 Feb, 2021 1 commit
  2. 03 Feb, 2021 1 commit
  3. 30 Jan, 2021 1 commit
  4. 29 Jan, 2021 1 commit
  5. 27 Jan, 2021 1 commit
  6. 23 Jan, 2021 1 commit
  7. 29 Dec, 2020 1 commit
  8. 01 Dec, 2020 2 commits
  9. 10 Nov, 2020 1 commit
    • Tom Birch's avatar
      Single-process control via PipeRPCWrapper (#156) · 5d4f50fb
      Tom Birch authored
      Adds support for:
      * Reused layers (e.g. for weight sharing)
      * Lazily-constructed layers
      * Single-process control via PipeRPCWrapper
      * PipelineStyle.AsyncScheudle, which lays the foundation for asynchronous pipeline work by introducing an event loop for each rank/worker to process either activations or gradients as they arrive
      
      Also added examples for multi-process and PipeRPCWrapper
      5d4f50fb
  10. 29 Oct, 2020 1 commit
  11. 17 Sep, 2020 1 commit
    • Tom Birch's avatar
      Multi-process pipe (#90) · 63f7796a
      Tom Birch authored
      Adds support for distributing pipeline stages across multiple processes (and therefore multiple machines)
      * Adds a style argument to the Pipe constructor, defaulting to PipelineStyle.SingleProcess, but also supporting PipelineStyle.MultiProcess
      * Added support for lazy construction of modules (see lazy_construction for an example)
      * Added two implementations of inter-process communication: one based on rpc with globally visible queues, one based on send/recv
      * Copied all the relevant tests from tests/pipe to tests/pipe_process and modified them to exercise PipelineStyle.MultiProcess
      63f7796a