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 27da1ff commit 270f0a1Copy full SHA for 270f0a1
libc/test/src/math/expbf16_test.cpp
@@ -31,23 +31,6 @@ TEST_F(LlvmLibcExpBf16Test, PositiveRange) {
31
EXPECT_MPFR_MATCH_ALL_ROUNDING(mpfr::Operation::Exp, x,
32
LIBC_NAMESPACE::expbf16(x), 0.5);
33
}
34
-
35
- auto test_value = [&](uint16_t v) {
36
- bfloat16 x = FPBits(v).get_val();
37
- EXPECT_MPFR_MATCH_ALL_ROUNDING(mpfr::Operation::Exp, x,
38
- LIBC_NAMESPACE::expbf16(x), 0.5);
39
- };
40
41
- auto test_value_f = [&](float v) {
42
- bfloat16 x(v);
43
44
45
46
47
- test_value(0xc2c8);
48
- test_value(0xc2ba);
49
50
- test_value_f(17.45f);
51
52
53
TEST_F(LlvmLibcExpBf16Test, NegativeRange) {
0 commit comments