From 97740d0d702d3190934ed9f3c6f58884f7c7392e Mon Sep 17 00:00:00 2001
From: NAUD Maxence <maxence.naud@cea.fr>
Date: Thu, 22 Feb 2024 12:30:28 +0000
Subject: [PATCH] [Fix] std::accumulate include in TensorImpl

---
 include/aidge/backend/TensorImpl.hpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/aidge/backend/TensorImpl.hpp b/include/aidge/backend/TensorImpl.hpp
index 9432914f5..12551e71c 100644
--- a/include/aidge/backend/TensorImpl.hpp
+++ b/include/aidge/backend/TensorImpl.hpp
@@ -12,7 +12,7 @@
 #ifndef AIDGE_TENSORIMPL_H_
 #define AIDGE_TENSORIMPL_H_
 
-#include <algorithm>   // std::accumulate
+#include <numeric>     // std::accumulate
 #include <cstddef>     // std::size_t
 #include <functional>  // std::multiplies
 #include <vector>
-- 
GitLab