From b0a7acb8563957aea146bf26a79c7c4a77ccdd56 Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Thu, 19 Oct 2023 13:50:23 +0000 Subject: [PATCH] [Fix] Concat Operator factory --- include/aidge/operator/Concat.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/aidge/operator/Concat.hpp b/include/aidge/operator/Concat.hpp index 6943b3594..5bf113f12 100644 --- a/include/aidge/operator/Concat.hpp +++ b/include/aidge/operator/Concat.hpp @@ -179,7 +179,7 @@ public: }; inline std::shared_ptr<Node> Concat(const IOIndex_t nbIn, const DimIdx_t axis = 0, const std::string& name = "") { - return std::make_shared<Node>(std::make_shared<Concat_Op>(nbIn), axis, name); + return std::make_shared<Node>(std::make_shared<Concat_Op>(nbIn, axis), name); } } -- GitLab