Add stdlib load-time regression CI check (macOS aarch64)#558
Draft
IanButterworth wants to merge 2 commits into
Draft
Add stdlib load-time regression CI check (macOS aarch64)#558IanButterworth wants to merge 2 commits into
IanButterworth wants to merge 2 commits into
Conversation
Compares the Julia built by the pipeline (candidate) against the nightly associated with the merge-base commit (baseline). For each binary it re-precompiles every stdlib into an isolated, cache-free depot and measures load times, flagging clear regressions (relative and absolute thresholds). - utilities/stdlib_load_time_regression.sh: driver that downloads/extracts both binaries, building the baseline from source if the merge-base nightly is missing, then runs the comparison. Only runs on macOS aarch64. - compare_stdlib_load_times.jl: orchestrator. Per binary, generates a resolved stdlib Project/Manifest with the standard depot, precompiles the whole environment at once into a fresh depot, then measures load times in A/B/B/A/B/A order taking the per-stdlib minimum across repeats. - measure_stdlib_load_times.jl: per-binary helper with generate/precompile/ measure modes; each measure runs one stdlib in its own process so previously-loaded deps don't skew timings. - pipelines/main/misc/stdlib_load_time_regression.yml + launcher upload.
IanButterworth
force-pushed
the
ib/precompile_load_regression_check
branch
from
June 19, 2026 15:06
da68d6e to
82e6009
Compare
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.
Claude:
Compares the Julia built by the pipeline (candidate) against the nightly associated with the merge-base commit (baseline). For each binary it re-precompiles every stdlib into an isolated, cache-free depot and measures load times, flagging clear regressions (relative and absolute thresholds).