From 892fafe510077fac11610a9081fc10de09ffbef3 Mon Sep 17 00:00:00 2001 From: Keith Davis Date: Thu, 26 Nov 2020 17:40:35 +0000 Subject: IVGCVSW-5374 Provide Android Build for Delegate * Fix Arm Android Compiler errors Signed-off-by: Keith Davis Change-Id: If5fae0fda08b6102eb46217564a096f87a3b6740 --- delegate/src/test/QuantizationTestHelper.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'delegate/src/test/QuantizationTestHelper.hpp') diff --git a/delegate/src/test/QuantizationTestHelper.hpp b/delegate/src/test/QuantizationTestHelper.hpp index 2843e43233..e4155040cd 100644 --- a/delegate/src/test/QuantizationTestHelper.hpp +++ b/delegate/src/test/QuantizationTestHelper.hpp @@ -78,8 +78,8 @@ std::vector CreateQuantizationTfLiteModel(tflite::BuiltinOperator quantiza break; } - const std::vector operatorInputs{ {0} }; - const std::vector operatorOutputs{{1}}; + const std::vector operatorInputs{0}; + const std::vector operatorOutputs{1}; flatbuffers::Offset quantizationOperator = CreateOperator(flatBufferBuilder, 0, @@ -88,8 +88,8 @@ std::vector CreateQuantizationTfLiteModel(tflite::BuiltinOperator quantiza operatorBuiltinOptionsType, operatorBuiltinOptions); - const std::vector subgraphInputs{ {0} }; - const std::vector subgraphOutputs{{1}}; + const std::vector subgraphInputs{0}; + const std::vector subgraphOutputs{1}; flatbuffers::Offset subgraph = CreateSubGraph(flatBufferBuilder, flatBufferBuilder.CreateVector(tensors.data(), tensors.size()), -- cgit v1.2.1