We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd4e661 commit 616cb6eCopy full SHA for 616cb6e
crates/core_simd/tests/ops_macros.rs
@@ -514,6 +514,8 @@ macro_rules! impl_float_tests {
514
assert!(n_zero.simd_max(p_zero).to_array().iter().all(|x| *x == 0.));
515
}
516
517
+ #[cfg(not(all(target_arch = "powerpc64", target_feature = "vsx")))]
518
+ // https://gitlab.com/qemu-project/qemu/-/issues/1780
519
fn simd_clamp<const LANES: usize>() {
520
test_helpers::test_3(&|value: [Scalar; LANES], mut min: [Scalar; LANES], mut max: [Scalar; LANES]| {
521
use test_helpers::subnormals::flush_in;
0 commit comments