Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare 0.4.28 release. #21135

Merged
merged 1 commit into from
May 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,31 @@ Remember to align the itemized text with the first line of an item within a list

## jax 0.4.28

* Bug fixes
* Reverted a change to `make_jaxpr` that was breaking Equinox (#21116).

* Deprecations & removals
* The ``kind`` argument to {func}`jax.numpy.sort` and {func}`jax.numpy.argsort`
is now removed. Use `stable=True` or `stable=False` instead.
* Removed ``get_compute_capability`` from the ``jax.experimental.pallas.gpu``
module. Use the ``compute_capability`` attribute of a GPU device, returned
by {func}`jax.devices` or {func}`jax.local_devices`, instead.

* Changes
* The minimum jaxlib version of this release is 0.4.27.

## jaxlib 0.4.28

* Bug fixes
* Fixes a memory corruption bug in the type name of Array and JIT Python
objects in Python 3.10 or earlier.
* Fixed a warning `'+ptx84' is not a recognized feature for this target`
under CUDA 12.4.
* Fixed a slow compilation problem on CPU.

* Changes
* The Windows build is now built with Clang instead of MSVC.


## jax 0.4.27 (May 7, 2024)

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@

project_name = 'jax'

_current_jaxlib_version = '0.4.27'
_current_jaxlib_version = '0.4.28'
# The following should be updated with each new jaxlib release.
_latest_jaxlib_version_on_pypi = '0.4.27'
_default_cuda12_cudnn_version = '89'
_available_cuda12_cudnn_versions = [_default_cuda12_cudnn_version]
_libtpu_version = '0.1.dev20240507'
_libtpu_version = '0.1.dev20240508'

def load_version_module(pkg_path):
spec = importlib.util.spec_from_file_location(
Expand Down