pool_grad_kernel.cc 4.2 KB
Newer Older
Z
zhangkaihuo 已提交
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/sparse/pool_grad_kernel.h"
16

Z
zhangkaihuo 已提交
17
#include "paddle/phi/core/kernel_registry.h"
18
#include "paddle/phi/core/tensor_utils.h"
19
#include "paddle/phi/core/visit_type.h"
20
#include "paddle/phi/kernels/empty_kernel.h"
Z
zhangkaihuo 已提交
21 22 23 24 25 26
#include "paddle/phi/kernels/funcs/pooling.h"
#include "paddle/phi/kernels/funcs/sparse/convolution.h"

namespace phi {
namespace sparse {

27
template <typename T, typename IntT = int>
28 29 30
void MaxPoolCooGradCPUKernel(const CPUContext& dev_ctx,
                             const SparseCooTensor& x,
                             const DenseTensor& rulebook,
31
                             const DenseTensor& counter,
32 33 34 35
                             const SparseCooTensor& out,
                             const SparseCooTensor& out_grad,
                             const std::vector<int>& kernel_sizes,
                             SparseCooTensor* x_grad) {
Z
zhangkaihuo 已提交
36 37 38
  int kernel_size = kernel_sizes[0] * kernel_sizes[1] * kernel_sizes[2];
  const int channels = x.dims()[4];
  int rulebook_len = rulebook.dims()[1];
39
  const IntT* rulebook_ptr = rulebook.data<IntT>();
40 41 42 43
  std::vector<int> offsets(kernel_size + 1);
  const int* counter_ptr = counter.data<int>();

  phi::funcs::sparse::PrefixSum(counter_ptr, &offsets[0], kernel_size);
Z
zhangkaihuo 已提交
44 45 46

  const T* in_features_ptr = x.non_zero_elements().data<T>();
  const T* out_features_ptr = out.non_zero_elements().data<T>();
47 48 49 50 51 52 53
  const T* out_grad_ptr = out_grad.non_zero_elements().data<T>();
  // TODO(zhangkaihuo): call phi::sparse::EmptyLike
  DenseTensor x_grad_indices =
      phi::EmptyLike<IntT>(dev_ctx, x.non_zero_indices());
  DenseTensor x_grad_values = phi::EmptyLike<T>(dev_ctx, x.non_zero_elements());
  x_grad->SetMember(x_grad_indices, x_grad_values, x.dims(), true);
  T* x_grad_ptr = x_grad_values.data<T>();
Z
zhangkaihuo 已提交
54
  memset(x_grad_ptr, 0, sizeof(T) * x_grad_values.numel());
55 56 57 58 59
  phi::Copy<CPUContext>(dev_ctx,
                        x.non_zero_indices(),
                        dev_ctx.GetPlace(),
                        false,
                        &x_grad_indices);
Z
zhangkaihuo 已提交
60 61 62

  phi::funcs::MaxPoolGrad<T> grad_functor;
  for (int i = 0; i < kernel_size; i++) {
63
    for (int j = 0; j < counter_ptr[i]; j++) {
64 65
      IntT in_i = rulebook_ptr[rulebook_len + offsets[i] + j];
      IntT out_i = rulebook_ptr[rulebook_len * 2 + offsets[i] + j];
Z
zhangkaihuo 已提交
66 67 68 69 70 71 72 73 74 75 76
      for (int c = 0; c < channels; c++) {
        grad_functor.compute(in_features_ptr[in_i * channels + c],
                             out_features_ptr[out_i * channels + c],
                             out_grad_ptr[out_i * channels + c],
                             1,
                             &x_grad_ptr[in_i * channels + c]);
      }
    }
  }
}

77
template <typename T, typename Context>
78 79 80
void MaxPoolCooGradKernel(const Context& dev_ctx,
                          const SparseCooTensor& x,
                          const DenseTensor& rulebook,
81
                          const DenseTensor& counter,
82 83 84 85
                          const SparseCooTensor& out,
                          const SparseCooTensor& out_grad,
                          const std::vector<int>& kernel_sizes,
                          SparseCooTensor* x_grad) {
86
  PD_VISIT_BASE_INTEGRAL_TYPES(
87 88
      x.non_zero_indices().dtype(), "MaxPoolCooGradCPUKernel", ([&] {
        MaxPoolCooGradCPUKernel<T, data_t>(
89
            dev_ctx, x, rulebook, counter, out, out_grad, kernel_sizes, x_grad);
90 91 92
      }));
}

Z
zhangkaihuo 已提交
93 94 95
}  // namespace sparse
}  // namespace phi

96
PD_REGISTER_KERNEL(maxpool_coo_grad,
Z
zhangkaihuo 已提交
97 98
                   CPU,
                   ALL_LAYOUT,
99
                   phi::sparse::MaxPoolCooGradKernel,
Z
zhangkaihuo 已提交
100 101 102 103
                   float,
                   double) {
  kernel->InputAt(0).SetDataLayout(phi::DataLayout::SPARSE_COO);
}