From e55593f8ff165f3114e524a2bab35122372beecf Mon Sep 17 00:00:00 2001 From: Pierre Stock Date: Mon, 11 Jul 2022 02:06:13 -0700 Subject: [PATCH] release v1.1.3 (#447) Summary: Pull Request resolved: https://github.com/pytorch/opacus/pull/447 Release v1.1.3 Reviewed By: Anonymani, ashkan-software Differential Revision: D37601881 fbshipit-source-id: 289775586ee8f8201d19ed1a17c93051145a76c7 --- CHANGELOG.md | 14 ++++++++++++-- opacus/version.py | 2 +- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 77f64c77..1dcbea70 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,14 +1,24 @@ # Changelog +## v1.1.3 +### Bug fixes +* Support layers with a mix of frozen and learnable parameters (#437) +* Throw an error when params in optimizer are not the same as that of module's in make_private (#439) +* Fix unfold2d and add test (#443) + +### Miscellaneous +* Fix typos in DDP tutorial (#438) +* Replace torch einsum with opt_einsum (#440) + ## v1.1.2 ### Bug fixes * Support tied parameters (#417) * Fix callsite sensitiveness of `zero_grad()` (#422, #423) * Improve microbenchmark argument parsing and tests (#425) -* Fix opacus nn.functional import (#426) +* Fix opacus nn.functional import (#426) ### Miscellaneous * Add microbenchmarks (#412, #416) -* Add more badges to readme (#424) +* Add more badges to readme (#424) ## v1.1.1 ### Bug fixes diff --git a/opacus/version.py b/opacus/version.py index 37337bd4..541f21b5 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.2" +__version__ = "1.1.3"