Warm the wasm-jit artifact cache before the run - #362
Merged
Merged
Conversation
The wasm-jit runtime module and the external "C" side libraries are fixed and model-independent, but compiling them costs gigabytes of Cranelift each, and omc reuses an artifact only in a process whose engine configuration matches. Filling the per-user cache once here spares every one of thousands of omc processes that cost: for `Rectifier6pulseFFT` it is 2243 MB of peak RSS instead of 6396 MB. It has to sit outside `runScript`, because the compile does not fit inside the `ulimit -v` the tests run under -- the 28 artifacts peak around 16 GB. Best-effort, so a failure here only means each model compiles what it needs for itself, as it does today. Needs the omc side of it, where `OMC_WASM_PRECOMPILE_CACHE` with no value means the per-user cache. Assisted-by: Claude Opus 5 (1M context)
sjoelund
enabled auto-merge (squash)
September 18, 2026 09:39
sjoelund
disabled auto-merge
September 18, 2026 09:53
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.
The wasm-jit runtime module and the external "C" side libraries are fixed and model-independent, but compiling them costs gigabytes of Cranelift each, and omc reuses an artifact only in a process whose engine configuration matches. Filling the per-user cache once here spares every one of thousands of omc processes that cost: for
Rectifier6pulseFFTit is 2243 MB of peak RSS instead of 6396 MB.It has to sit outside
runScript, because the compile does not fit inside theulimit -vthe tests run under -- the 28 artifacts peak around 16 GB. Best-effort, so a failure here only means each model compiles what it needs for itself, as it does today.Needs the omc side of it, where
OMC_WASM_PRECOMPILE_CACHEwith no value means the per-user cache.Assisted-by: Claude Opus 5 (1M context)