diff --git a/include/aidge/operator/Producer.hpp b/include/aidge/operator/Producer.hpp
index f085474a8d2fcc218e319ed2f9c1883cc27373b9..c9b1f6e4aa5d82006d4bed880151ac1a22a4882b 100644
--- a/include/aidge/operator/Producer.hpp
+++ b/include/aidge/operator/Producer.hpp
@@ -67,10 +67,10 @@ public:
         for (std::size_t i = 0; i < static_cast<std::size_t>(nbOutputs()); ++i) {
             mOutputs[i] = std::make_shared<Tensor>(*(op.getOutput(i)));
         }
-        if (op.mImpl){
-            SET_IMPL_MACRO(Producer_Op, *this, op.mOutputs[0]->getImpl()->backend());
+        if (mOutputs[0]->getImpl() && Registrar<Producer_Op>::exists({mOutputs[0]->getImpl()->backend()})){
+            SET_IMPL_MACRO(Producer_Op, *this, mOutputs[0]->getImpl()->backend());
         }else{
-            mImpl = nullptr;
+            mImpl = std::make_shared<OperatorImpl>(*this);
         }
     }