/* Copyright (c) 2020 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/op_registry.h" #include "paddle/fluid/framework/operator.h" #include "paddle/fluid/operators/math/math_function.h" namespace paddle { namespace operators { using Tensor = framework::Tensor; template void BincountInner(const framework::ExecutionContext& context) { const Tensor* input = context.Input("X"); const Tensor* weights = context.Input("Weights"); Tensor* output = context.Output("Out"); auto& minlength = context.Attr("minlength"); const InputT* input_data = input->data(); auto input_numel = input->numel(); if (input_data == nullptr) { framework::DDim out_dim{0}; output->Resize(out_dim); output->mutable_data(context.GetPlace()); return; } PADDLE_ENFORCE_GE( *std::min_element(input_data, input_data + input_numel), static_cast(0), platform::errors::InvalidArgument( "The elements in input tensor must be non-negative ints")); int64_t output_size = static_cast(*std::max_element( input_data, input_data + input_numel)) + 1L; output_size = std::max(output_size, static_cast(minlength)); framework::DDim out_dim{output_size}; output->Resize(out_dim); bool has_weights = (weights != nullptr); if (has_weights) { const T* weights_data = weights->data(); const auto& weights_type = weights->type(); if (weights_type == framework::proto::VarType::FP32) { float* output_data = output->mutable_data(context.GetPlace()); math::SetConstant()( context.template device_context(), output, static_cast(0)); for (int64_t i = 0; i < input_numel; i++) { output_data[input_data[i]] += static_cast(weights_data[i]); } } else { double* output_data = output->mutable_data(context.GetPlace()); math::SetConstant()( context.template device_context(), output, static_cast(0)); for (int64_t i = 0; i < input_numel; i++) { output_data[input_data[i]] += static_cast(weights_data[i]); } } } else { int64_t* output_data = output->mutable_data(context.GetPlace()); math::SetConstant()( context.template device_context(), output, 0L); for (int64_t i = 0; i < input_numel; i++) { output_data[input_data[i]] += 1L; } } } template class BincountKernel : public framework::OpKernel { public: void Compute(const framework::ExecutionContext& context) const override { const Tensor* input = context.Input("X"); const auto& input_type = input->type(); if (input_type == framework::proto::VarType::INT32) { BincountInner(context); } else if (input_type == framework::proto::VarType::INT64) { BincountInner(context); } } }; } // namespace operators } // namespace paddle