-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Fix bitrot in PowerPC testing #7211
Conversation
check("vsubuws", 16 * w, absd(i32_1, i32_2)); | ||
// TODO: not getting generated in recent LLVM builds. | ||
// https://github.com/halide/Halide/issues/7208 | ||
// check("vsububs", 16 * w, absd(i8_1, i8_2)); |
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.
It looks like the cause was me accidentally putting these ones in the powerpc section instead of the x86 section! I don't think they're even correct, because the or-two-saturating-subtracts trick only works for unsigned.
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.
I'll take the liberty of pushing a fix to this branch, moving these tests to the right place.
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.
Wait, x86 doesn't have any instructions of those names, does it?
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.
It's vpsubusb on x86, which looked close enough to fool me.
* Fix bitrot in PowerPC testing (See halide#7208) - DataLayout was wrong (and has been for a long time) - simd_op_check_powerpc had errors. Some were easy to fix; the rest I commented out with a TODO since this backend doesn't appear to be in active use. (Want to fix this in preparation for fixing halide#7207) * Move x86 absd tests to the right place Co-authored-by: Andrew Adams <[email protected]>
(See #7208)
(Want to fix this in preparation for fixing #7207)
(Note to reviewers: this isn't being run on the buildbots, so there shouldn't be any failures -- if you want to test right now, run locally and set HL_TARGET appropriately)