/* Copyright (c) 2021 PaddlePaddle Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ #include "paddle/pten/api/include/manual_api.h" #include #include "glog/logging.h" #include "paddle/pten/api/lib/api_registry.h" #include "paddle/pten/api/lib/kernel_dispatch.h" #include "paddle/pten/api/lib/utils/storage.h" #include "paddle/pten/core/kernel_registry.h" #include "paddle/pten/infermeta/unary.h" PT_DECLARE_KERNEL(copy, CPU, ALL_LAYOUT); #if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP) PT_DECLARE_KERNEL(copy, GPU, ALL_LAYOUT); #endif #ifdef PADDLE_WITH_XPU PT_DECLARE_KERNEL(copy, XPU, ALL_LAYOUT); #endif namespace paddle { namespace experimental { PADDLE_API Tensor copy_to(const Tensor& x, Backend backend, bool blocking) { // 1. Get kernel signature and kernel auto kernel_key_set = ParseKernelKeyByInputArgs(x); kernel_key_set.backend_set = kernel_key_set.backend_set | BackendSet(backend); auto kernel_key = kernel_key_set.GetHigestPriorityKernelKey(); auto kernel = pten::KernelFactory::Instance().SelectKernelOrThrowError( "copy", kernel_key); VLOG(0) << "to API kernel key: " << kernel_key; VLOG(0) << "to API kernel: " << kernel; // 2. Get Device Context auto* dev_ctx = GetDeviceContextByBackend(kernel_key.backend()); auto kernel_context = pten::KernelContext(dev_ctx); // 3. Auto data transform auto dense_x = std::dynamic_pointer_cast(x.impl()); kernel_context.EmplaceBackInput(dense_x.get()); kernel_context.EmplaceBackAttr(blocking); // 4. InferMeta auto out_meta = UnchangedInferMeta(dense_x->meta()); // 5. Prepare outputs auto dense_out = std::make_shared( pten::make_intrusive( pten::TransToFluidPlace(backend)), std::move(out_meta)); dense_out->mutable_data(pten::TransToFluidPlace(backend)); kernel_context.EmplaceBackOutput(dense_out.get()); Tensor out; out.set_impl(dense_out); // 6. Call kernel kernel(&kernel_context); return out; } } // namespace experimental } // namespace paddle PT_REGISTER_API(Utils);