Skip to content

feat: A100 submits for imaging/pixelization Nautilus + NSS control-cell#42

Merged
Jammy2211 merged 1 commit into
mainfrom
feature/pixelization-a100-submits
May 28, 2026
Merged

feat: A100 submits for imaging/pixelization Nautilus + NSS control-cell#42
Jammy2211 merged 1 commit into
mainfrom
feature/pixelization-a100-submits

Conversation

@Jammy2211
Copy link
Copy Markdown
Contributor

Summary

Pair with the existing delaunay submits. RectangularAdaptImage has essentially identical memory budget to Delaunay (`vram/config.py`: 931 vs 922 MB/replica HST, both cap at batch=16) but its mesh interpolator is pure JAX — PyAutoArray's delaunay interpolator (`autoarray/inversion/mesh/interpolator/delaunay.py:80,249`) calls scipy.spatial.Delaunay via `jax.pure_callback`, the rectangular path doesn't.

This is the decisive test for whether NSS Delaunay's OOM is the `pure_callback` × vmap pytree blow-up (per the project memory note `feedback_jax_pure_callback_const_fold.md`) or generic inversion-matrix memory pressure. If pixelization NSS fits and Delaunay NSS doesn't (which it doesn't — 322592/96/600/602 all OOM'd), the failure mode is the callback.

The Nautilus pixelization cell expected to behave roughly like Nautilus Delaunay (84 ms/eval) since the inversion is structurally similar.

Test plan

  • Both jobs reach sampling and produce metric JSONs.
  • NSS pixelization either completes (confirms pure_callback as Delaunay's blocker) or OOMs at the same allocation (rules out pure_callback, points at generic inversion-heavy vmap).

🤖 Generated with Claude Code

Pair with the existing delaunay submits. RectangularAdaptImage has
essentially identical memory budget to Delaunay per the vram probe
(931 vs 922 MB/replica on HST, both cap at batch=16) but its mesh
interpolator does NOT use jax.pure_callback. PyAutoArray's delaunay
interpolator (autoarray/inversion/mesh/interpolator/delaunay.py:80,249)
calls scipy.spatial.Delaunay via pure_callback; the rectangular path
is pure JAX.

The Nautilus pixelization cell expected to behave roughly like
Nautilus Delaunay (84 ms/eval). The NSS pixelization cell is the
decisive test: if it fits A100 where NSS Delaunay (322592/96/600/602)
OOM'd, the failure mode for NSS Delaunay is the pure_callback × vmap
pytree blow-up — not generic inversion-matrix memory — and the
PyAutoPrompt autofit/nss_chunked_vmap_for_inversion_heavy_likelihoods.md
should re-focus on the pure_callback path.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
@Jammy2211 Jammy2211 merged commit e7db366 into main May 28, 2026
@Jammy2211 Jammy2211 deleted the feature/pixelization-a100-submits branch May 28, 2026 21:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant