Declared functions in tensorfunc which will replace the iterators with a more functional aprroach.

This commit is contained in:
2023-09-15 14:06:13 +02:00
parent 0628955e43
commit 8c44b96913
8 changed files with 257 additions and 387 deletions

View File

@@ -6,7 +6,7 @@
#include <stdlib.h>
#include "dtype.h"
inline bool tarray_equals(const dtype* a1, const dtype* a2, uint32_t len);
inline bool tarray_uint32_equals(const uint32_t* a1, const uint32_t* a2, uint32_t len);
bool tarray_equals(const dtype* a1, const dtype* a2, uint32_t len);
bool tarray_uint32_equals(const uint32_t* a1, const uint32_t* a2, uint32_t len);
#endif // _TENSORARRAY_H_INCLUDED_