1. 24 Sep, 2022 1 commit
  2. 08 Mar, 2022 1 commit
  3. 08 Feb, 2022 1 commit
  4. 21 Dec, 2021 1 commit
    • Anupam Bhatnagar's avatar
      Release automation (#888) · 49eacf12
      Anupam Bhatnagar authored
      * [skip ci] first commit to automate release process
      
      * empty commit
      
      * fix syntax
      
      * fix next_version value
      
      * fixing more syntax
      
      * remove uses
      
      * fix
      
      * fixed path in setup.py
      
      * trying a basic example
      
      * adding branch
      
      * change release to name
      
      * adding first step
      
      * remove push trigger
      
      * change order in ON section
      
      * modifying manual workflow
      
      * adding fairscale release workflow
      
      * removing unused workflows
      
      * replacing values with secrets
      
      * fixing __version__ in __init__.py
      
      * cleanup
      
      * restoring import statement
      49eacf12
  5. 18 Nov, 2021 1 commit
  6. 08 Nov, 2021 2 commits
  7. 20 Sep, 2021 1 commit
  8. 10 Aug, 2021 1 commit
    • Rahul Iyer's avatar
      Fix pre-commit hook failures (#756) · 31d600cc
      Rahul Iyer authored
      Pre-commit hook fails when run on all files for three reasons:
      (see trace below)
      
      1. Trailing whitespace on multiple files
      2. mypy fails to load numpy and then subsequently fails to load
      LazyModule from pipe.py
      3. isort sees issues with known_third_party packages
      
      ```
      > pre-commit run --all-files
      
      Trim Trailing Whitespace.................................................Failed
      - hook id: trailing-whitespace
      - exit code: 1
      - files were modified by this hook
      
      Fixing docs/source/conf.py
      Fixing fairscale/experimental/nn/auto_shard.py
      Fixing docs/source/deep_dive/activation_checkpointing.rst
      Fixing docs/source/tutorials/pipe.rst
      Fixing docs/source/installation_instructions.rst
      Fixing docs/source/deep_dive/pipeline_parallelism.rst
      Fixing docs/source/tutorials/activation_checkpointing.rst
      Fixing docs/source/tutorials/offload_model.rst
      Fixing docs/source/deep_dive/oss_sdp_fsdp.rst
      Fixing docs/source/what_is_fairscale.rst
      Fixing CHANGELOG.md
      Fixing fairscale/experimental/nn/offload.py
      Fixing docs/source/index.rst
      Fixing docs/source/deep_dive/adascale.rst
      Fixing README.md
      Fixing docs/source/tutorials/oss.rst
      Fixing docs/source/deep_dive/offload.rst
      
      Check python ast.........................................................Passed
      Check for merge conflicts................................................Passed
      Don't commit to branch...................................................Passed
      Check for added large files..............................................Passed
      Fix End of Files.........................................................Failed
      - hook id: end-of-file-fixer
      - exit code: 1
      - files were modified by this hook
      
      Fixing requirements.txt
      Fixing docs/source/getting_started.rst
      Fixing docs/source/installation_instructions.rst
      Fixing codecov.yml
      Fixing docs/source/deep_dive/adascale.rst
      Fixing docs/source/tutorials/oss.rst
      Fixing docs/source/deep_dive/offload.rst
      
      black....................................................................Passed
      flake8...................................................................Passed
      seed isort known_third_party.............................................Failed
      - hook id: seed-isort-config
      - exit code: 1
      - files were modified by this hook
      isort....................................................................Passed
      mypy.....................................................................Failed
      - hook id: mypy
      - exit code: 2
      
      setup.cfg:45: error: Error importing plugin 'numpy.typing.mypy_plugin': No module named 'numpy'
      Found 1 error in 1 file (checked 197 source files)
      ```
      31d600cc
  9. 01 Aug, 2021 1 commit
  10. 27 Jul, 2021 1 commit
  11. 12 Jul, 2021 1 commit
  12. 27 May, 2021 1 commit
    • anj-s's avatar
      [docs] Revamp FairScale documentation (#698) · dcfb7a99
      anj-s authored
      * add tutorials
      
      * add new context, modify and delete existing docs
      
      * remove duplicate labels
      
      * modify layout and more nits
      
      * address comments
      
      * fix merge conflicts
      dcfb7a99
  13. 18 May, 2021 1 commit
  14. 26 Apr, 2021 1 commit
  15. 19 Apr, 2021 1 commit
  16. 13 Apr, 2021 1 commit
  17. 02 Apr, 2021 1 commit
  18. 18 Mar, 2021 1 commit
  19. 09 Mar, 2021 1 commit
  20. 25 Feb, 2021 1 commit
  21. 23 Feb, 2021 1 commit
  22. 19 Feb, 2021 1 commit
  23. 22 Oct, 2020 1 commit
  24. 22 Sep, 2020 1 commit
  25. 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
  26. 16 Sep, 2020 1 commit
  27. 11 Sep, 2020 1 commit
  28. 10 Sep, 2020 1 commit
  29. 09 Sep, 2020 2 commits