Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
fairscale
Commits
ce9e7e48
Unverified
Commit
ce9e7e48
authored
Feb 10, 2021
by
Benjamin Lefaudeux
Committed by
GitHub
Feb 10, 2021
Browse files
[chore] v0.1.6 (#377)
* v0.1.6
parent
c963a72a
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
16 deletions
+15
-16
.github/workflows/build_wheels.yml
.github/workflows/build_wheels.yml
+4
-15
CHANGELOG.md
CHANGELOG.md
+10
-0
fairscale/__init__.py
fairscale/__init__.py
+1
-1
No files found.
.github/workflows/build_wheels.yml
View file @
ce9e7e48
...
@@ -13,28 +13,17 @@ jobs:
...
@@ -13,28 +13,17 @@ jobs:
runs-on
:
${{ matrix.os }}
runs-on
:
${{ matrix.os }}
strategy
:
strategy
:
matrix
:
matrix
:
os
:
[
ubuntu-
latest
,
macos-latest
]
os
:
[
ubuntu-
20.04
,
macOS-10.15
]
steps
:
steps
:
-
uses
:
actions/checkout@v2
-
uses
:
actions/checkout@v2
-
name
:
Install Python
-
name
:
Install Python
uses
:
actions/setup-python@v2
uses
:
actions/setup-python@v2
with
:
python-version
:
'
3.7'
-
name
:
Install cibuildwheel
-
name
:
Build wheel
run
:
|
run
:
pip install . && pip wheel -w wheelhouse .
python -m pip install cibuildwheel
-
name
:
Build wheels for CPython
run
:
|
python -m cibuildwheel --output-dir dist
env
:
CIBW_BUILD
:
"
cp37-*64
cp38-*64
cp39-*64"
CIBW_MANYLINUX_X86_64_IMAGE
:
manylinux1
CIBW_BEFORE_BUILD
:
pip install .
-
uses
:
actions/upload-artifact@v2
-
uses
:
actions/upload-artifact@v2
with
:
with
:
name
:
wheels
path
:
./wheelhouse/*.whl
path
:
./dist/*.whl
CHANGELOG.md
View file @
ce9e7e48
...
@@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
...
@@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [next rel] - TBD
## [next rel] - TBD
## [0.1.6] - 2021-02-10
### Added
-
Checkpointing model wrapper (#376)
-
Faster OSS, flatbuffers (#371)
-
Small speedup in OSS clipgradnorm (#363)
### Fixed
-
Bug in ShardedDDP with 0.1.5 depending the init (KeyError / OSS)
-
Much refactoring in Pipe (#357, #358, #360, #362, #370, #373)
-
Better pip integration / resident pytorch (#375)
## [0.1.5] - 2021-02-03
## [0.1.5] - 2021-02-03
### Added
### Added
...
...
fairscale/__init__.py
View file @
ce9e7e48
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
# This source code is licensed under the BSD license found in the
# This source code is licensed under the BSD license found in the
# LICENSE file in the root directory of this source tree.
# LICENSE file in the root directory of this source tree.
__version__
=
"0.1.
5
"
__version__
=
"0.1.
6
"
################################################################################
################################################################################
# Import most common subpackages
# Import most common subpackages
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment