-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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: start checking sum of successor likelihoods #99024
JIT: start checking sum of successor likelihoods #99024
Conversation
Add the ability to check that uccessor edge likelihoods sum to 1.0 Verify that successor edge likelihoods sum to 1.0 for the phases up through and including `fgAddInternal`. Fixed a few problems * importer branch folding needs to update likelihoods * gdv likelihood needed some adjustments, especially for the multi-guess case * profile incorporation for OSR methods also needed some fixing. Here we may have inconsistencies so the right answer is not always clear. With this change we now trust the successor edge counts even if they do not sum to the block count. Contributes to dotnet#93020.
Tagging subscribers to this area: @JulieLeeMSFT, @jakobbotsch Issue DetailsAdd the ability to check that uccessor edge likelihoods sum to 1.0 Verify that successor edge likelihoods sum to 1.0 for the phases up through and including Fixed a few problems
Contributes to #93020.
|
@amanasifkhalid PTAL A few small diffs expected. |
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, I'll take another look once you've merged from main. Thanks!
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, thanks!
One runtime failure is #99074, another is (perhaps) #98817
|
Add the ability to check that successor edge likelihoods sum to 1.0 Verify that successor edge likelihoods sum to 1.0 for the phases up through and including
fgAddInternal
.Fixed a few problems
Contributes to #93020.
Diffs