-
Notifications
You must be signed in to change notification settings - Fork 61
Remove clang::optnone attribute for IgammaFunctor #2351
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
base: main
Are you sure you want to change the base?
Conversation
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.
Pull Request Overview
This PR removes the [[clang::optnone]] attribute from the IgammaFunctor::operator() method, which was previously added as a workaround for a compiler issue that is no longer present.
Key Changes:
- Removal of the
[[clang::optnone]]optimization suppression attribute from the IgammaFunctor's function call operator
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Performance outliers, please check!
|
CuiYifeng
left a comment
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.
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.
Pull Request Overview
Copilot reviewed 1 out of 1 changed files in this pull request and generated no new comments.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This "clang::optnone" attribute was added by commit c303e58, which may be a work-around to solve compiler issue at that time. Now we don't need it anymore.