/* Copyright (c) 2016 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. */ #pragma once #include #include "paddle/fluid/framework/data_type.h" #include "paddle/fluid/framework/eigen.h" #include "paddle/fluid/framework/framework.pb.h" #include "paddle/fluid/framework/tensor.h" #include "paddle/fluid/platform/device_context.h" #include "paddle/fluid/platform/temporary_allocator.h" namespace paddle { namespace framework { // NOTE(zcd): Because TensorCopy is an async operation, when the src_place // and dst_place are two different GPU, to ensure that the operation can // be carried out correctly, there is a src_ctx wait operation in TensorCopy. // If ctx_place and src_place are the same, src_ctx.Wait() is added // after memory::Copy; if ctx_place and dst_place are the same, // src_ctx.Wait() is added before memory::Copy. void TensorCopy(const Tensor& src, const platform::Place& dst_place, const platform::DeviceContext& ctx, Tensor* dst); // NOTE(zcd): If the src.place() and dst_place are two different GPU, // the copy operation is carried out on the dst_place's stream. This is // very important, because TensorCopy is an async operator, and in most // case, once this copy operator returns, dst is to be used in dst_place's // stream, if this copy operation is carried out on the src_place's stream, // when dst is used in dst_place's stream the copy operation may be // not completed. void TensorCopy(const Tensor& src, const platform::Place& dst_place, Tensor* dst); void TensorCopySync(const Tensor& src, const platform::Place& dst_place, Tensor* dst); template void TensorFromVector(const std::vector& src, const platform::DeviceContext& ctx, Tensor* dst); template void TensorFromVector(const std::vector& src, Tensor* dst); template void TensorToVector(const Tensor& src, const platform::DeviceContext& ctx, std::vector* dst); template void TesnorToVector(const Tensor& src, std::vector* dst); // copy the result bool to cpu bool TensorContainsNAN(const framework::Tensor& tensor); bool TensorContainsInf(const framework::Tensor& tensor); bool TensorIsfinite(const framework::Tensor& tensor); // store the result bool in gpu tensor, async operation. Faster than above ones. void TensorContainsNAN(const framework::Tensor& tensor, framework::Tensor* out); void TensorContainsInf(const framework::Tensor& tensor, framework::Tensor* out); void TensorIsfinite(const framework::Tensor& tensor, framework::Tensor* out); void TensorToStream(std::ostream& os, const Tensor& tensor, const platform::DeviceContext& dev_ctx); void TensorFromStream(std::istream& is, Tensor* tensor, const platform::DeviceContext& dev_ctx); // // The implementation of template functions. // template void TensorFromVector(const std::vector& src, const platform::DeviceContext& ctx, Tensor* dst) { auto dst_place = ctx.GetPlace(); auto src_ptr = static_cast(src.data()); platform::CPUPlace src_place; dst->Resize({static_cast(src.size())}); auto dst_ptr = static_cast(dst->mutable_data(dst_place)); auto size = src.size() * sizeof(T); if (platform::is_cpu_place(dst_place)) { memory::Copy(boost::get(dst_place), dst_ptr, src_place, src_ptr, size); } #ifdef PADDLE_WITH_CUDA else if (platform::is_gpu_place(dst_place)) { // NOLINT memory::Copy( boost::get(dst_place), dst_ptr, src_place, src_ptr, size, reinterpret_cast(ctx).stream()); } #endif } template void TensorFromVector(const std::vector& src, Tensor* dst) { platform::CPUPlace dst_place = platform::CPUPlace(); auto src_ptr = static_cast(src.data()); platform::CPUPlace src_place; dst->Resize({static_cast(src.size())}); auto dst_ptr = static_cast(dst->mutable_data(dst_place)); auto size = src.size() * sizeof(T); memory::Copy(dst_place, dst_ptr, src_place, src_ptr, size); } template void TensorToVector(const Tensor& src, const platform::DeviceContext& ctx, std::vector* dst) { auto src_ptr = static_cast(src.data()); auto size = src.numel() * sizeof(T); platform::CPUPlace dst_place; dst->resize(src.numel()); auto dst_ptr = static_cast(dst->data()); if (platform::is_cpu_place(src.place())) { memory::Copy(dst_place, dst_ptr, boost::get(src.place()), src_ptr, size); } #ifdef PADDLE_WITH_CUDA else if (platform::is_gpu_place(src.place())) { // NOLINT memory::Copy( dst_place, dst_ptr, boost::get(src.place()), src_ptr, size, reinterpret_cast(ctx).stream()); } #endif } template void TensorToVector(const Tensor& src, std::vector* dst) { auto src_ptr = static_cast(src.data()); auto size = src.numel() * sizeof(T); platform::CPUPlace dst_place; dst->resize(src.numel()); auto dst_ptr = static_cast(dst->data()); PADDLE_ENFORCE(platform::is_cpu_place(src.place())); memory::Copy(dst_place, dst_ptr, boost::get(src.place()), src_ptr, size); } template paddle::framework::Tensor GetTensor( memory::allocation::AllocationPtr temp_allocation_ptr, const framework::DDim& dim) { auto& deleter = temp_allocation_ptr.get_deleter(); auto* allocation_ptr = temp_allocation_ptr.release(); auto shared_allocation = std::shared_ptr(allocation_ptr, deleter); PADDLE_ENFORCE( dynamic_cast(allocation_ptr) != nullptr, "The AllocationPtr must be TemporaryAllocation."); PADDLE_ENFORCE_EQ(allocation_ptr->size(), framework::product(dim) * sizeof(T)); paddle::framework::Tensor temp_tensor( framework::ToDataType(std::type_index(typeid(T)))); temp_tensor.Resize(dim); temp_tensor.ResetHolder(std::move(shared_allocation)); return temp_tensor; } } // namespace framework } // namespace paddle