From 7ba99e2de46ffdf99b14d65db0bddf2d41235e71 Mon Sep 17 00:00:00 2001
From: NAUD Maxence <maxence.naud@cea.fr>
Date: Fri, 16 Feb 2024 16:11:39 +0000
Subject: [PATCH] [WIP][NF] Start Tensor changes

- [Add] ``zeros()`` member function to set implpementation elements to 0
- [unit_tests][NF] Add many more cases in Test_TensorImpl.cpp
- [include] update includes in Tensor.hpp
---
 unit_tests/data/Test_TensorImpl.cpp | 2 --
 1 file changed, 2 deletions(-)

diff --git a/unit_tests/data/Test_TensorImpl.cpp b/unit_tests/data/Test_TensorImpl.cpp
index e463a7875..725565312 100644
--- a/unit_tests/data/Test_TensorImpl.cpp
+++ b/unit_tests/data/Test_TensorImpl.cpp
@@ -74,8 +74,6 @@ TEST_CASE("[backend/cpu/data] Tensor", "[Tensor]") {
         x = Array3D<int, 2, 2, 2>{{{{1, 2}, {3, 4}}, {{5, 6}, {7, 8}}}};
         REQUIRE_NOTHROW(x.print());
     }
-  }
-}
 
 TEST_CASE("Tensor fill") {
   SECTION("Instantiate batches independantly") {
-- 
GitLab