/* * Copyright (c) Meta Platforms, Inc. and affiliates. * All rights reserved. * * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. */ #include #include namespace torch { namespace executor { namespace native { using Tensor = executorch::aten::Tensor; using ScalarType = executorch::aten::ScalarType; namespace {} // namespace /** * Copy the tener `self` to `out`, assume `self` and `out` have same type and * shape */ Tensor& detach_copy_out(KernelRuntimeContext& ctx, const Tensor& self, Tensor& out) { (void)ctx; // Resize for dynamic shape ET_KERNEL_CHECK_MSG( ctx, resize_tensor(out, self.sizes()) == Error::Ok, InvalidArgument, out, "Failed to resize output tensor."); ET_KERNEL_CHECK( ctx, tensors_have_same_dim_order(self, out), InvalidArgument, out); ET_KERNEL_CHECK( ctx, tensors_have_same_shape_and_dtype(self, out), InvalidArgument, out); if (self.nbytes() > 0) { // Note that this check is important. It's valid for a tensor with numel 0 // to have a null data pointer, but in some environments it's invalid to // pass a null pointer to memcpy() even when the size is zero. memcpy(out.mutable_data_ptr(), self.const_data_ptr(), self.nbytes()); } return out; } } // namespace native } // namespace executor } // namespace torch