Added more comments.

This commit is contained in:
2023-09-03 10:06:46 +02:00
parent 427c75f1a6
commit 42546feae1
2 changed files with 54 additions and 4 deletions

View File

@@ -11,7 +11,7 @@ typedef struct _tensor_scalar_iterator {
tensoriter_scalar tensoriter_scalar_create(tensor t);
void tensoriter_scalar_destroy(tensoriter_scalar it);
uint8_t tensoriter_scalar_next(tensoriter_scalar it);
bool tensoriter_scalar_next(tensoriter_scalar it);
dtype *tensoriter_scalar_get(tensoriter_scalar it);
void tensoriter_scalar_map(tensoriter_scalar it, dtype (*func)(dtype));