From 3f16a3f76ceac8f3333115d604ecf44f39e500ea Mon Sep 17 00:00:00 2001 From: Olivier BICHLER <olivier.bichler@cea.fr> Date: Sun, 10 Dec 2023 22:42:51 +0100 Subject: [PATCH] Fixed misplaced resize --- src/data/Tensor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/Tensor.cpp b/src/data/Tensor.cpp index 84ad39605..b14fe994d 100644 --- a/src/data/Tensor.cpp +++ b/src/data/Tensor.cpp @@ -23,8 +23,8 @@ void Aidge::Tensor::copyCastFrom(const Tensor& src, std::shared_ptr<Tensor>& mov // If no backend was set for the current tensor, use the same as src const auto deviceSrc = src.getImpl()->device(); setBackend(deviceSrc.first, deviceSrc.second); - resize(src.dims()); } + resize(src.dims()); if (dataType() != src.dataType()) { // First move data to the target device (only if needed) -- GitLab