summaryrefslogtreecommitdiff
path: root/fw/midi-dials/Drivers/CMSIS/DSP/DSP_Lib_TestSuite/Common/src/statistics_tests/power_tests.c
diff options
context:
space:
mode:
authorjaseg <git@jaseg.de>2020-12-20 15:18:02 +0100
committerjaseg <git@jaseg.de>2020-12-20 15:18:02 +0100
commit94f94260ace13688285fc8c62687079b26c18854 (patch)
tree4691249052e28be4d3515c6d2ed4b40545c21ea7 /fw/midi-dials/Drivers/CMSIS/DSP/DSP_Lib_TestSuite/Common/src/statistics_tests/power_tests.c
parent3559d845d29272050d4d44e18e0bb84e676e48ff (diff)
downloadminikbd-94f94260ace13688285fc8c62687079b26c18854.tar.gz
minikbd-94f94260ace13688285fc8c62687079b26c18854.tar.bz2
minikbd-94f94260ace13688285fc8c62687079b26c18854.zip
Submodule-cache WIP
Diffstat (limited to 'fw/midi-dials/Drivers/CMSIS/DSP/DSP_Lib_TestSuite/Common/src/statistics_tests/power_tests.c')
-rw-r--r--fw/midi-dials/Drivers/CMSIS/DSP/DSP_Lib_TestSuite/Common/src/statistics_tests/power_tests.c36
1 files changed, 0 insertions, 36 deletions
diff --git a/fw/midi-dials/Drivers/CMSIS/DSP/DSP_Lib_TestSuite/Common/src/statistics_tests/power_tests.c b/fw/midi-dials/Drivers/CMSIS/DSP/DSP_Lib_TestSuite/Common/src/statistics_tests/power_tests.c
deleted file mode 100644
index 12c30ea..0000000
--- a/fw/midi-dials/Drivers/CMSIS/DSP/DSP_Lib_TestSuite/Common/src/statistics_tests/power_tests.c
+++ /dev/null
@@ -1,36 +0,0 @@
-#include "jtest.h"
-#include "statistics_test_data.h"
-#include "arr_desc.h"
-#include "arm_math.h" /* FUTs */
-#include "ref.h" /* Reference Functions */
-#include "test_templates.h"
-#include "statistics_templates.h"
-#include "type_abbrev.h"
-
-#define JTEST_ARM_POWER_TEST(suffix, output_type) \
- STATISTICS_DEFINE_TEST_TEMPLATE_BUF1_BLK( \
- power, \
- suffix, \
- TYPE_FROM_ABBREV(suffix), \
- TYPE_FROM_ABBREV(suffix), \
- STATISTICS_SNR_COMPARE_INTERFACE)
-
-JTEST_ARM_POWER_TEST(f32, float32_t);
-JTEST_ARM_POWER_TEST(q31, q63_t);
-JTEST_ARM_POWER_TEST(q15, q63_t);
-JTEST_ARM_POWER_TEST(q7, q31_t);
-
-/*--------------------------------------------------------------------------------*/
-/* Collect all tests in a group. */
-/*--------------------------------------------------------------------------------*/
-
-JTEST_DEFINE_GROUP(power_tests)
-{
- /*
- To skip a test, comment it out.
- */
- JTEST_TEST_CALL(arm_power_f32_test);
- JTEST_TEST_CALL(arm_power_q31_test);
- JTEST_TEST_CALL(arm_power_q15_test);
- JTEST_TEST_CALL(arm_power_q7_test);
-}