diff --git a/include/aidge/backend/cpu.hpp b/include/aidge/backend/cpu.hpp index 95b2f7b8e2ff70c9b9224bea1137ad74e469ffb8..59dc3cecb684d49b3c6958c103cf1fb0a72ac636 100644 --- a/include/aidge/backend/cpu.hpp +++ b/include/aidge/backend/cpu.hpp @@ -23,5 +23,6 @@ #include "aidge/backend/cpu/operator/ProducerImpl.hpp" #include "aidge/backend/cpu/operator/ReLUImpl.hpp" #include "aidge/backend/cpu/operator/SoftmaxImpl.hpp" +#include "aidge/backend/cpu/operator/ScalingImpl.hpp" #endif /* AIDGE_CPU_IMPORTS_H_ */ \ No newline at end of file diff --git a/include/aidge/backend/cpu/operator/ScalingImpl.hpp b/include/aidge/backend/cpu/operator/ScalingImpl.hpp index a9c77f2e5d7bbe1c79cc8695added3b410262688..cb11b3016b9f694cc518f20a62ea143a94a58afe 100644 --- a/include/aidge/backend/cpu/operator/ScalingImpl.hpp +++ b/include/aidge/backend/cpu/operator/ScalingImpl.hpp @@ -40,7 +40,7 @@ class ScalingImpl_cpu : public OperatorImpl { ScalingImpl_cpu(const Scaling_Op& op) : mOp(op), mNbConsumedData({0}), mNbProducedData({0}) {} static std::unique_ptr<ScalingImpl_cpu> create(const Scaling_Op& op) { - std::cout << "ScalingImpl_cpu create" << std::endl; + //std::cout << "ScalingImpl_cpu create" << std::endl; return std::make_unique<ScalingImpl_cpu>(op); }