aboutsummaryrefslogtreecommitdiff
path: root/delegate/src/test
diff options
context:
space:
mode:
authorFinn Williams <Finn.Williams@arm.com>2020-11-30 17:43:28 +0000
committerJim Flynn <jim.flynn@arm.com>2020-12-17 15:34:55 +0000
commit019840d1161738aefd6ebd32ccf4e72e618cae15 (patch)
tree4448bfb2e5d395e739cf11f66c8644b69e3874fd /delegate/src/test
parentc11ba468017b8b06c5c0f83743575d34bad1dd3b (diff)
downloadarmnn-019840d1161738aefd6ebd32ccf4e72e618cae15.tar.gz
IVGCVSW-5374 Provide an Android build for the delegate
Signed-off-by: Finn Williams <Finn.Williams@arm.com> Change-Id: I33eb8c650be654ad891afd2295f2057f13a9d084
Diffstat (limited to 'delegate/src/test')
-rw-r--r--delegate/src/test/GatherTestHelper.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/delegate/src/test/GatherTestHelper.hpp b/delegate/src/test/GatherTestHelper.hpp
index d8bfe37842..fcacf04134 100644
--- a/delegate/src/test/GatherTestHelper.hpp
+++ b/delegate/src/test/GatherTestHelper.hpp
@@ -71,7 +71,7 @@ std::vector<char> CreateGatherTfLiteModel(tflite::TensorType tensorType,
flatbuffers::Offset<void> operatorBuiltinOptions = CreateGatherOptions(flatBufferBuilder).Union();
const std::vector<int> operatorInputs{{0, 1}};
- const std::vector<int> operatorOutputs{{2}};
+ const std::vector<int> operatorOutputs{2};
flatbuffers::Offset<Operator> controlOperator =
CreateOperator(flatBufferBuilder,
0,
@@ -83,7 +83,7 @@ std::vector<char> CreateGatherTfLiteModel(tflite::TensorType tensorType,
operatorBuiltinOptions);
const std::vector<int> subgraphInputs{{0, 1}};
- const std::vector<int> subgraphOutputs{{2}};
+ const std::vector<int> subgraphOutputs{2};
flatbuffers::Offset<SubGraph> subgraph =
CreateSubGraph(flatBufferBuilder,
flatBufferBuilder.CreateVector(tensors.data(), tensors.size()),