File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -526,6 +526,9 @@ macro_rules! impl_float_tests {
526
526
) ;
527
527
}
528
528
529
+ // FIXME: v7 Arm Neon flushes subnormals, violating Rust float opsem
530
+ // see https://github.com/rust-lang/portable-simd/issues/439
531
+ #[ cfg( not( all( target_arch = "arm" , target_feature = "neon" ) ) ) ]
529
532
fn is_normal<const LANES : usize >( ) {
530
533
test_helpers:: test_unary_mask_elementwise(
531
534
& Vector :: <LANES >:: is_normal,
@@ -534,6 +537,9 @@ macro_rules! impl_float_tests {
534
537
) ;
535
538
}
536
539
540
+ // FIXME: v7 Arm Neon flushes subnormals, violating Rust float opsem
541
+ // see https://github.com/rust-lang/portable-simd/issues/439
542
+ #[ cfg( not( all( target_arch = "arm" , target_feature = "neon" ) ) ) ]
537
543
fn is_subnormal<const LANES : usize >( ) {
538
544
test_helpers:: test_unary_mask_elementwise(
539
545
& Vector :: <LANES >:: is_subnormal,
You can’t perform that action at this time.
0 commit comments