Skip to content
Snippets Groups Projects
Commit 14995ee6 authored by Houssem ROUIS's avatar Houssem ROUIS
Browse files

fix clang warning

parent bafc843a
No related branches found
No related tags found
No related merge requests found
This commit is part of merge request !65. Comments created here will be created in the context of that merge request.
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
void Aidge::ArithmeticOperator::associateInput(const Aidge::IOIndex_t inputIdx, const std::shared_ptr<Aidge::Data>& data) { void Aidge::ArithmeticOperator::associateInput(const Aidge::IOIndex_t inputIdx, const std::shared_ptr<Aidge::Data>& data) {
if (inputIdx >= 2) { if (inputIdx >= 2) {
AIDGE_THROW_OR_ABORT(std::runtime_error, "%s Operator has %hu inputs", type().c_str(),2); AIDGE_THROW_OR_ABORT(std::runtime_error, "%s Operator has 2 inputs", type().c_str());
} }
if (strcmp((data)->type(), Tensor::Type) != 0) { if (strcmp((data)->type(), Tensor::Type) != 0) {
AIDGE_THROW_OR_ABORT(std::runtime_error, "Input data must be of Tensor type"); AIDGE_THROW_OR_ABORT(std::runtime_error, "Input data must be of Tensor type");
...@@ -55,7 +55,7 @@ void Aidge::ArithmeticOperator::setInput(const Aidge::IOIndex_t inputIdx, std::s ...@@ -55,7 +55,7 @@ void Aidge::ArithmeticOperator::setInput(const Aidge::IOIndex_t inputIdx, std::s
const std::shared_ptr<Aidge::Tensor>& Aidge::ArithmeticOperator::getInput(const Aidge::IOIndex_t inputIdx) const { const std::shared_ptr<Aidge::Tensor>& Aidge::ArithmeticOperator::getInput(const Aidge::IOIndex_t inputIdx) const {
if (inputIdx >= nbInputs()) { if (inputIdx >= nbInputs()) {
AIDGE_THROW_OR_ABORT(std::runtime_error, "%s Operator has %hu inputs", type().c_str(), nbInputs()); AIDGE_THROW_OR_ABORT(std::runtime_error, "%s Operator has 2 inputs", type().c_str());
} }
return mInputs[inputIdx]; return mInputs[inputIdx];
} }
...@@ -65,7 +65,7 @@ void Aidge::ArithmeticOperator::setOutput(const Aidge::IOIndex_t outputIdx, cons ...@@ -65,7 +65,7 @@ void Aidge::ArithmeticOperator::setOutput(const Aidge::IOIndex_t outputIdx, cons
AIDGE_THROW_OR_ABORT(std::runtime_error, "%s Operator only accepts Tensors as inputs", type().c_str()); AIDGE_THROW_OR_ABORT(std::runtime_error, "%s Operator only accepts Tensors as inputs", type().c_str());
} }
if (outputIdx >= nbOutputs()) { if (outputIdx >= nbOutputs()) {
AIDGE_THROW_OR_ABORT(std::runtime_error, "%s Operator has %hu outputs", type().c_str(), nbOutputs()); AIDGE_THROW_OR_ABORT(std::runtime_error, "%s Operator has 1 outputs", type().c_str());
} }
*mOutputs[outputIdx] = *std::dynamic_pointer_cast<Tensor>(data); *mOutputs[outputIdx] = *std::dynamic_pointer_cast<Tensor>(data);
} }
...@@ -75,14 +75,14 @@ void Aidge::ArithmeticOperator::setOutput(const Aidge::IOIndex_t outputIdx, std: ...@@ -75,14 +75,14 @@ void Aidge::ArithmeticOperator::setOutput(const Aidge::IOIndex_t outputIdx, std:
AIDGE_THROW_OR_ABORT(std::runtime_error, "%s Operator only accepts Tensors as inputs", type().c_str()); AIDGE_THROW_OR_ABORT(std::runtime_error, "%s Operator only accepts Tensors as inputs", type().c_str());
} }
if (outputIdx >= nbOutputs()) { if (outputIdx >= nbOutputs()) {
AIDGE_THROW_OR_ABORT(std::runtime_error, "%s Operator has %hu outputs", type().c_str(), nbOutputs()); AIDGE_THROW_OR_ABORT(std::runtime_error, "%s Operator has 1 output", type().c_str());
} }
*mOutputs[outputIdx] = std::move(*std::dynamic_pointer_cast<Tensor>(data)); *mOutputs[outputIdx] = std::move(*std::dynamic_pointer_cast<Tensor>(data));
} }
const std::shared_ptr<Aidge::Tensor>& Aidge::ArithmeticOperator::getOutput(const Aidge::IOIndex_t outputIdx) const { const std::shared_ptr<Aidge::Tensor>& Aidge::ArithmeticOperator::getOutput(const Aidge::IOIndex_t outputIdx) const {
if (outputIdx >= nbOutputs()) { if (outputIdx >= nbOutputs()) {
AIDGE_THROW_OR_ABORT(std::runtime_error, "%s Operator has %hu outputs", type().c_str(), nbOutputs()); AIDGE_THROW_OR_ABORT(std::runtime_error, "%s Operator has 1 output", type().c_str());
} }
return mOutputs[outputIdx]; return mOutputs[outputIdx];
} }
......
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