From 4f686aa7ffda570c3896c52b428cfc40f72b582a Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Mon, 1 Apr 2024 01:17:09 +0000 Subject: [PATCH] Update includes --- .../GlobalAveragePoolingImpl_forward_kernels.hpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/aidge/backend/cpu/operator/GlobalAveragePoolingImpl_forward_kernels.hpp b/include/aidge/backend/cpu/operator/GlobalAveragePoolingImpl_forward_kernels.hpp index 5ea9b958..2bb78b2f 100644 --- a/include/aidge/backend/cpu/operator/GlobalAveragePoolingImpl_forward_kernels.hpp +++ b/include/aidge/backend/cpu/operator/GlobalAveragePoolingImpl_forward_kernels.hpp @@ -12,17 +12,17 @@ #ifndef AIDGE_CPU_OPERATOR_GLOBALAVERAGEPOOLINGIMPL_FORWARD_KERNEL_H_ #define AIDGE_CPU_OPERATOR_GLOBALAVERAGEPOOLINGIMPL_FORWARD_KERNEL_H_ -#include <functional> -#include <numeric> +#include <cstddef> +#include <functional> // std::multiplies +#include <numeric> // std::accumulate #include <vector> +#include "aidge/backend/cpu/operator/GlobalAveragePoolingImpl.hpp" #include "aidge/data/Data.hpp" +#include "aidge/utils/ErrorHandling.hpp" #include "aidge/utils/Registrar.hpp" #include "aidge/utils/Types.h" -#include <cmath> -#include <cstddef> -#include "aidge/backend/cpu/operator/GlobalAveragePoolingImpl.hpp" namespace Aidge { template <class I, class O> -- GitLab