blob: 9a305bf361363a218949b507c6c962e2c2862bc5 [file] [log] [blame]
telsoa01c577f2c2018-08-31 09:22:23 +01001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
David Beckecb56cd2018-09-05 12:52:57 +01003// SPDX-License-Identifier: MIT
telsoa01c577f2c2018-08-31 09:22:23 +01004//
5
6#pragma once
7
Matteo Martincighc601aa62019-10-29 15:03:22 +00008#include "Schema.hpp"
9
keidav01222c7532019-03-14 17:12:10 +000010#include <armnn/Descriptors.hpp>
11#include <armnn/IRuntime.hpp>
12#include <armnn/TypesUtils.hpp>
Matteo Martincighc601aa62019-10-29 15:03:22 +000013#include <armnn/BackendRegistry.hpp>
keidav01222c7532019-03-14 17:12:10 +000014
Matteo Martincighc601aa62019-10-29 15:03:22 +000015#include <armnnTfLiteParser/ITfLiteParser.hpp>
16
17#include <ResolveType.hpp>
18
19#include <test/TensorHelpers.hpp>
20
telsoa01c577f2c2018-08-31 09:22:23 +010021#include <boost/filesystem.hpp>
22#include <boost/assert.hpp>
23#include <boost/format.hpp>
keidav01222c7532019-03-14 17:12:10 +000024
telsoa01c577f2c2018-08-31 09:22:23 +010025#include "flatbuffers/idl.h"
26#include "flatbuffers/util.h"
keidav01222c7532019-03-14 17:12:10 +000027#include "flatbuffers/flexbuffers.h"
telsoa01c577f2c2018-08-31 09:22:23 +010028
29#include <schema_generated.h>
Matteo Martincighc601aa62019-10-29 15:03:22 +000030
telsoa01c577f2c2018-08-31 09:22:23 +010031#include <iostream>
32
33using armnnTfLiteParser::ITfLiteParser;
Aron Virginas-Tarc975f922019-10-23 17:38:17 +010034using armnnTfLiteParser::ITfLiteParserPtr;
telsoa01c577f2c2018-08-31 09:22:23 +010035
Aron Virginas-Tarc975f922019-10-23 17:38:17 +010036using TensorRawPtr = const tflite::TensorT *;
telsoa01c577f2c2018-08-31 09:22:23 +010037struct ParserFlatbuffersFixture
38{
Aron Virginas-Tar1d67a6902018-11-19 10:58:30 +000039 ParserFlatbuffersFixture() :
Aron Virginas-Tarc975f922019-10-23 17:38:17 +010040 m_Parser(nullptr, &ITfLiteParser::Destroy),
Aron Virginas-Tar1d67a6902018-11-19 10:58:30 +000041 m_Runtime(armnn::IRuntime::Create(armnn::IRuntime::CreationOptions())),
42 m_NetworkIdentifier(-1)
telsoa01c577f2c2018-08-31 09:22:23 +010043 {
Aron Virginas-Tarc975f922019-10-23 17:38:17 +010044 ITfLiteParser::TfLiteParserOptions options;
45 options.m_StandInLayerForUnsupported = true;
46
47 m_Parser.reset(ITfLiteParser::CreateRaw(armnn::Optional<ITfLiteParser::TfLiteParserOptions>(options)));
telsoa01c577f2c2018-08-31 09:22:23 +010048 }
49
50 std::vector<uint8_t> m_GraphBinary;
Aron Virginas-Tarc975f922019-10-23 17:38:17 +010051 std::string m_JsonString;
52 ITfLiteParserPtr m_Parser;
53 armnn::IRuntimePtr m_Runtime;
54 armnn::NetworkId m_NetworkIdentifier;
telsoa01c577f2c2018-08-31 09:22:23 +010055
56 /// If the single-input-single-output overload of Setup() is called, these will store the input and output name
57 /// so they don't need to be passed to the single-input-single-output overload of RunTest().
58 std::string m_SingleInputName;
59 std::string m_SingleOutputName;
60
61 void Setup()
62 {
63 bool ok = ReadStringToBinary();
64 if (!ok) {
65 throw armnn::Exception("LoadNetwork failed while reading binary input");
66 }
67
Aron Virginas-Tar1d67a6902018-11-19 10:58:30 +000068 armnn::INetworkPtr network =
69 m_Parser->CreateNetworkFromBinary(m_GraphBinary);
70
71 if (!network) {
72 throw armnn::Exception("The parser failed to create an ArmNN network");
73 }
74
75 auto optimized = Optimize(*network, { armnn::Compute::CpuRef },
76 m_Runtime->GetDeviceSpec());
77 std::string errorMessage;
78
79 armnn::Status ret = m_Runtime->LoadNetwork(m_NetworkIdentifier, move(optimized), errorMessage);
80
81 if (ret != armnn::Status::Success)
telsoa01c577f2c2018-08-31 09:22:23 +010082 {
Aron Virginas-Tar1d67a6902018-11-19 10:58:30 +000083 throw armnn::Exception(
84 boost::str(
85 boost::format("The runtime failed to load the network. "
86 "Error was: %1%. in %2% [%3%:%4%]") %
87 errorMessage %
88 __func__ %
89 __FILE__ %
90 __LINE__));
telsoa01c577f2c2018-08-31 09:22:23 +010091 }
92 }
93
94 void SetupSingleInputSingleOutput(const std::string& inputName, const std::string& outputName)
95 {
96 // Store the input and output name so they don't need to be passed to the single-input-single-output RunTest().
97 m_SingleInputName = inputName;
98 m_SingleOutputName = outputName;
99 Setup();
100 }
101
102 bool ReadStringToBinary()
103 {
Matthew Bentham6c8e8e72019-01-15 17:57:00 +0000104 std::string schemafile(&tflite_schema_start, &tflite_schema_end);
telsoa01c577f2c2018-08-31 09:22:23 +0100105
106 // parse schema first, so we can use it to parse the data after
107 flatbuffers::Parser parser;
108
Matthew Bentham6c8e8e72019-01-15 17:57:00 +0000109 bool ok = parser.Parse(schemafile.c_str());
telsoa01c577f2c2018-08-31 09:22:23 +0100110 BOOST_ASSERT_MSG(ok, "Failed to parse schema file");
111
112 ok &= parser.Parse(m_JsonString.c_str());
113 BOOST_ASSERT_MSG(ok, "Failed to parse json input");
114
115 if (!ok)
116 {
117 return false;
118 }
119
120 {
121 const uint8_t * bufferPtr = parser.builder_.GetBufferPointer();
122 size_t size = static_cast<size_t>(parser.builder_.GetSize());
123 m_GraphBinary.assign(bufferPtr, bufferPtr+size);
124 }
125 return ok;
126 }
127
128 /// Executes the network with the given input tensor and checks the result against the given output tensor.
keidav011b3e2ea2019-02-21 10:07:37 +0000129 /// This assumes the network has a single input and a single output.
Nattapat Chaimanowong649dd952019-01-22 16:10:44 +0000130 template <std::size_t NumOutputDimensions,
131 armnn::DataType ArmnnType,
132 typename DataType = armnn::ResolveType<ArmnnType>>
telsoa01c577f2c2018-08-31 09:22:23 +0100133 void RunTest(size_t subgraphId,
Nattapat Chaimanowong649dd952019-01-22 16:10:44 +0000134 const std::vector<DataType>& inputData,
135 const std::vector<DataType>& expectedOutputData);
telsoa01c577f2c2018-08-31 09:22:23 +0100136
137 /// Executes the network with the given input tensors and checks the results against the given output tensors.
138 /// This overload supports multiple inputs and multiple outputs, identified by name.
Nattapat Chaimanowong649dd952019-01-22 16:10:44 +0000139 template <std::size_t NumOutputDimensions,
140 armnn::DataType ArmnnType,
141 typename DataType = armnn::ResolveType<ArmnnType>>
telsoa01c577f2c2018-08-31 09:22:23 +0100142 void RunTest(size_t subgraphId,
143 const std::map<std::string, std::vector<DataType>>& inputData,
144 const std::map<std::string, std::vector<DataType>>& expectedOutputData);
145
keidav011b3e2ea2019-02-21 10:07:37 +0000146 /// Multiple Inputs, Multiple Outputs w/ Variable Datatypes and different dimension sizes.
147 /// Executes the network with the given input tensors and checks the results against the given output tensors.
148 /// This overload supports multiple inputs and multiple outputs, identified by name along with the allowance for
149 /// the input datatype to be different to the output
150 template <std::size_t NumOutputDimensions,
151 armnn::DataType ArmnnType1,
152 armnn::DataType ArmnnType2,
153 typename DataType1 = armnn::ResolveType<ArmnnType1>,
154 typename DataType2 = armnn::ResolveType<ArmnnType2>>
155 void RunTest(size_t subgraphId,
156 const std::map<std::string, std::vector<DataType1>>& inputData,
157 const std::map<std::string, std::vector<DataType2>>& expectedOutputData);
158
159
160 /// Multiple Inputs, Multiple Outputs w/ Variable Datatypes and different dimension sizes.
161 /// Executes the network with the given input tensors and checks the results against the given output tensors.
162 /// This overload supports multiple inputs and multiple outputs, identified by name along with the allowance for
163 /// the input datatype to be different to the output
164 template<armnn::DataType ArmnnType1,
165 armnn::DataType ArmnnType2,
166 typename DataType1 = armnn::ResolveType<ArmnnType1>,
167 typename DataType2 = armnn::ResolveType<ArmnnType2>>
168 void RunTest(std::size_t subgraphId,
169 const std::map<std::string, std::vector<DataType1>>& inputData,
170 const std::map<std::string, std::vector<DataType2>>& expectedOutputData);
171
keidav01222c7532019-03-14 17:12:10 +0000172 static inline std::string GenerateDetectionPostProcessJsonString(
173 const armnn::DetectionPostProcessDescriptor& descriptor)
174 {
175 flexbuffers::Builder detectPostProcess;
176 detectPostProcess.Map([&]() {
177 detectPostProcess.Bool("use_regular_nms", descriptor.m_UseRegularNms);
178 detectPostProcess.Int("max_detections", descriptor.m_MaxDetections);
179 detectPostProcess.Int("max_classes_per_detection", descriptor.m_MaxClassesPerDetection);
180 detectPostProcess.Int("detections_per_class", descriptor.m_DetectionsPerClass);
181 detectPostProcess.Int("num_classes", descriptor.m_NumClasses);
182 detectPostProcess.Float("nms_score_threshold", descriptor.m_NmsScoreThreshold);
183 detectPostProcess.Float("nms_iou_threshold", descriptor.m_NmsIouThreshold);
184 detectPostProcess.Float("h_scale", descriptor.m_ScaleH);
185 detectPostProcess.Float("w_scale", descriptor.m_ScaleW);
186 detectPostProcess.Float("x_scale", descriptor.m_ScaleX);
187 detectPostProcess.Float("y_scale", descriptor.m_ScaleY);
188 });
189 detectPostProcess.Finish();
190
191 // Create JSON string
192 std::stringstream strStream;
193 std::vector<uint8_t> buffer = detectPostProcess.GetBuffer();
194 std::copy(buffer.begin(), buffer.end(),std::ostream_iterator<int>(strStream,","));
195
196 return strStream.str();
197 }
198
telsoa01c577f2c2018-08-31 09:22:23 +0100199 void CheckTensors(const TensorRawPtr& tensors, size_t shapeSize, const std::vector<int32_t>& shape,
200 tflite::TensorType tensorType, uint32_t buffer, const std::string& name,
201 const std::vector<float>& min, const std::vector<float>& max,
202 const std::vector<float>& scale, const std::vector<int64_t>& zeroPoint)
203 {
204 BOOST_CHECK(tensors);
205 BOOST_CHECK_EQUAL(shapeSize, tensors->shape.size());
206 BOOST_CHECK_EQUAL_COLLECTIONS(shape.begin(), shape.end(), tensors->shape.begin(), tensors->shape.end());
207 BOOST_CHECK_EQUAL(tensorType, tensors->type);
208 BOOST_CHECK_EQUAL(buffer, tensors->buffer);
209 BOOST_CHECK_EQUAL(name, tensors->name);
210 BOOST_CHECK(tensors->quantization);
211 BOOST_CHECK_EQUAL_COLLECTIONS(min.begin(), min.end(), tensors->quantization.get()->min.begin(),
212 tensors->quantization.get()->min.end());
213 BOOST_CHECK_EQUAL_COLLECTIONS(max.begin(), max.end(), tensors->quantization.get()->max.begin(),
214 tensors->quantization.get()->max.end());
215 BOOST_CHECK_EQUAL_COLLECTIONS(scale.begin(), scale.end(), tensors->quantization.get()->scale.begin(),
216 tensors->quantization.get()->scale.end());
217 BOOST_CHECK_EQUAL_COLLECTIONS(zeroPoint.begin(), zeroPoint.end(),
218 tensors->quantization.get()->zero_point.begin(),
219 tensors->quantization.get()->zero_point.end());
220 }
221};
222
keidav011b3e2ea2019-02-21 10:07:37 +0000223/// Single Input, Single Output
224/// Executes the network with the given input tensor and checks the result against the given output tensor.
225/// This overload assumes the network has a single input and a single output.
Nattapat Chaimanowong649dd952019-01-22 16:10:44 +0000226template <std::size_t NumOutputDimensions,
keidav011b3e2ea2019-02-21 10:07:37 +0000227 armnn::DataType armnnType,
Nattapat Chaimanowong649dd952019-01-22 16:10:44 +0000228 typename DataType>
telsoa01c577f2c2018-08-31 09:22:23 +0100229void ParserFlatbuffersFixture::RunTest(size_t subgraphId,
230 const std::vector<DataType>& inputData,
231 const std::vector<DataType>& expectedOutputData)
232{
keidav011b3e2ea2019-02-21 10:07:37 +0000233 RunTest<NumOutputDimensions, armnnType>(subgraphId,
Nattapat Chaimanowong649dd952019-01-22 16:10:44 +0000234 { { m_SingleInputName, inputData } },
235 { { m_SingleOutputName, expectedOutputData } });
telsoa01c577f2c2018-08-31 09:22:23 +0100236}
237
keidav011b3e2ea2019-02-21 10:07:37 +0000238/// Multiple Inputs, Multiple Outputs
239/// Executes the network with the given input tensors and checks the results against the given output tensors.
240/// This overload supports multiple inputs and multiple outputs, identified by name.
Nattapat Chaimanowong649dd952019-01-22 16:10:44 +0000241template <std::size_t NumOutputDimensions,
keidav011b3e2ea2019-02-21 10:07:37 +0000242 armnn::DataType armnnType,
Nattapat Chaimanowong649dd952019-01-22 16:10:44 +0000243 typename DataType>
244void ParserFlatbuffersFixture::RunTest(size_t subgraphId,
245 const std::map<std::string, std::vector<DataType>>& inputData,
246 const std::map<std::string, std::vector<DataType>>& expectedOutputData)
telsoa01c577f2c2018-08-31 09:22:23 +0100247{
keidav011b3e2ea2019-02-21 10:07:37 +0000248 RunTest<NumOutputDimensions, armnnType, armnnType>(subgraphId, inputData, expectedOutputData);
249}
250
251/// Multiple Inputs, Multiple Outputs w/ Variable Datatypes
252/// Executes the network with the given input tensors and checks the results against the given output tensors.
253/// This overload supports multiple inputs and multiple outputs, identified by name along with the allowance for
254/// the input datatype to be different to the output
255template <std::size_t NumOutputDimensions,
256 armnn::DataType armnnType1,
257 armnn::DataType armnnType2,
258 typename DataType1,
259 typename DataType2>
260void ParserFlatbuffersFixture::RunTest(size_t subgraphId,
261 const std::map<std::string, std::vector<DataType1>>& inputData,
262 const std::map<std::string, std::vector<DataType2>>& expectedOutputData)
263{
Aron Virginas-Tar1d67a6902018-11-19 10:58:30 +0000264 // Setup the armnn input tensors from the given vectors.
265 armnn::InputTensors inputTensors;
266 for (auto&& it : inputData)
telsoa01c577f2c2018-08-31 09:22:23 +0100267 {
Jim Flynnb4d7eae2019-05-01 14:44:27 +0100268 armnn::BindingPointInfo bindingInfo = m_Parser->GetNetworkInputBindingInfo(subgraphId, it.first);
keidav011b3e2ea2019-02-21 10:07:37 +0000269 armnn::VerifyTensorInfoDataType(bindingInfo.second, armnnType1);
Aron Virginas-Tar1d67a6902018-11-19 10:58:30 +0000270 inputTensors.push_back({ bindingInfo.first, armnn::ConstTensor(bindingInfo.second, it.second.data()) });
271 }
telsoa01c577f2c2018-08-31 09:22:23 +0100272
Aron Virginas-Tar1d67a6902018-11-19 10:58:30 +0000273 // Allocate storage for the output tensors to be written to and setup the armnn output tensors.
keidav011b3e2ea2019-02-21 10:07:37 +0000274 std::map<std::string, boost::multi_array<DataType2, NumOutputDimensions>> outputStorage;
Aron Virginas-Tar1d67a6902018-11-19 10:58:30 +0000275 armnn::OutputTensors outputTensors;
276 for (auto&& it : expectedOutputData)
277 {
Narumol Prangnawarat386681a2019-04-29 16:40:55 +0100278 armnn::LayerBindingId outputBindingId = m_Parser->GetNetworkOutputBindingInfo(subgraphId, it.first).first;
279 armnn::TensorInfo outputTensorInfo = m_Runtime->GetOutputTensorInfo(m_NetworkIdentifier, outputBindingId);
280
281 // Check that output tensors have correct number of dimensions (NumOutputDimensions specified in test)
282 auto outputNumDimensions = outputTensorInfo.GetNumDimensions();
283 BOOST_CHECK_MESSAGE((outputNumDimensions == NumOutputDimensions),
284 boost::str(boost::format("Number of dimensions expected %1%, but got %2% for output layer %3%")
285 % NumOutputDimensions
286 % outputNumDimensions
287 % it.first));
288
289 armnn::VerifyTensorInfoDataType(outputTensorInfo, armnnType2);
290 outputStorage.emplace(it.first, MakeTensor<DataType2, NumOutputDimensions>(outputTensorInfo));
Aron Virginas-Tar1d67a6902018-11-19 10:58:30 +0000291 outputTensors.push_back(
Narumol Prangnawarat386681a2019-04-29 16:40:55 +0100292 { outputBindingId, armnn::Tensor(outputTensorInfo, outputStorage.at(it.first).data()) });
Aron Virginas-Tar1d67a6902018-11-19 10:58:30 +0000293 }
telsoa01c577f2c2018-08-31 09:22:23 +0100294
Aron Virginas-Tar1d67a6902018-11-19 10:58:30 +0000295 m_Runtime->EnqueueWorkload(m_NetworkIdentifier, inputTensors, outputTensors);
telsoa01c577f2c2018-08-31 09:22:23 +0100296
Aron Virginas-Tar1d67a6902018-11-19 10:58:30 +0000297 // Compare each output tensor to the expected values
298 for (auto&& it : expectedOutputData)
299 {
Jim Flynnb4d7eae2019-05-01 14:44:27 +0100300 armnn::BindingPointInfo bindingInfo = m_Parser->GetNetworkOutputBindingInfo(subgraphId, it.first);
keidav011b3e2ea2019-02-21 10:07:37 +0000301 auto outputExpected = MakeTensor<DataType2, NumOutputDimensions>(bindingInfo.second, it.second);
Aron Virginas-Tar1d67a6902018-11-19 10:58:30 +0000302 BOOST_TEST(CompareTensors(outputExpected, outputStorage[it.first]));
telsoa01c577f2c2018-08-31 09:22:23 +0100303 }
304}
keidav011b3e2ea2019-02-21 10:07:37 +0000305
306/// Multiple Inputs, Multiple Outputs w/ Variable Datatypes and different dimension sizes.
307/// Executes the network with the given input tensors and checks the results against the given output tensors.
308/// This overload supports multiple inputs and multiple outputs, identified by name along with the allowance for
309/// the input datatype to be different to the output.
310template <armnn::DataType armnnType1,
311 armnn::DataType armnnType2,
312 typename DataType1,
313 typename DataType2>
314void ParserFlatbuffersFixture::RunTest(std::size_t subgraphId,
315 const std::map<std::string, std::vector<DataType1>>& inputData,
316 const std::map<std::string, std::vector<DataType2>>& expectedOutputData)
317{
keidav011b3e2ea2019-02-21 10:07:37 +0000318 // Setup the armnn input tensors from the given vectors.
319 armnn::InputTensors inputTensors;
320 for (auto&& it : inputData)
321 {
Jim Flynnb4d7eae2019-05-01 14:44:27 +0100322 armnn::BindingPointInfo bindingInfo = m_Parser->GetNetworkInputBindingInfo(subgraphId, it.first);
keidav011b3e2ea2019-02-21 10:07:37 +0000323 armnn::VerifyTensorInfoDataType(bindingInfo.second, armnnType1);
324
325 inputTensors.push_back({ bindingInfo.first, armnn::ConstTensor(bindingInfo.second, it.second.data()) });
326 }
327
328 armnn::OutputTensors outputTensors;
329 outputTensors.reserve(expectedOutputData.size());
330 std::map<std::string, std::vector<DataType2>> outputStorage;
331 for (auto&& it : expectedOutputData)
332 {
Jim Flynnb4d7eae2019-05-01 14:44:27 +0100333 armnn::BindingPointInfo bindingInfo = m_Parser->GetNetworkOutputBindingInfo(subgraphId, it.first);
keidav011b3e2ea2019-02-21 10:07:37 +0000334 armnn::VerifyTensorInfoDataType(bindingInfo.second, armnnType2);
335
336 std::vector<DataType2> out(it.second.size());
337 outputStorage.emplace(it.first, out);
338 outputTensors.push_back({ bindingInfo.first,
339 armnn::Tensor(bindingInfo.second,
340 outputStorage.at(it.first).data()) });
341 }
342
343 m_Runtime->EnqueueWorkload(m_NetworkIdentifier, inputTensors, outputTensors);
344
345 // Checks the results.
346 for (auto&& it : expectedOutputData)
347 {
348 std::vector<DataType2> out = outputStorage.at(it.first);
349 {
350 for (unsigned int i = 0; i < out.size(); ++i)
351 {
352 BOOST_TEST(it.second[i] == out[i], boost::test_tools::tolerance(0.000001f));
353 }
354 }
355 }
Aron Virginas-Tarc975f922019-10-23 17:38:17 +0100356}