Remove bypass-.completed stopgap; post-fast-path reference numbers#79
Merged
Conversation
The runtime patch marking bypassed fits complete is a no-op since PyAutoFit#1388 landed the fix in _fit_bypass_test_mode. End-to-end revalidation without it: cold 159s -> any resume ~11-13s (the cold run now writes the fast-path caches itself; PyAutoGalaxy#504+PyAutoLens#619 + Fit#1390). README gains the post-fast-path reference block; the _testmode artifact carries the new run records. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Also fixes the two CI-blocking ruff errors on main in jax_compile/trace_profile.py (unclaimed subtree): the import needs '# isort: skip' — it depends on the preceding sys.path insert, so ruff --fix would have broken it — plus an f-string without placeholders. The repo lint gate runs 'ruff check .' on every PR, so this debt blocked all PRs.
Contributor
Author
|
Also carries a 2-line fix for pre-existing CI-blocking ruff errors on main ( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Removes the runtime stopgap that marked test-mode-bypassed fits complete — a no-op since PyAutoFit#1388 fixed
_fit_bypass_test_mode— and records the post-fast-path reference numbers: cold 159s → any resume ~11–13s (the cold run now writes the per-stage caches itself, so even the first resume is fast). The_testmodeartifact carries the new run records; README distinguishes the post-fix reference from the retained pre-fix baseline.Scripts Changed
pipeline_resume/slam_resume.py— stopgap block removed from_install_resume_timers(PyAutoFit#1388 supersedes it)pipeline_resume/README.md— post-fast-path reference block added; pre-fix decomposition kept as historical baselineresults/pipeline_resume/slam_resume_summary_hst_v2026.7.9.1_testmode.{json,png}— revalidation run records (cold + 2 resumes on the fixed stack)Test Plan
ruff check .clean--resetcold + two resumes, all green, markers written by the library (no stopgap)Closes the last rider of PyAutoFit#1389 / autolens_profiling#70.
🤖 Generated with Claude Code