Skip to content
Snippets Groups Projects
Commit 75473fec authored by Inna Kucher's avatar Inna Kucher
Browse files

adding scaling

parent a4c970ff
No related branches found
No related tags found
No related merge requests found
...@@ -23,5 +23,6 @@ ...@@ -23,5 +23,6 @@
#include "aidge/backend/cpu/operator/ProducerImpl.hpp" #include "aidge/backend/cpu/operator/ProducerImpl.hpp"
#include "aidge/backend/cpu/operator/ReLUImpl.hpp" #include "aidge/backend/cpu/operator/ReLUImpl.hpp"
#include "aidge/backend/cpu/operator/SoftmaxImpl.hpp" #include "aidge/backend/cpu/operator/SoftmaxImpl.hpp"
#include "aidge/backend/cpu/operator/ScalingImpl.hpp"
#endif /* AIDGE_CPU_IMPORTS_H_ */ #endif /* AIDGE_CPU_IMPORTS_H_ */
\ No newline at end of file
...@@ -40,7 +40,7 @@ class ScalingImpl_cpu : public OperatorImpl { ...@@ -40,7 +40,7 @@ class ScalingImpl_cpu : public OperatorImpl {
ScalingImpl_cpu(const Scaling_Op& op) : mOp(op), mNbConsumedData({0}), mNbProducedData({0}) {} ScalingImpl_cpu(const Scaling_Op& op) : mOp(op), mNbConsumedData({0}), mNbProducedData({0}) {}
static std::unique_ptr<ScalingImpl_cpu> create(const Scaling_Op& op) { 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); return std::make_unique<ScalingImpl_cpu>(op);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment