From 31ae9f09bb3535975595e999fbc7baca889e46e8 Mon Sep 17 00:00:00 2001 From: alexander Date: Thu, 10 Feb 2022 16:15:54 +0000 Subject: MLECO-2682: CMake and source refactoring. MLECO-2930: logging macros were extracted from hal.h and used separately around the code. MLECO-2931: arm_math lib introduced, cmsis-dsp removed from top level linkage. MLECO-2915: platform related post-build steps. Change-Id: Id718884e22f262a5c070ded3f3f5d4b048820147 Signed-off-by: alexander --- tests/use_case/kws_asr/InferenceTestMicroNetKws.cc | 1 - tests/use_case/kws_asr/InferenceTestWav2Letter.cc | 1 - tests/use_case/kws_asr/MfccTests.cc | 9 --------- tests/use_case/kws_asr/Wav2LetterPreprocessingTest.cc | 7 ------- 4 files changed, 18 deletions(-) (limited to 'tests/use_case/kws_asr') diff --git a/tests/use_case/kws_asr/InferenceTestMicroNetKws.cc b/tests/use_case/kws_asr/InferenceTestMicroNetKws.cc index fd379b6..a493021 100644 --- a/tests/use_case/kws_asr/InferenceTestMicroNetKws.cc +++ b/tests/use_case/kws_asr/InferenceTestMicroNetKws.cc @@ -15,7 +15,6 @@ * limitations under the License. */ #include "MicroNetKwsModel.hpp" -#include "hal.h" #include "TestData_kws.hpp" #include "TensorFlowLiteMicro.hpp" diff --git a/tests/use_case/kws_asr/InferenceTestWav2Letter.cc b/tests/use_case/kws_asr/InferenceTestWav2Letter.cc index 477a1dd..1c5f20a 100644 --- a/tests/use_case/kws_asr/InferenceTestWav2Letter.cc +++ b/tests/use_case/kws_asr/InferenceTestWav2Letter.cc @@ -14,7 +14,6 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#include "hal.h" #include "TensorFlowLiteMicro.hpp" #include "Wav2LetterModel.hpp" #include "TestData_asr.hpp" diff --git a/tests/use_case/kws_asr/MfccTests.cc b/tests/use_case/kws_asr/MfccTests.cc index c0fb723..3ebdcf4 100644 --- a/tests/use_case/kws_asr/MfccTests.cc +++ b/tests/use_case/kws_asr/MfccTests.cc @@ -124,15 +124,6 @@ template void TestQuantisedMFCC(); 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); diff --git a/tests/use_case/kws_asr/Wav2LetterPreprocessingTest.cc b/tests/use_case/kws_asr/Wav2LetterPreprocessingTest.cc index 16dbea2..26ddb24 100644 --- a/tests/use_case/kws_asr/Wav2LetterPreprocessingTest.cc +++ b/tests/use_case/kws_asr/Wav2LetterPreprocessingTest.cc @@ -97,13 +97,6 @@ void PopulateTestWavVector(std::vector& vec) TEST_CASE("Preprocessing calculation INT8") { - /* Initialise the HAL and platform. */ - hal_platform platform; - data_acq_module data_acq; - data_psn_module data_psn; - platform_timer timer; - hal_init(&platform, &data_acq, &data_psn, &timer); - hal_platform_init(&platform); /* Constants. */ const uint32_t windowLen = 512; -- cgit v1.2.1