From 9b5c0de75d2499a1a0490b6202c1a24d64ade010 Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Tue, 9 Jul 2024 15:41:29 +0000 Subject: [PATCH] Update 'Operator::setOutput()' and overrides to be const --- include/aidge/operator/Operator.hpp | 2 +- include/aidge/operator/OperatorTensor.hpp | 2 +- include/aidge/operator/Producer.hpp | 2 +- src/operator/OperatorTensor.cpp | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/include/aidge/operator/Operator.hpp b/include/aidge/operator/Operator.hpp index adec17d07..f1e25b7a1 100644 --- a/include/aidge/operator/Operator.hpp +++ b/include/aidge/operator/Operator.hpp @@ -109,7 +109,7 @@ public: * The pointer itself is not changed, thus keeping the current connections. * @param inputIdx Index of the input to set. */ - virtual void setOutput(const IOIndex_t outputIdx, const std::shared_ptr<Data>& data) = 0; + virtual void setOutput(const IOIndex_t outputIdx, const std::shared_ptr<Data>& data) const = 0; virtual std::shared_ptr<Data> getRawOutput(const IOIndex_t outputIdx) const = 0; std::shared_ptr<Hook> getHook(const std::string& hookName) { diff --git a/include/aidge/operator/OperatorTensor.hpp b/include/aidge/operator/OperatorTensor.hpp index 657a6d8ab..1097454fc 100644 --- a/include/aidge/operator/OperatorTensor.hpp +++ b/include/aidge/operator/OperatorTensor.hpp @@ -62,7 +62,7 @@ public: std::shared_ptr<Data> getRawInput(const IOIndex_t inputIdx) const override final; // output management - void setOutput(const IOIndex_t outputIdx, const std::shared_ptr<Data>& data) override; + void setOutput(const IOIndex_t outputIdx, const std::shared_ptr<Data>& data) const override; virtual const std::shared_ptr<Tensor>& getOutput(const IOIndex_t outputIdx) const; std::shared_ptr<Aidge::Data> getRawOutput(const Aidge::IOIndex_t outputIdx) const override final; /////////////////////////////////////////////////// diff --git a/include/aidge/operator/Producer.hpp b/include/aidge/operator/Producer.hpp index 9e3bdd1ba..6b37fbd13 100644 --- a/include/aidge/operator/Producer.hpp +++ b/include/aidge/operator/Producer.hpp @@ -115,7 +115,7 @@ public: // fmt::print("Basic Producer backward() function.\n"); } - void setOutput(const Aidge::IOIndex_t outputIdx, const std::shared_ptr<Aidge::Data>& data) override { + void setOutput(const Aidge::IOIndex_t outputIdx, const std::shared_ptr<Aidge::Data>& data) const override { if (mAttributes->template getAttr<ProdAttr::Constant>()) { AIDGE_THROW_OR_ABORT(std::runtime_error, "Producer is constant, cannot update output."); } diff --git a/src/operator/OperatorTensor.cpp b/src/operator/OperatorTensor.cpp index 938a386c4..ff6fb9ce4 100644 --- a/src/operator/OperatorTensor.cpp +++ b/src/operator/OperatorTensor.cpp @@ -73,7 +73,7 @@ const std::shared_ptr<Aidge::Tensor>& Aidge::OperatorTensor::getInput(const Aidg return mInputs[inputIdx]; } -void Aidge::OperatorTensor::setOutput(const Aidge::IOIndex_t outputIdx, const std::shared_ptr<Aidge::Data>& data) { +void Aidge::OperatorTensor::setOutput(const Aidge::IOIndex_t outputIdx, const std::shared_ptr<Aidge::Data>& data) const { AIDGE_ASSERT(data->type() == Tensor::Type, "{} Operator only accepts Tensors as inputs", type()); AIDGE_ASSERT(outputIdx < nbOutputs(), "{} Operator has {} outputs", type(), nbOutputs()); const auto& data_tensor = std::dynamic_pointer_cast<Tensor>(data); -- GitLab