Skip to content

Commit 616cb6e

Browse files
committed
Disable simd_clamp test on ppc64
1 parent bd4e661 commit 616cb6e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

crates/core_simd/tests/ops_macros.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -514,6 +514,8 @@ macro_rules! impl_float_tests {
514514
assert!(n_zero.simd_max(p_zero).to_array().iter().all(|x| *x == 0.));
515515
}
516516

517+
#[cfg(not(all(target_arch = "powerpc64", target_feature = "vsx")))]
518+
// https://gitlab.com/qemu-project/qemu/-/issues/1780
517519
fn simd_clamp<const LANES: usize>() {
518520
test_helpers::test_3(&|value: [Scalar; LANES], mut min: [Scalar; LANES], mut max: [Scalar; LANES]| {
519521
use test_helpers::subnormals::flush_in;

0 commit comments

Comments
 (0)