blob: 1427ee201f46138a8a16c353580d40985ccffacb [file] [log] [blame]
/*
* Copyright (c) 2021 Stephanos Ioannidis <root@stephanos.io>
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <ztest.h>
#include <zephyr.h>
extern void test_bayes_f16(void);
extern void test_bayes_f32(void);
void test_main(void)
{
#ifdef CONFIG_CMSIS_DSP_FLOAT16
test_bayes_f16();
#endif
test_bayes_f32();
}