diff --git a/src/data/Tensor.cpp b/src/data/Tensor.cpp
index 84ad39605c6c64cbab5f65f2f7c42d67a4759c6c..b14fe994d03f8396cf10503743dfb89d2bf8ccec 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)