This compiler was built for a different program
So some of what it knows applies to your code and some of it does not. That is expected rather than a fault, and it is not something you have configured wrongly.
Nothing is broken
Your build is fine and it is not slower than it would have been. Where a transformation does not apply, you get your ordinary build — the floor is your default compiler, always. You can keep using this exactly as it is.
- 01 proposed 12 marks
- 02 proved 7 marks
- 03 faster 4 marks
- 04 admitted 2 marks
- 05 one compiler one
Why a compiler does not transfer whole
The advantage comes from being specific: transformations chosen because they were worth it for one program, with parameters measured on one kind of machine. That specificity is the product, and it is also the reason a compiler built elsewhere fits your code partially rather than perfectly.
How much carries over is a real number and nobody can guess it. Not us, and not whoever built this one. It depends on how close the two programs are, and the only way to find out is to measure against yours.
Tuning it for your code
Point your agent at a C program you already have and tune from here — not from nothing. What this compiler already knows is the starting position, so you are improving on a real result rather than beginning again.
The result is saved as a new version beside this one. Nothing you have is replaced or lost — that part is enforced rather than intended: the store refuses to overwrite a recorded compiler at all, and writing different bytes under an id that already exists is an error rather than a replacement. Going back to an earlier one is not something you can do yet. Every version is kept and the server can return the exact bytes of any of them; what is missing is the endpoint that hands one back, which is published in the API and answers “not built yet”.
Your projects · Connecting your agent