scale_kernel.cc 2.2 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/phi/kernels/scale_kernel.h"
16

17 18 19 20 21
#include "paddle/phi/backends/cpu/cpu_context.h"
#include "paddle/phi/common/scalar.h"
#include "paddle/phi/core/dense_tensor.h"
#include "paddle/phi/core/kernel_registry.h"
#include "paddle/phi/kernels/funcs/eigen/common.h"
22

23
// See Note [ Why still include the fluid headers? ]
24
#include "paddle/fluid/operators/eigen/eigen_function.h"
25 26
#include "paddle/phi/common/bfloat16.h"
namespace phi {
27 28 29 30 31 32 33 34 35

template <typename T, typename Context>
void ScaleKernel(const Context& dev_ctx,
                 const DenseTensor& x,
                 const Scalar& scale,
                 float bias,
                 bool bias_after_scale,
                 DenseTensor* out) {
  // calc
36
  dev_ctx.template Alloc<T>(out);
37 38
  auto eigen_out = phi::EigenVector<T>::Flatten(*out);
  auto eigen_x = phi::EigenVector<T>::Flatten(x);
39 40 41 42 43 44 45 46 47 48 49 50 51
  auto& dev = *dev_ctx.eigen_device();
  // TODO(chenweihang): now the eigen function here need the dtype of scale,
  // eigen_x, bias should be same, so here need cast for two scalar arg,
  // maybe we declare that the type of scale and bias is T?
  paddle::operators::EigenScale<std::decay_t<decltype(dev)>, T>::Eval(
      dev,
      eigen_out,
      eigen_x,
      scale.to<T>(),
      static_cast<T>(bias),
      bias_after_scale);
}

52
}  // namespace phi
53

54 55 56
PT_REGISTER_KERNEL(scale,
                   CPU,
                   ALL_LAYOUT,
57
                   phi::ScaleKernel,
58 59
                   float,
                   double,
60
                   phi::dtype::bfloat16,
61 62 63 64 65
                   uint8_t,
                   int8_t,
                   int16_t,
                   int,
                   int64_t) {}