// Copyright (c) 2022 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 #include #include "paddle/common/enforce.h" #include "paddle/phi/backends/cpu/cpu_context.h" #include "paddle/phi/common/place.h" #include "paddle/phi/core/dense_tensor.h" #include "paddle/phi/core/tensor_utils.h" #include "paddle/phi/kernels/funcs/repeat_tensor2index_tensor.h" namespace phi { namespace funcs { template void RepeatsTensor2IndexTensorFunctor::operator()( const Context &dev_ctx, const DenseTensor &repeats, DenseTensor *index) { if (repeats.dims()[0] == 0) { index->Resize({0}); dev_ctx.template Alloc(index); return; } DenseTensor repeats_cpu_copy; if (repeats.place().GetType() != AllocationType::CPU) { phi::Copy(dev_ctx, repeats, CPUPlace(), true, &repeats_cpu_copy); } const RepeatsT *repeats_data = repeats.place().GetType() == AllocationType::CPU ? repeats.data() : repeats_cpu_copy.data(); int64_t index_size = 0; for (int64_t i = 0; i < repeats.dims()[0]; i++) { PADDLE_ENFORCE_GE(repeats_data[i], 0, common::errors::InvalidArgument( "repeats must grater or equal than 0, but got %d", repeats_data[i])); index_size += repeats_data[i]; } std::vector index_vec(index_size); if constexpr (std::is_same_v) { PADDLE_ENFORCE_LE_INT_MAX(repeats.dims()[0] - 1, "repeat index"); } int64_t offset = 0; for (int64_t i = 0; i < repeats.dims()[0]; i++) { std::fill_n( index_vec.begin() + offset, repeats_data[i], static_cast(i)); offset += repeats_data[i]; } index->Resize({index_size}); TensorFromVector(index_vec, dev_ctx, index); } template void RepeatsTensor2IndexTensorFunctor::operator()( const CPUContext &dev_ctx, const DenseTensor &repeats, DenseTensor *index) { if (repeats.dims()[0] == 0) { index->Resize({0}); dev_ctx.template Alloc(index); return; } const RepeatsT *repeats_data = repeats.data(); int64_t index_size = 0; for (int64_t i = 0; i < repeats.dims()[0]; i++) { PADDLE_ENFORCE_GE(repeats_data[i], 0, common::errors::InvalidArgument( "repeats must grater or equal than 0, but got %d", repeats_data[i])); index_size += repeats_data[i]; } std::vector index_vec(index_size); if constexpr (std::is_same_v) { PADDLE_ENFORCE_LE_INT_MAX(repeats.dims()[0] - 1, "repeat index"); } int64_t offset = 0; for (int64_t i = 0; i < repeats.dims()[0]; i++) { std::fill_n( index_vec.begin() + offset, repeats_data[i], static_cast(i)); offset += repeats_data[i]; } index->Resize({index_size}); TensorFromVector(index_vec, dev_ctx, index); } template class RepeatsTensor2IndexTensorFunctor; template class RepeatsTensor2IndexTensorFunctor; #ifdef PADDLE_WITH_XPU template void RepeatsTensor2IndexTensorFunctor::operator()( const XPUContext &dev_ctx, const DenseTensor &repeats, DenseTensor *index) { if (repeats.dims()[0] == 0) { index->Resize({0}); dev_ctx.template Alloc(index); return; } DenseTensor repeats_cpu_copy; phi::Copy(dev_ctx, repeats, CPUPlace(), true, &repeats_cpu_copy); const RepeatsT *repeats_data = repeats_cpu_copy.data(); int64_t index_size = 0; for (int64_t i = 0; i < repeats.dims()[0]; i++) { PADDLE_ENFORCE_GE(repeats_data[i], 0, common::errors::InvalidArgument( "repeats must grater or equal than 0, but got %d", repeats_data[i])); index_size += repeats_data[i]; } std::vector index_vec(index_size); if constexpr (std::is_same_v) { PADDLE_ENFORCE_LE_INT_MAX(repeats.dims()[0] - 1, "repeat index"); } int64_t offset = 0; for (int64_t i = 0; i < repeats.dims()[0]; i++) { std::fill_n( index_vec.begin() + offset, repeats_data[i], static_cast(i)); offset += repeats_data[i]; } index->Resize({index_size}); TensorFromVector(index_vec, dev_ctx, index); } template class RepeatsTensor2IndexTensorFunctor; template class RepeatsTensor2IndexTensorFunctor; #endif } // namespace funcs } // namespace phi