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 7f97038 commit 0ae3da5Copy full SHA for 0ae3da5
libc/test/src/__support/CPP/simd_test.cpp
@@ -55,7 +55,6 @@ TEST(LlvmLibcSIMDTest, ElementwiseOperations) {
55
simd<float> v_rint = rint(splat(3.6f));
56
simd<float> v_canonicalize = canonicalize(splat(1.0f));
57
simd<float> v_copysign = copysign(vf1, vf2);
58
- simd<float> v_fmod = fmod(splat(5.5f), splat(2.0f));
59
60
EXPECT_EQ(v_abs[0], 1);
61
EXPECT_EQ(v_min[0], -1);
@@ -70,7 +69,6 @@ TEST(LlvmLibcSIMDTest, ElementwiseOperations) {
70
69
EXPECT_FP_EQ(v_rint[0], 4.0f);
71
EXPECT_FP_EQ(v_canonicalize[0], 1.0f);
72
EXPECT_FP_EQ(v_copysign[0], -1.0f);
73
- EXPECT_FP_EQ(v_fmod[0], 1.5f);
74
}
75
76
TEST(LlvmLibcSIMDTest, ReductionOperations) {
0 commit comments