blob: 1c5f20a08bedde9153ea39ce231bfc4133c6330f [file] [log] [blame]
alexander3c798932021-03-26 21:42:19 +00001/*
2 * Copyright (c) 2021 Arm Limited. All rights reserved.
3 * SPDX-License-Identifier: Apache-2.0
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
alexander3c798932021-03-26 21:42:19 +000017#include "TensorFlowLiteMicro.hpp"
18#include "Wav2LetterModel.hpp"
19#include "TestData_asr.hpp"
20
21#include <catch.hpp>
22#include <random>
23
Isabella Gottardi2181d0a2021-04-07 09:27:38 +010024namespace test {
alexander3c798932021-03-26 21:42:19 +000025namespace asr {
26
27bool RunInference(arm::app::Model& model, const int8_t vec[], const size_t copySz)
28{
29 TfLiteTensor* inputTensor = model.GetInputTensor(0);
30 REQUIRE(inputTensor);
31
32 memcpy(inputTensor->data.data, vec, copySz);
33
34 return model.RunInference();
35}
36
37bool RunInferenceRandom(arm::app::Model& model)
38{
39 TfLiteTensor* inputTensor = model.GetInputTensor(0);
40 REQUIRE(inputTensor);
41
42 std::random_device rndDevice;
43 std::mt19937 mersenneGen{rndDevice()};
44 std::uniform_int_distribution<short> dist {-128, 127};
45
46 auto gen = [&dist, &mersenneGen](){
47 return dist(mersenneGen);
48 };
49
50 std::vector<int8_t> randomAudio(inputTensor->bytes);
51 std::generate(std::begin(randomAudio), std::end(randomAudio), gen);
52
53 REQUIRE(RunInference(model, randomAudio.data(), inputTensor->bytes));
54 return true;
55}
56
Richard Burton0d110592021-08-12 17:26:30 +010057TEST_CASE("Running random inference with Tflu and Wav2LetterModel Int8", "[Wav2Letter]")
alexander3c798932021-03-26 21:42:19 +000058{
59 arm::app::Wav2LetterModel model{};
60
61 REQUIRE_FALSE(model.IsInited());
62 REQUIRE(model.Init());
63 REQUIRE(model.IsInited());
64
65 REQUIRE(RunInferenceRandom(model));
66}
67
68
69template<typename T>
70void TestInference(const T* input_goldenFV, const T* output_goldenFV, arm::app::Model& model)
71{
72 TfLiteTensor* inputTensor = model.GetInputTensor(0);
73 REQUIRE(inputTensor);
74
75 REQUIRE(RunInference(model, input_goldenFV, inputTensor->bytes));
76
77 TfLiteTensor* outputTensor = model.GetOutputTensor(0);
78
79 REQUIRE(outputTensor);
Richard Burton00553462021-11-10 16:27:14 +000080 REQUIRE(outputTensor->bytes == OFM_0_DATA_SIZE);
alexander3c798932021-03-26 21:42:19 +000081 auto tensorData = tflite::GetTensorData<T>(outputTensor);
82 REQUIRE(tensorData);
83
84 for (size_t i = 0; i < outputTensor->bytes; i++) {
Isabella Gottardi79d41542021-10-20 15:52:32 +010085 REQUIRE(static_cast<int>(tensorData[i]) == static_cast<int>(((T)output_goldenFV[i])));
alexander3c798932021-03-26 21:42:19 +000086 }
87}
88
Richard Burton0d110592021-08-12 17:26:30 +010089TEST_CASE("Running inference with Tflu and Wav2LetterModel Int8", "[Wav2Letter]")
alexander3c798932021-03-26 21:42:19 +000090{
Richard Burton00553462021-11-10 16:27:14 +000091 REQUIRE(NUMBER_OF_IFM_FILES == NUMBER_OF_OFM_FILES);
92 for (uint32_t i = 0 ; i < NUMBER_OF_IFM_FILES; ++i) {
alexander3c798932021-03-26 21:42:19 +000093 auto input_goldenFV = get_ifm_data_array(i);;
94 auto output_goldenFV = get_ofm_data_array(i);
95
96 DYNAMIC_SECTION("Executing inference with re-init")
97 {
98 arm::app::Wav2LetterModel model{};
99
100 REQUIRE_FALSE(model.IsInited());
101 REQUIRE(model.Init());
102 REQUIRE(model.IsInited());
103
104 TestInference<int8_t>(input_goldenFV, output_goldenFV, model);
105
106 }
107 }
108}
109
110} //namespace
111} //namespace