scale_kernel.cu 2.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* Copyright (c) 2021 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 16
#include "paddle/phi/kernels/scale_kernel.h"

17
#include "paddle/phi/backends/gpu/gpu_context.h"
18 19
#include "paddle/phi/common/amp_type_traits.h"
#include "paddle/phi/common/bfloat16.h"
20
#include "paddle/phi/common/float16.h"
21 22
#include "paddle/phi/core/kernel_registry.h"
#include "paddle/phi/kernels/funcs/elementwise_base.h"
23

24
namespace phi {
25

26
template <typename DataT, typename ParamT>
27
struct ScaleFunctor {
28 29
  ParamT bias;
  ParamT scale;
30 31
  bool bias_after_scale;

32
  ScaleFunctor(ParamT scale_data, ParamT bias_data, bool is_bias_after_sacle)
33 34 35
      : bias(bias_data),
        scale(scale_data),
        bias_after_scale(is_bias_after_sacle) {}
36

37
  __device__ __forceinline__ DataT operator()(const DataT x) const {
38
    if (bias_after_scale) {
39
      return static_cast<DataT>(scale * static_cast<ParamT>(x) + bias);
40
    } else {
41
      return static_cast<DataT>(scale * (static_cast<ParamT>(x) + bias));
42 43 44 45
    }
  }
};

C
Chen Weihang 已提交
46 47
template <typename T, typename Context>
void ScaleKernel(const Context& dev_ctx,
48 49 50 51 52
                 const DenseTensor& x,
                 const Scalar& scale,
                 float bias,
                 bool bias_after_scale,
                 DenseTensor* out) {
53
  using MT = typename phi::dtype::MPTypeTrait<T>::Type;
54 55 56 57
  std::vector<const DenseTensor*> inputs;
  std::vector<DenseTensor*> outputs;
  inputs.emplace_back(&x);
  outputs.emplace_back(out);
58
  dev_ctx.template Alloc<T>(out);
59 60 61
  if (x.numel() <= 0 || (!x.IsInitialized())) {
    return;
  }
62
  phi::funcs::ElementwiseKernel<T>(
63 64 65
      dev_ctx,
      inputs,
      &outputs,
66 67
      ScaleFunctor<T, MT>(
          scale.to<MT>(), static_cast<MT>(bias), bias_after_scale));
68 69
}

70
}  // namespace phi
71

72
PD_REGISTER_KERNEL(scale,
73 74
                   GPU,
                   ALL_LAYOUT,
75
                   phi::ScaleKernel,
76 77
                   float,
                   double,
78
                   phi::dtype::float16,
79
                   phi::dtype::bfloat16,
80 81 82 83
                   uint8_t,
                   int8_t,
                   int16_t,
                   int,
F
Feiyu Chan 已提交
84 85 86
                   int64_t,
                   phi::dtype::complex<float>,
                   phi::dtype::complex<double>) {}