-
Notifications
You must be signed in to change notification settings - Fork 4.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
JIT: fix stress issue with profile consistency #101259
JIT: fix stress issue with profile consistency #101259
Conversation
In rare cases profile stress will put weight on unreachable preds of loop blocks, throwing off the cyclic probability computations. Fix by ignoring such preds.
Tagging subscribers to this area: @JulieLeeMSFT, @jakobbotsch |
@amanasifkhalid PTAL No diffs expected; will run stress. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM assuming stress modes pass -- thanks for seeing this through!
/azp run runtime-coreclr libraries-pgo, runtime-coreclr jitstress, runtime-coreclr pgostress, runtime-coreclr pgo |
Azure Pipelines successfully started running 4 pipeline(s). |
/azp run runtime-coreclr libraries-jitstress |
Azure Pipelines successfully started running 1 pipeline(s). |
SPMI replay failure is #101070. |
In rare cases profile stress will put weight on unreachable preds of loop blocks, throwing off the cyclic probability computations. Fix by ignoring such preds.
In rare cases profile stress will put weight on unreachable preds of loop blocks, throwing off the cyclic probability computations.
Fix by ignoring such preds.