histogram_kernel.cc 3.0 KB
Newer Older
H
hong 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
// 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.

15
#include "paddle/phi/kernels/histogram_kernel.h"
16

17 18 19
#include "paddle/phi/backends/cpu/cpu_context.h"
#include "paddle/phi/core/kernel_registry.h"
#include "paddle/phi/kernels/funcs/math_function.h"
H
hong 已提交
20

21
namespace phi {
H
hong 已提交
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36

template <typename T, typename Context>
void HistogramKernel(const Context& dev_ctx,
                     const DenseTensor& input,
                     int64_t bins,
                     int min,
                     int max,
                     DenseTensor* output) {
  auto& nbins = bins;
  auto& minval = min;
  auto& maxval = max;

  const T* input_data = input.data<T>();
  auto input_numel = input.numel();

37
  int64_t* out_data = dev_ctx.template Alloc<int64_t>(output);
38
  phi::funcs::SetConstant<Context, int64_t>()(
H
hong 已提交
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
      dev_ctx, output, static_cast<int64_t>(0));

  if (input_data == nullptr) return;

  T output_min = static_cast<T>(minval);
  T output_max = static_cast<T>(maxval);
  if (output_min == output_max) {
    output_min = *std::min_element(input_data, input_data + input_numel);
    output_max = *std::max_element(input_data, input_data + input_numel);
  }
  if (output_min == output_max) {
    output_min = output_min - 1;
    output_max = output_max + 1;
  }

54 55 56 57 58 59
  PADDLE_ENFORCE_EQ((std::isinf(static_cast<float>(output_min)) ||
                     std::isnan(static_cast<float>(output_max)) ||
                     std::isinf(static_cast<float>(output_min)) ||
                     std::isnan(static_cast<float>(output_max))),
                    false,
                    phi::errors::OutOfRange("range of min, max is not finite"));
H
hong 已提交
60 61 62
  PADDLE_ENFORCE_GE(
      output_max,
      output_min,
63
      phi::errors::InvalidArgument(
H
hong 已提交
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
          "max must be larger or equal to min. If min and max are both zero, "
          "the minimum and maximum values of the data are used. "
          "But received max is %d, min is %d",
          maxval,
          minval));

  for (int64_t i = 0; i < input_numel; i++) {
    if (input_data[i] >= output_min && input_data[i] <= output_max) {
      const int64_t bin = (int64_t)((input_data[i] - output_min) * nbins /
                                    (output_max - output_min));
      out_data[std::min(bin, nbins - 1)] += 1;
    }
  }
}

79
}  // namespace phi
H
hong 已提交
80

81
PD_REGISTER_KERNEL(histogram,
H
hong 已提交
82 83
                   CPU,
                   ALL_LAYOUT,
84
                   phi::HistogramKernel,
H
hong 已提交
85 86 87 88
                   float,
                   double,
                   int,
                   int64_t) {}