/* 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/lib/utils/tensor_utils.h" #include #include "paddle/pten/core/compat_utils.h" namespace paddle { namespace experimental { template void SetLoD(DstLoD* dst, const SrcLoD& src) { dst->reserve(src.size()); dst->clear(); for (auto&& v : src) { dst->emplace_back(v); } } std::unique_ptr MakePtenDenseTensor( const paddle::framework::Tensor& src) { pten::DenseTensorMeta meta{pten::TransToPtenDataType(src.type()), src.dims(), pten::TransToPtenDataLayout(src.layout())}; auto shared_storage = pten::make_intrusive(src.Holder(), src.offset()); return std::make_unique(std::move(shared_storage), std::move(meta)); } std::unique_ptr MakePtenDenseTensor( const paddle::framework::LoDTensor& src) { pten::DenseTensorMeta meta{pten::TransToPtenDataType(src.type()), src.dims(), pten::TransToPtenDataLayout(src.layout())}; SetLoD(&meta.lod, src.lod()); auto shared_storage = pten::make_intrusive(src.Holder(), src.offset()); return std::make_unique(std::move(shared_storage), std::move(meta)); } std::unique_ptr MakePtenDenseTensor( const paddle::framework::Tensor& tensor, const pten::TensorArgDef& arg_def) { pten::DenseTensorMeta meta{arg_def.dtype, tensor.dims(), pten::TransToPtenDataLayout(tensor.layout())}; if (tensor.IsInitialized() && tensor.place() == pten::TransToFluidPlace(arg_def.backend)) { auto shared_storage = pten::make_intrusive(tensor.Holder(), tensor.offset()); return std::make_unique(std::move(shared_storage), std::move(meta)); } else { return std::make_unique( std::move(pten::make_intrusive( pten::TransToFluidPlace(arg_def.backend))), std::move(meta)); } } std::unique_ptr MakePtenDenseTensor( const paddle::framework::LoDTensor& tensor, const pten::TensorArgDef& arg_def) { pten::DenseTensorMeta meta{arg_def.dtype, tensor.dims(), pten::TransToPtenDataLayout(tensor.layout()), pten::TransToPtenLoD(tensor.lod())}; if (tensor.IsInitialized() && tensor.place() == pten::TransToFluidPlace(arg_def.backend)) { auto shared_storage = pten::make_intrusive(tensor.Holder(), tensor.offset()); return std::make_unique(std::move(shared_storage), std::move(meta)); } else { return std::make_unique( std::move(pten::make_intrusive( pten::TransToFluidPlace(arg_def.backend))), std::move(meta)); } } std::unique_ptr MakePtenTensorBaseFromVar( const framework::Variable& variable, const pten::TensorArgDef& arg_def) { auto expected_place = pten::TransToFluidPlace(arg_def.backend); if (variable.IsType()) { const auto& tensor = variable.Get(); if (!platform::is_same_place(tensor.place(), expected_place)) { framework::LoDTensor tmp_tensor; framework::TensorCopySync(tensor, expected_place, &tmp_tensor); return MakePtenDenseTensor(tmp_tensor); } else { return MakePtenDenseTensor(tensor); } } else if (variable.IsType()) { // TODO(chenweihang): now we don't deal with row and height // by xiaowei's advice const auto& tensor = variable.Get(); if (!platform::is_same_place(tensor.value().place(), expected_place)) { framework::Tensor tmp_tensor; TensorCopySync(tensor.value(), expected_place, &tmp_tensor); // TODO(chenweihang): adapt SelectedRows by xiaowei's design return MakePtenDenseTensor(tmp_tensor); } else { return MakePtenDenseTensor(tensor.value()); } } else { PADDLE_THROW(platform::errors::Unimplemented( "Unsupported shared input `%s` type now when call pt kernel.", framework::ToTypeName(variable.Type()))); } return {}; } std::unique_ptr MakePtenTensorBaseFromVar( framework::Variable* variable, const pten::TensorArgDef& arg_def) { // mutable_data before run kernel, to avoid share output form // KernelContext to original tensor if (variable->template IsType()) { auto* tensor = variable->template GetMutable(); return MakePtenDenseTensor(*tensor, arg_def); } else if (variable->template IsType()) { auto* tensor = variable->template GetMutable(); // TODO(chenweihang): adapt SelectedRows by xiaowei's design, // here the row and height will lost in output! return MakePtenDenseTensor(tensor->value(), arg_def); } else { PADDLE_THROW(platform::errors::Unimplemented( "Unsupported shared output `%s` type now when call pt kernel.", framework::ToTypeName(variable->Type()))); } return {}; } void MovesStorage(pten::DenseTensor* src, paddle::framework::Tensor* dst) { PADDLE_ENFORCE_NOT_NULL( src, platform::errors::InvalidArgument( "The source DenseTensor is nullptr when move storage.")); PADDLE_ENFORCE_NOT_NULL( dst, platform::errors::InvalidArgument( "The destination Tensor is nullptr when move storage.")); dst->Resize(src->dims()); dst->set_type(pten::TransToProtoVarType(src->dtype())); auto storage = src->release(); std::shared_ptr holder( new TensorStorage(std::move(storage))); dst->ResetHolderWithType(holder, pten::TransToProtoVarType(src->dtype())); } void MovesStorage(pten::DenseTensor* src, paddle::framework::LoDTensor* dst) { PADDLE_ENFORCE_NOT_NULL( src, platform::errors::InvalidArgument( "The source DenseTensor is nullptr when move storage.")); PADDLE_ENFORCE_NOT_NULL( dst, platform::errors::InvalidArgument( "The destination LoDTensor is nullptr when move storage.")); SetLoD(dst->mutable_lod(), src->lod()); MovesStorage(src, static_cast(dst)); } void ReMakePtenDenseTensor(const paddle::framework::Tensor& src, const pten::TensorArgDef& arg_def, pten::DenseTensor* dst) { auto* meta = pten::CompatibleDenseTensorUtils::GetMutableMeta(dst); meta->dims = src.dims(); // Since the type of DenseTensorMeta is const, const_cast must be used const_cast(meta->dtype) = arg_def.dtype; // Since the type of DenseTensorMeta is const, const_cast must be used const_cast(meta->layout) = pten::TransToPtenDataLayout(src.layout()); auto* shared_storage = static_cast( pten::CompatibleDenseTensorUtils::UnsafeGetMutableStorage(dst)); PADDLE_ENFORCE_NOT_NULL( shared_storage, platform::errors::NotFound( "Target DenseTensor's shared storage is nullptr.")); if (src.IsInitialized()) { shared_storage->ResetAllocation(src.Holder(), src.offset()); } } void ReMakePtenDenseTensor(const paddle::framework::LoDTensor& src, const pten::TensorArgDef& arg_def, pten::DenseTensor* dst) { auto* meta = pten::CompatibleDenseTensorUtils::GetMutableMeta(dst); meta->dims = src.dims(); // Since the type of DenseTensorMeta is const, const_cast must be used const_cast(meta->dtype) = arg_def.dtype; // Since the type of DenseTensorMeta is const, const_cast must be used const_cast(meta->layout) = pten::TransToPtenDataLayout(src.layout()); SetLoD(&(meta->lod), src.lod()); auto* shared_storage = static_cast( pten::CompatibleDenseTensorUtils::UnsafeGetMutableStorage(dst)); PADDLE_ENFORCE_NOT_NULL( shared_storage, platform::errors::NotFound( "Target DenseTensor's shared storage is nullptr.")); if (src.IsInitialized() && src.place() == pten::TransToFluidPlace(arg_def.backend)) { shared_storage->ResetAllocation(src.Holder(), src.offset()); } else { shared_storage->ResetAllocationPlace( pten::TransToFluidPlace(arg_def.backend)); } } void ReMakePtenDenseTensorFromVar(const framework::Variable& variable, const pten::TensorArgDef& arg_def, pten::DenseTensor* dst) { auto expected_place = pten::TransToFluidPlace(arg_def.backend); if (variable.IsType()) { const auto& tensor = variable.Get(); if (!platform::is_same_place(tensor.place(), expected_place)) { framework::LoDTensor tmp_tensor; framework::TensorCopySync(tensor, expected_place, &tmp_tensor); ReMakePtenDenseTensor(tmp_tensor, arg_def, dst); } else { ReMakePtenDenseTensor(tensor, arg_def, dst); } } else if (variable.IsType()) { // TODO(chenweihang): now we don't deal with row and height // by xiaowei's advice const auto& tensor = variable.Get(); if (!platform::is_same_place(tensor.value().place(), expected_place)) { framework::Tensor tmp_tensor; TensorCopySync(tensor.value(), expected_place, &tmp_tensor); // TODO(chenweihang): adapt SelectedRows by xiaowei's design ReMakePtenDenseTensor(tmp_tensor, arg_def, dst); } else { ReMakePtenDenseTensor(tensor.value(), arg_def, dst); } } else { PADDLE_THROW(platform::errors::Unimplemented( "Unsupported shared input `%s` type now when call pt kernel.", framework::ToTypeName(variable.Type()))); } } void ReMakePtenDenseTensorFromVar(framework::Variable* variable, const pten::TensorArgDef& arg_def, pten::DenseTensor* dst) { // mutable_data before run kernel, to avoid share output form // KernelContext to original tensor if (variable->template IsType()) { auto* tensor = variable->template GetMutable(); ReMakePtenDenseTensor(*tensor, arg_def, dst); } else if (variable->template IsType()) { auto* tensor = variable->template GetMutable(); // TODO(chenweihang): adapt SelectedRows by xiaowei's design, // here the row and height will lost in output! ReMakePtenDenseTensor(tensor->value(), arg_def, dst); } else { PADDLE_THROW(platform::errors::Unimplemented( "Unsupported shared output `%s` type now when call pt kernel.", framework::ToTypeName(variable->Type()))); } } static bool IsSameAllocation(const std::shared_ptr& a, const std::shared_ptr& b) { return a->ptr() == b->ptr() && a->size() == b->size() && platform::is_same_place(a->place(), b->place()); } void MakeVariableFromPtenTensor(pten::DenseTensor* src, framework::Variable* variable) { if (variable->IsType()) { auto* tensor = variable->GetMutable(); auto dtype = pten::TransToProtoVarType(src->dtype()); tensor->Resize(src->dims()); SetLoD(tensor->mutable_lod(), src->lod()); // here dynamic_cast is slow auto* storage = static_cast( pten::CompatibleDenseTensorUtils::UnsafeGetMutableStorage(src)); if (!tensor->IsInitialized() || (tensor->IsInitialized() && !IsSameAllocation(tensor->Holder(), storage->GetAllocation()))) { tensor->ResetHolderWithType(std::move(storage->GetAllocation()), dtype); } else { // Even the pten tensor and Variable have the same Alloctation (both have // the same pointer address, same size and same place) // but there is possible that they do not have the same data_type. // so, here we set the variable's type with the pten tensor dtype. tensor->set_type(dtype); } } else if (variable->IsType()) { auto* tensor = variable->GetMutable(); auto dtype = pten::TransToProtoVarType(src->dtype()); if (!tensor->value().IsInitialized()) { auto storage = dynamic_cast( pten::CompatibleDenseTensorUtils::UnsafeGetMutableStorage(src)); tensor->mutable_value()->ResetHolderWithType( std::move(storage->GetAllocation()), dtype); } } else { PADDLE_THROW(platform::errors::Unimplemented( "Unsupported shared input `%s` type now when call pt kernel.", framework::ToTypeName(variable->Type()))); } } } // namespace experimental } // namespace paddle