2023-09-03 13:52:45 +02:00
|
|
|
#ifndef _MAIN_H_INCLUDED_
|
|
|
|
|
#define _MAIN_H_INCLUDED_
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "tensor_test.h"
|
2023-09-04 16:41:07 +02:00
|
|
|
#include "tensoriter_test.h"
|
2023-09-03 13:52:45 +02:00
|
|
|
|
2023-09-07 14:48:12 +02:00
|
|
|
#define NUM_TENSOR_TEST_FUNC 18
|
2023-09-07 21:26:45 +02:00
|
|
|
#define NUM_TENSORITER_TEST_FUNC 8
|
2023-09-03 13:52:45 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
void tensor_test_run_all(void);
|
2023-09-04 16:41:07 +02:00
|
|
|
void tensoriter_test_run_all(void);
|
2023-09-03 13:52:45 +02:00
|
|
|
|
|
|
|
|
#endif // _MAIN_H_INCLUDED_
|