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

Commit 0e2a6979 authored by Lev Proleev's avatar Lev Proleev Committed by android-build-merger
Browse files

Add exceptions to the signed quantization coupling tests

am: 673fdcf4

Change-Id: I37e76c28b8c7e2a4dbdabe439b8a1f79e78429f0
parents ecdd667f 673fdcf4
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -452,7 +452,7 @@ void Execute(const sp<IDevice>& device, const TestModel& testModel, TestKind tes
            EvaluatePreparedModel(preparedModel, testModel, TestKind::DYNAMIC_SHAPE);
        } break;
        case TestKind::QUANTIZATION_COUPLING: {
            ASSERT_TRUE(testModel.hasQuant8AsymmOperands());
            ASSERT_TRUE(testModel.hasQuant8CoupledOperands());
            createPreparedModel(device, model, &preparedModel, /*reportSkipping*/ false);
            TestModel signedQuantizedModel = convertQuant8AsymmOperandsToSigned(testModel);
            sp<IPreparedModel> preparedCoupledModel;
@@ -521,7 +521,7 @@ INSTANTIATE_GENERATED_TEST(DynamicOutputShapeTest,
                           [](const TestModel& testModel) { return !testModel.expectFailure; });

INSTANTIATE_GENERATED_TEST(DISABLED_QuantizationCouplingTest, [](const TestModel& testModel) {
    return testModel.hasQuant8AsymmOperands() && testModel.operations.size() == 1;
    return testModel.hasQuant8CoupledOperands() && testModel.operations.size() == 1;
});

}  // namespace android::hardware::neuralnetworks::V1_3::vts::functional