From e28e4d5057e735d52d78075075d8db718822aa0e Mon Sep 17 00:00:00 2001 From: lucasdelimanogueira Date: Fri, 26 Apr 2024 18:38:32 -0300 Subject: [PATCH] Add tensors (still need to fix) --- norch/tensor.py | 1 - 1 file changed, 1 deletion(-) diff --git a/norch/tensor.py b/norch/tensor.py index b319598..8ac8d61 100644 --- a/norch/tensor.py +++ b/norch/tensor.py @@ -82,7 +82,6 @@ if __name__ == "__main__": a = Tensor([[1, 2, 3], [1, 2, 3]]) b = Tensor([[1, 2, 3], [1, 2, 3]]) - c = a + b fim = time.time()