Added element wise multiplication. Refined comments.

This commit is contained in:
2023-09-07 13:45:04 +02:00
parent 526deb402e
commit 0af2024991
2 changed files with 53 additions and 4 deletions

View File

@@ -40,8 +40,10 @@ bool tensor_cpy(tensor t1, const tensor t2);
bool tensor_add_inplace(tensor t1, const tensor t2);
bool tensor_sub_inplace(tensor t1, const tensor t2);
bool tensor_mul_inplace(tensor t1, const tensor t2);
tensor tensor_add(const tensor t1, const tensor t2);
tensor tensor_sub(const tensor t1, const tensor t2);
tensor tensor_mul(const tensor t1, const tensor t2);
void tensor_print(const tensor t);