We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fab152a commit 73e3a92Copy full SHA for 73e3a92
crates/core_simd/tests/ops_macros.rs
@@ -284,7 +284,27 @@ macro_rules! impl_float_tests {
284
#[test]
285
fn is_nan() {
286
test_helpers::test_unary_mask_elementwise(
287
- &Vector::<1>::is_nan,
+ &Vector::<2>::is_nan,
288
+ &Scalar::is_nan,
289
+ &|_| true,
290
+ );
291
+ test_helpers::test_unary_mask_elementwise(
292
+ &Vector::<8>::is_nan,
293
294
295
296
297
+ &Vector::<16>::is_nan,
298
299
300
301
302
+ &Vector::<32>::is_nan,
303
304
305
306
307
+ &Vector::<64>::is_nan,
308
&Scalar::is_nan,
309
&|_| true,
310
);
0 commit comments