diff --git a/include/aidge/operator/MetaOperator.hpp b/include/aidge/operator/MetaOperator.hpp index 9290e79572a761cea930214f70003d88f8be43e0..7f36eca2c4586f61f72e0d842d2d576450cd1596 100644 --- a/include/aidge/operator/MetaOperator.hpp +++ b/include/aidge/operator/MetaOperator.hpp @@ -74,8 +74,17 @@ public: } void computeOutputDims() override final { - // Forward dims of micro-graph - mGraph->forwardDims(); + // Check first that all required inputs are available, otherwise + // mGraph->forwardDims() will fail! + bool forwarded = true; + for (IOIndex_t i = 0; i < nbInputs(); ++i) { + forwarded &= mInputs[i] ? !(getInput(i)->empty()) : false; + } + + if (forwarded) { + // Forward dims of micro-graph + mGraph->forwardDims(); + } }