Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f861f7fb authored by Ray Sung's avatar Ray Sung Committed by android-build-merger
Browse files

Merge "Relax tolerance for FP comparison in test harness" into oc-mr1-dev

am: 43850470

Change-Id: I9513c3b1faf027c3fc5a1d1abe4d35eddd7d78de
parents a425770f 43850470
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -172,7 +172,7 @@ void Execute(const sp<IDevice>& device, std::function<Model(void)> create_model,
            auto& test_float = test_float_operands[index];
            for (unsigned int i = 0; i < golden_float.size(); i++) {
                SCOPED_TRACE(i);
                EXPECT_FLOAT_EQ(golden_float[i], test_float[i]);
                EXPECT_NEAR(golden_float[i], test_float[i], 1.e-5);
            }
        });