summaryrefslogtreecommitdiff
path: root/tests/use_case/kws
diff options
context:
space:
mode:
Diffstat (limited to 'tests/use_case/kws')
-rw-r--r--tests/use_case/kws/InferenceTestMicroNetKws.cc3
-rw-r--r--tests/use_case/kws/MfccTests.cc9
2 files changed, 1 insertions, 11 deletions
diff --git a/tests/use_case/kws/InferenceTestMicroNetKws.cc b/tests/use_case/kws/InferenceTestMicroNetKws.cc
index e6e7753..41ecc3c 100644
--- a/tests/use_case/kws/InferenceTestMicroNetKws.cc
+++ b/tests/use_case/kws/InferenceTestMicroNetKws.cc
@@ -15,7 +15,6 @@
* limitations under the License.
*/
#include "MicroNetKwsModel.hpp"
-#include "hal.h"
#include "TestData_kws.hpp"
#include "TensorFlowLiteMicro.hpp"
@@ -92,7 +91,7 @@ TEST_CASE("Running inference with TensorFlow Lite Micro and MicroNetKwsModel int
const int8_t* input_goldenFV = get_ifm_data_array(i);;
const int8_t* output_goldenFV = get_ofm_data_array(i);
- DYNAMIC_SECTION("Executing inference with re-init")
+ DYNAMIC_SECTION("Executing inference with re-init " << i)
{
arm::app::MicroNetKwsModel model{};
diff --git a/tests/use_case/kws/MfccTests.cc b/tests/use_case/kws/MfccTests.cc
index 1d30ef4..1f5e321 100644
--- a/tests/use_case/kws/MfccTests.cc
+++ b/tests/use_case/kws/MfccTests.cc
@@ -124,15 +124,6 @@ template void TestQuantisedMFCC<int16_t>();
TEST_CASE("MFCC calculation test") {
- hal_platform platform;
- data_acq_module dataAcq;
- data_psn_module dataPsn;
- platform_timer timer;
-
- /* Initialise the HAL and platform. */
- hal_init(&platform, &dataAcq, &dataPsn, &timer);
- hal_platform_init(&platform);
-
SECTION("FP32")
{
auto mfccOutput = GetMFCCInstance().MfccCompute(testWav);