Skip to content
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

Merged
merged 2 commits into from
Dec 7, 2022
Merged

Fix bitrot in PowerPC testing #7211

merged 2 commits into from
Dec 7, 2022

Conversation

steven-johnson
Copy link
Contributor

@steven-johnson steven-johnson commented Dec 7, 2022

(See #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 #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)

(See #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 #7207)
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));
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

bc5b557

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.

Copy link
Member

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.

Copy link
Contributor Author

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?

Copy link
Member

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.

@steven-johnson steven-johnson merged commit 8ce1212 into main Dec 7, 2022
@steven-johnson steven-johnson deleted the srj/simd-ppc-2 branch December 7, 2022 17:29
ardier pushed a commit to ardier/Halide-mutation that referenced this pull request Mar 3, 2024
* 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]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants