8000 CI: Implements Cross-Compile Builds for armhf, ppc64le, and s390x by seiko2plus · Pull Request #24479 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

CI: Implements Cross-Compile Builds for armhf, ppc64le, and s390x #24479

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

Merged
merged 3 commits into from
Aug 24, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
BUG: Fix SIMD f32 trunc test on s390x when baseline is none
  • Loading branch information
seiko2plus committed Aug 24, 2023
commit 4be83a5582acda08e5016e59c26fb6eba22f5f99
2 changes: 2 additions & 0 deletions numpy/core/tests/test_simd_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,8 @@ def test_signed_overflow(self, sfx):
assert lanes == [0] * nlanes

def test_truncate_f32(self):
if not npyv.simd_f32:
pytest.skip("F32 isn't support by the SIMD extension")
f32 = npyv.setall_f32(0.1)[0]
assert f32 != 0.1
assert round(f32, 1) == 0.1
Expand Down
0