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

Commit 8f15d7c0 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

am: f861f7fb

Change-Id: I76b7f650a41a63df10c27e3413848b76bfcb2775
parents e4a7d746 f861f7fb
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);
            }
        });