gumbel_softmax_grad_kernel_impl.h 1.9 KB
Newer Older
F
From00 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
// 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.

#pragma once

#include "paddle/fluid/operators/math/softmax.h"
#include "paddle/fluid/operators/math/softmax_impl.h"
#include "paddle/phi/core/dense_tensor.h"
#include "paddle/phi/kernels/funcs/axis_utils.h"
21
#include "paddle/phi/kernels/funcs/math_function.h"
F
From00 已提交
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40

namespace phi {

template <typename T, typename Context>
void GumbelSoftmaxGradKernel(const Context& ctx,
                             const DenseTensor& out,
                             const DenseTensor& dout,
                             int axis,
                             DenseTensor* dx) {
  const int rank = dx->dims().size();
  axis = funcs::CanonicalAxis(axis, rank);
  int axis_dim = dx->dims()[axis];
  // allocate memory on device.

  ctx.template Alloc<T>(dx);
  if (dx->numel() == 0) {
    return;
  }

41 42 43 44 45 46
  // For 0D Tensor
  if (rank == 0) {
    phi::funcs::set_constant(ctx, dx, 0.0);
    return;
  }

F
From00 已提交
47 48 49 50 51 52 53 54 55 56 57
  const int size_to_axis = funcs::SizeToAxis(axis, dx->dims());
  const int size_from_axis = funcs::SizeFromAxis(axis, dx->dims());
  DenseTensor dx_2d(*dx), out_2d(out), dout_2d(dout);
  dx_2d.Resize({size_to_axis, size_from_axis});
  out_2d.Resize({size_to_axis, size_from_axis});
  dout_2d.Resize({size_to_axis, size_from_axis});
  paddle::operators::math::SoftmaxGradFunctor<Context, T>()(
      ctx, axis_dim, &out_2d, &dout_2d, &dx_2d);
}

}  // namespace phi