From 7b68178a358a5715b69e916191fb32d16cc2153e Mon Sep 17 00:00:00 2001 From: Karthik Prasad Date: Fri, 8 Apr 2022 11:43:15 -0700 Subject: [PATCH] release v1.1.1 (#411) Summary: Pull Request resolved: https://github.com/pytorch/opacus/pull/411 Monthly release of Opacus Reviewed By: ashkan-software Differential Revision: D35348718 fbshipit-source-id: f41b20099a1e00a037a3e68aaf14b51f5ee681b7 --- CHANGELOG.md | 19 ++++++++++++++++--- opacus/version.py | 2 +- 2 files changed, 17 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 594d497a..e9a770ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,28 @@ # Changelog -## v1.1.0 +## v1.1.1 +### Bug fixes +* Fix accountant when using number of steps instead of epochs +* Add params check when converting BatchNorm to GroupNorm (#390) +* Fix typo in gdp accountant mechansim name (#386) +* Fix linter errors (#392) +* Add friendly and detailed message for unsupported layers (#401) +* Run linter on nightly workflow (#399) +* Add warning for Gaussian DP accounting (#400) +* Clone replacement modules on the same device as original (#356) +* Implementing 3D dilation (#408) +* fix(batch_memory_manager): Ensures split_idxs use native python types (#410) +### Miscellaneous +* Migrate nightly CircleCI flows to scheduled pipelines (#402) +* Migrate from ubuntu 16.04 to 20.04 on CircleCI (#403) +## v1.1.0 ### New Feature * Add support for GDP accounting in get_noise_multiplier (#303) - ### Bug fixes * Conservative search for target epsilon in get_noise_multiplier (#348) * Warn and ignore "drop_last" when set in DPDataLoader (#357) * Fix per-layer clipping in distributed (#347) - ### Miscellaneous * Update code of conduct and file headers * Add "Support Ukraine" banner to opacus website homepage diff --git a/opacus/version.py b/opacus/version.py index e97be093..6c72dd73 100644 --- a/opacus/version.py +++ b/opacus/version.py @@ -13,4 +13,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "1.1.0" +__version__ = "1.1.1"