Home | History | Annotate | Download | only in tests

Lines Matching refs:fdim

928 TEST(math, fdim) {
929 ASSERT_DOUBLE_EQ(0.0, fdim(1.0, 1.0));
930 ASSERT_DOUBLE_EQ(1.0, fdim(2.0, 1.0));
931 ASSERT_DOUBLE_EQ(0.0, fdim(1.0, 2.0));
1544 DoMathDataTest<1>(g_fdim_intel_data, fdim);