-
Notifications
You must be signed in to change notification settings - Fork 493
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix manifest.in * remove tools dir * __version__.py: 0.2.0 * update readme * fix docs * fix best-practice.md * readme: nccl path * readme: improve * readme: improve * add changelog.rst * fix changelog * readme: add pypi badge and news * improve readme and changelog
- Loading branch information
Showing
11 changed files
with
81 additions
and
207 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
Changelog for BytePS | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
0.2.0 (2020-02) | ||
------------------ | ||
* Largely improve RDMA performance by enforcing page aligned memory. | ||
* Add IPC support for RDMA. Now support colocating servers and workers without sacrificing much performance. | ||
* Fix a hanging bug in BytePS server. | ||
* Fix RDMA-related segmentation fault problem during fork() (e.g., used by PyTorch data loader). | ||
* New feature: Enable mixing use of colocate and non-colocate servers, along with a smart tensor allocation strategy. | ||
* New feature: Add ``bpslaunch`` as the command to launch tasks. | ||
* Add support for pip install: ``pip3 install byteps`` | ||
|
||
|
||
0.1.0 (2019-12) | ||
------------------ | ||
* First official release. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
include */* | ||
include */* LICENSE byteps.lds byteps.exp | ||
exclude .git/* | ||
recursive-include * *.cc *.h | ||
graft 3rdparty/ps-lite |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
VERSION = (0, 1, 0) | ||
VERSION = (0, 2, 0) | ||
|
||
__version__ = '.'.join(map(str, VERSION)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.