From 987c568c6731663aac61fa3af94f52651ec177a1 Mon Sep 17 00:00:00 2001
From: NAUD Maxence <maxence.naud@cea.fr>
Date: Wed, 11 Oct 2023 12:14:30 +0000
Subject: [PATCH] [Upd] minor changes and comment horizontal tiling test file

---
 include/aidge/operator/Scaling.hpp            |  6 +--
 unit_tests/recipies/Test_HorizontalTiling.cpp | 39 ++++++++++---------
 2 files changed, 23 insertions(+), 22 deletions(-)

diff --git a/include/aidge/operator/Scaling.hpp b/include/aidge/operator/Scaling.hpp
index 0ea6ba39b..522fc8ad0 100644
--- a/include/aidge/operator/Scaling.hpp
+++ b/include/aidge/operator/Scaling.hpp
@@ -48,9 +48,9 @@ public:
     template <ScalingAttr e> using attr = typename Attributes_::template attr<e>;
 
     Scaling_Op(float scalingFactor)
-            : Operator(Type),
-            Attributes_(
-                attr<ScalingAttr::scalingFactor>(scalingFactor))
+        : Operator(Type),
+          Attributes_(
+            attr<ScalingAttr::scalingFactor>(scalingFactor))
     {
         setDatatype(DataType::Float32);
     }
diff --git a/unit_tests/recipies/Test_HorizontalTiling.cpp b/unit_tests/recipies/Test_HorizontalTiling.cpp
index 4fcd16414..575e185c8 100644
--- a/unit_tests/recipies/Test_HorizontalTiling.cpp
+++ b/unit_tests/recipies/Test_HorizontalTiling.cpp
@@ -23,25 +23,26 @@ namespace Aidge {
 
 TEST_CASE("[core/recipies] Tiling(horizontal)", "[Tiling][HorizontalTiling][Recipies]") {
 
-    SECTION("Transform a pre-generated GraphView") {
-        std::shared_ptr<GraphView> g = Sequential({
-            Conv(3, 16, {3,3}, "conv1"),
-            ReLU("relu1"),
-            Conv(16, 32, {1,1}, "conv2"),
-            Conv(32, 16, {1,1}, "conv3"),
-            Conv(16, 10, {3,3}, "conv4"),
-            ReLU("relu2")
-        });
-
-        for (auto& individualConv : g->match("Conv")) {
-            auto tiledConv = horizontalTiling(individualConv);
-            g->replace(individualConv, tiledConv);
-        }
-    }
-
-    SECTION("Create the GraphView with tiled layers") {
-        std::shared_ptr<GraphView> g;
-    }
+    // SECTION("Transform a pre-generated GraphView") {
+    //     std::shared_ptr<GraphView> g = Sequential({
+    //         Conv(3, 16, {3,3}, "conv1"),
+    //         ReLU("relu1"),
+    //         Conv(16, 32, {1,1}, "conv2"),
+    //         Conv(32, 16, {1,1}, "conv3"),
+    //         Conv(16, 10, {3,3}, "conv4"),
+    //         ReLU("relu2")
+    //     });
+
+    //     for (auto& individualConv : g->match("Conv")) {
+    //         auto tiledConv = horizontalTiling(individualConv);
+    //         g->replace(individualConv, tiledConv);
+    //     }
+    // }
+
+    // SECTION("Create the GraphView with tiled layers") {
+    //     std::shared_ptr<GraphView> g;
+    //     g->addChild(horizontalTiling(Conv()))
+    // }
 
 }
 } // namespace Aidge
\ No newline at end of file
-- 
GitLab