16 lines
275 B
C
16 lines
275 B
C
#ifndef _MAIN_H_INCLUDED_
|
|
#define _MAIN_H_INCLUDED_
|
|
|
|
|
|
#include "tensor_test.h"
|
|
#include "tensoriter_test.h"
|
|
|
|
#define NUM_TENSOR_TEST_FUNC 14
|
|
#define NUM_TENSORITER_TEST_FUNC 7
|
|
|
|
|
|
void tensor_test_run_all(void);
|
|
void tensoriter_test_run_all(void);
|
|
|
|
#endif // _MAIN_H_INCLUDED_
|