Skip to content
Snippets Groups Projects
Commit 62c5328d authored by Maxence Naud's avatar Maxence Naud
Browse files

Remove 'Tensor' object include from GlobalAvgPool_Op and move setBackend...

Remove 'Tensor' object include from GlobalAvgPool_Op and move setBackend member function from header to source file
parent a95891f2
No related branches found
No related tags found
No related merge requests found
...@@ -17,8 +17,6 @@ ...@@ -17,8 +17,6 @@
#include <vector> #include <vector>
#include "aidge/backend/OperatorImpl.hpp" #include "aidge/backend/OperatorImpl.hpp"
#include "aidge/data/Data.hpp"
#include "aidge/data/Tensor.hpp"
#include "aidge/graph/Node.hpp" #include "aidge/graph/Node.hpp"
#include "aidge/operator/OperatorTensor.hpp" #include "aidge/operator/OperatorTensor.hpp"
#include "aidge/utils/Registrar.hpp" #include "aidge/utils/Registrar.hpp"
...@@ -43,9 +41,9 @@ public: ...@@ -43,9 +41,9 @@ public:
GlobalAveragePooling_Op(const GlobalAveragePooling_Op &op) GlobalAveragePooling_Op(const GlobalAveragePooling_Op &op)
: OperatorTensor(op) { : OperatorTensor(op) {
if (op.mImpl){ if (op.mImpl) {
SET_IMPL_MACRO(GlobalAveragePooling_Op, *this, op.mOutputs[0]->getImpl()->backend()); SET_IMPL_MACRO(GlobalAveragePooling_Op, *this, op.backend());
}else{ } else {
mImpl = nullptr; mImpl = nullptr;
} }
} }
...@@ -56,10 +54,7 @@ public: ...@@ -56,10 +54,7 @@ public:
void computeOutputDims() override final; void computeOutputDims() override final;
void setBackend(const std::string &name, DeviceIdx_t device = 0) override { void setBackend(const std::string &name, DeviceIdx_t device = 0) override final;
SET_IMPL_MACRO(GlobalAveragePooling_Op, *this, name);
mOutputs[0]->setBackend(name, device);
}
static const std::vector<std::string> getInputsName() { static const std::vector<std::string> getInputsName() {
return {"data_input"}; return {"data_input"};
......
...@@ -40,3 +40,8 @@ void Aidge::GlobalAveragePooling_Op::computeOutputDims() { ...@@ -40,3 +40,8 @@ void Aidge::GlobalAveragePooling_Op::computeOutputDims() {
mOutputs[0]->resize(out_dims); mOutputs[0]->resize(out_dims);
} }
} }
void Aidge::GlobalAveragePooling_Op::setBackend(const std::string &name, DeviceIdx_t device) {
SET_IMPL_MACRO(GlobalAveragePooling_Op, *this, name);
mOutputs[0]->setBackend(name, device);
}
\ No newline at end of file
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