From 1de418208707908632fda7f86dc944fbbc41f4e4 Mon Sep 17 00:00:00 2001 From: Olivier BICHLER <olivier.bichler@cea.fr> Date: Fri, 13 Oct 2023 17:16:29 +0200 Subject: [PATCH] Fixed includes --- include/aidge/operator/MetaOperator.hpp | 5 ----- include/aidge/operator/MetaOperatorDefs.hpp | 5 +++++ 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/include/aidge/operator/MetaOperator.hpp b/include/aidge/operator/MetaOperator.hpp index ae62a1181..bb34fd9c7 100644 --- a/include/aidge/operator/MetaOperator.hpp +++ b/include/aidge/operator/MetaOperator.hpp @@ -13,11 +13,6 @@ #define AIDGE_CORE_OPERATOR_METAOPERATOR_H_ #include "aidge/operator/Operator.hpp" -#include "aidge/operator/AvgPooling.hpp" -#include "aidge/operator/MaxPooling.hpp" -#include "aidge/operator/Conv.hpp" -#include "aidge/operator/Conv.hpp" -#include "aidge/operator/Pad.hpp" #include "aidge/graph/GraphView.hpp" #include "aidge/graph/OpArgs.hpp" #include "aidge/scheduler/Scheduler.hpp" diff --git a/include/aidge/operator/MetaOperatorDefs.hpp b/include/aidge/operator/MetaOperatorDefs.hpp index 2cd84d9e5..df66cec7e 100644 --- a/include/aidge/operator/MetaOperatorDefs.hpp +++ b/include/aidge/operator/MetaOperatorDefs.hpp @@ -13,6 +13,11 @@ #define AIDGE_CORE_OPERATOR_METAOPERATORDEFS_H_ #include "aidge/operator/MetaOperator.hpp" +#include "aidge/operator/AvgPooling.hpp" +#include "aidge/operator/MaxPooling.hpp" +#include "aidge/operator/Conv.hpp" +#include "aidge/operator/ConvDepthWise.hpp" +#include "aidge/operator/Pad.hpp" namespace Aidge { template <std::array<DimSize_t, 1>::size_type DIM> -- GitLab