-
Notifications
You must be signed in to change notification settings - Fork 5.8k
8255210: [Vector API] jdk/incubator/vector/Int256VectorTests.java crashes on AVX512 machines #791
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
Conversation
…shes on AVX512 machines
👋 Welcome back jiefu! A progress list of the required criteria for merging this PR into |
/issue add JDK-8255210 |
@DamonFool This issue is referenced in the PR title - it will now be updated. |
@DamonFool |
@DamonFool The |
/test |
@DamonFool you need to get approval to run the tests in tier1 for commits up until ca83af3 |
Hi @jatin-bhateja , Thanks for your reminder. I've also noticed these problems. So I plan to file another bug to fix them when the reproducer is ready. 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 based on same changes made previously for short vectors.
Good if Sandhya (@sviswa7) et. al. can review also.
@DamonFool This change now passes all automated pre-integration checks. ℹ️ This project also has non-automated pre-integration requirements. Please see the file CONTRIBUTING.md for details. After integration, the commit message for the final commit will be:
You can use pull request commands such as /summary, /contributor and /issue to adjust it as needed. At the time when this comment was updated there had been 14 new commits pushed to the
As there are no conflicts, your changes will automatically be rebased on top of these commits when integrating. If you prefer to avoid this automatic rebasing, please check the documentation for the /integrate command for further details. ➡️ To integrate this PR with the above commit message to the |
The fix looks good to me as well. |
Sure , this fix looks good. |
/reviewer credit @sviswa7 , @jatin-bhateja |
@DamonFool Reviewer |
Thanks @PaulSandoz , @sviswa7 and @jatin-bhateja for your review. |
/integrate |
@DamonFool Since your change was applied there have been 15 commits pushed to the
Your commit was automatically rebased without conflicts. Pushed as commit a824781. 💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored. |
predicate(vector_element_basic_type(n->in(2)) == T_INT && | ||
vector_length(n->in(2)) < 16); // src2 | ||
vector_length(n->in(2)) <= 16); // src2 |
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.
FTR since reduction16I
is gone, vector length check becomes redundant: reductionI
successfully covers the whole range of vectors of int.
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.
Nice catch!
The same case with reductionS.
I'll fix it next time.
Thanks.
Hi all,
Please review the fix of an AVX512 crash for Vector API.
The reason is that reductionI in x86.ad didn't use legVec for code generation, which is required by Assembler::vphaddd.
Testing:
Thanks.
Best regards,
Jie
Progress
Testing
Failed test task
Issue
Reviewers
Download
$ git fetch https://git.openjdk.java.net/jdk pull/791/head:pull/791
$ git checkout pull/791