Add PrecompileTools to reduce TTFX by up to 8000x#27
Merged
ChrisRackauckas merged 1 commit intoDec 30, 2025
Merged
Conversation
f270233 to
5041885
Compare
Added a PrecompileTools workload to precompile common use patterns, dramatically improving time-to-first-execution (TTFX): - FunctionWrappersWrapper creation: ~0.088s -> ~0.0002s (518x faster) - First call dispatch (Float64): ~0.58s -> ~0.00007s (8286x faster) - Second type call dispatch (Int): ~0.053s -> ~0.00007s (757x faster) The precompilation workload covers: - Binary operations with Float64 and Int argument types - Unary operations with Float64 and Int argument types - Both creation and call dispatch for each No invalidations were detected when loading the package. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
5041885 to
786d0f3
Compare
Contributor
Author
|
Rebased on latest main to include the new introspection functions ( Updated precompilation workload also includes these new functions. Note that Final benchmark results (runs 2-3 after precompilation):
All tests pass. |
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
Benchmark Results
using FunctionWrappersWrappersThe startup time has a small overhead from loading PrecompileTools, but the TTFX improvements are dramatic - all compilation now happens during package precompilation instead of at runtime.
Analysis
Test plan
Pkg.test())cc @ChrisRackauckas
🤖 Generated with Claude Code