Removed identity function because ist is incorrect.

This commit is contained in:
2023-02-24 21:04:26 +01:00
parent be2db961a9
commit 3cb2f272eb
2 changed files with 0 additions and 20 deletions

View File

@@ -32,7 +32,6 @@ dtype tensor_get(const tensor t, const int *index, int *success);
int tensor_init_one(tensor t, int dimension, const int *size);
int tensor_init_zero(tensor t, int dimension, const int *size);
int tensor_init_rand(tensor t, int dimension, const int *size, int max);
int tensor_init_identity(tensor t, int dimension, int size);
void tensor_for_each_elem(tensor t, dtype (*func)(dtype));
void tensor_print(const tensor t);