From b3a41e3d454ce60a83b9baaf47f049afc6b48b0e Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Tue, 3 Dec 2024 01:22:43 +0000 Subject: [PATCH] Fix 'Pop_Op::forward' that should not be inplace --- src/operator/Pop.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/operator/Pop.cpp b/src/operator/Pop.cpp index a27e2745b..fa77d18e7 100644 --- a/src/operator/Pop.cpp +++ b/src/operator/Pop.cpp @@ -33,7 +33,7 @@ void Aidge::Pop_OpImpl::forward() { const Pop_Op& op = dynamic_cast<const Pop_Op&>(mOp); assert(op.getInput(0) && "missing input #0"); - *op.getOutput(0) = op.getInput(0)->extract({op.forwardStep()}); + *op.getOutput(0) = op.getInput(0)->extract({op.forwardStep()}).clone(); } ////////////////////////////////////////////////////////// -- GitLab