scale_kernel.cu 2.4 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
#include "paddle/phi/common/float16.h"
19 20
#include "paddle/phi/core/kernel_registry.h"
#include "paddle/phi/kernels/funcs/elementwise_base.h"
21

22
namespace phi {
23 24 25 26 27 28 29

template <typename InT>
struct ScaleFunctor {
  InT bias;
  InT scale;
  bool bias_after_scale;

30 31 32 33
  ScaleFunctor(InT scale_data, InT bias_data, bool is_bias_after_sacle)
      : bias(bias_data),
        scale(scale_data),
        bias_after_scale(is_bias_after_sacle) {}
34

35
  __device__ __forceinline__ InT operator()(const InT x) const {
36 37 38 39 40 41 42 43
    if (bias_after_scale) {
      return scale * x + bias;
    } else {
      return scale * (x + bias);
    }
  }
};

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

66
}  // namespace phi
67

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