scale_kernel.cu 2.3 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
#include "paddle/pten/kernels/scale_kernel.h"
16

17
#include "paddle/pten/backends/gpu/gpu_context.h"
18
#include "paddle/pten/core/kernel_registry.h"
19
#include "paddle/pten/kernels/funcs/elementwise_base.h"
20
// See Note [ Why still include the fluid headers? ]
21
#include "paddle/pten/common/float16.h"
22

23 24 25 26 27 28 29 30
namespace pten {

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

31 32 33 34
  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) {}
35

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

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

}  // namespace pten

66 67 68 69 70 71
PT_REGISTER_KERNEL(scale,
                   GPU,
                   ALL_LAYOUT,
                   pten::ScaleKernel,
                   float,
                   double,
72
                   pten::dtype::float16,
73 74 75 76 77
                   uint8_t,
                   int8_t,
                   int16_t,
                   int,
                   int64_t) {}