doc: record the boot-cache results (#46) - #59
Merged
Conversation
…ection (#46) The 'Re-measured at 12fab4b' section's conclusion — that the remaining start-up cost was a flat profile with no hot spot, and that closing it meant an image rather than micro-optimisation — was right about the remedy and wrong about the diagnosis. A sampling profiler saw list primitives because the cost was spread over hundreds of identical small operations; timing the boot by phase found what those operations were: the compiler, invoked 964 times from inside a warm boot. Records what each of those 964 invocations was, the load-invariant 964 -> 17 result, and the interleaved timings, with the measurement caveat that this box ran at load average 10-18 throughout. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
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.
Follow-up to #57: the
Re-measured at 12fab4bsection ofdoc/PERF-URDR-RESULTS.mdstill says the remaining start-up cost is a flat profile with no hot spot left to cut. #57 cut it, so that section is marked superseded on the start-up side and a new section records what was actually there (the compiler, 964 invocations per warm boot), the load-invariant 964 → 17 result, and the interleaved timings with the load-average caveat.Docs only — no code change.