Skip to content

Commit

Permalink
release v1.4.1 (pytorch#628)
Browse files Browse the repository at this point in the history
Summary:

Releasing v1.4.1

Differential Revision: D53626083
  • Loading branch information
HuanyuZhang authored and facebook-github-bot committed Feb 9, 2024
1 parent a98f0c7 commit 01f2f9b
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## v1.4.1

### Bug fixes
* Fix DP MultiheadAttention (#598)
* Fix: make prv accountant robust to larger epsilons (#606)
* Fix the corner case when the optimizer has no trainable parameters (#619)

## v1.4

Highlight: Upgraded to PyTorch 1.13+ as required dependency
Expand Down
6 changes: 5 additions & 1 deletion conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,12 @@ def create_namespace(doctest_namespace):
Initialize namespace for doctest.
Everything added to `doctest_namespace` will be available in the doctest.
"""
from typing import Set, Union # noqa
from typing import Any, Dict, List, Set, Tuple, Union # noqa

import numpy as np # noqa
import opacus # noqa
import torch # noqa
from torch import nn # noqa

# Adding all imports in the doctest namespace
doctest_namespace.update(**locals())
Expand Down
2 changes: 1 addition & 1 deletion opacus/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = "1.4.0"
__version__ = "1.4.1"

0 comments on commit 01f2f9b

Please sign in to comment.