114 wires and counting

$ follow Google

Keep up with Google in about 3 minutes: what actually shipped — the commits, pull requests, releases, and security advisories that matter.

or

fair warning: these emails are deeply technical. diffs, version numbers, CVEs, benchmark deltas. if that's not your idea of a good read, this isn't your newsletter.

Folds into your digest — weekly by default, monthly if you prefer. Unsubscribe in one click.

$ status

wire 2026-09-08
stories 31

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

JAX removes dead Pallas flags and fixes removal errors

By RepoJournal · Filed · About Google

JAX cleaned up Pallas internals by removing two obsolete flags and a deprecated MemorySpace constant, while improving error messages for the APIs that remain.

Pallas deprecations got sharper. Accessing `MemorySpace.HOST` previously raised a generic `ValueError` because the deprecation was never registered in `jax/_src/deprecations.py`; the code now removes `pltpu-memory-space-host` entirely, since the API compatibility window has passed [1]. The `jax_pallas_use_mosaic_gpu` flag is also gone, as Mosaic GPU no longer supports `pl.pallas_call` [2].

MGpu tests and utilities were tidied in the same pass: `test_parity` drops a redundant condition around `tcgen05.fence`, which is a compiler-level directive, and `utils.py` loses a redundant check [3][4]. The change to removed Pallas APIs should now produce improved error messages [5].

Quick answers

What shipped in Google on September 8, 2026?
JAX cleaned up Pallas internals by removing two obsolete flags and a deprecated MemorySpace constant, while improving error messages for the APIs that remain. In total, 16 commits and 15 pull requests landed.
Who contributed to Google on September 8, 2026?
2 developers shipped this update, including Sergei Lebedev and Chris Jones.
What were the notable Google updates?
[pallas:mosaic] Removed `pltpu-memory-space-host`, [pallas:mgpu] Removed `jax_pallas_use_mosaic_gpu`, and [mgpu] Remove unnecessary condition in `test_parity`.