2023-09-03 13:52:45 +02:00
|
|
|
#ifndef _MAIN_H_INCLUDED_
|
|
|
|
|
#define _MAIN_H_INCLUDED_
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "tensor_test.h"
|
2023-09-15 17:07:31 +02:00
|
|
|
#include "tensorfunc_test.h"
|
2023-09-03 13:52:45 +02:00
|
|
|
|
2023-09-15 17:07:31 +02:00
|
|
|
#define NUM_TENSOR_TEST_FUNC 10
|
|
|
|
|
#define NUM_TENSORFUNC_TEST_FUNC 18
|
2023-09-03 13:52:45 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
void tensor_test_run_all(void);
|
2023-09-15 17:07:31 +02:00
|
|
|
void tensorfunc_test_run_all(void);
|
2023-09-03 13:52:45 +02:00
|
|
|
|
|
|
|
|
#endif // _MAIN_H_INCLUDED_
|