scale_op.h 2.9 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
Y
Yu Yang 已提交
2

L
Luo Tao 已提交
3 4 5
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
Y
Yu Yang 已提交
6

L
Luo Tao 已提交
7
    http://www.apache.org/licenses/LICENSE-2.0
Y
Yu Yang 已提交
8

L
Luo Tao 已提交
9 10 11 12 13
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. */
Y
Yu Yang 已提交
14 15 16

#pragma once

Y
Yi Wang 已提交
17 18
#include "paddle/fluid/framework/eigen.h"
#include "paddle/fluid/framework/op_registry.h"
19
#include "paddle/fluid/operators/eigen/eigen_function.h"
Y
Yu Yang 已提交
20

Y
Yu Yang 已提交
21 22
namespace paddle {
namespace operators {
23

24 25 26
template <typename T>
static inline T GetAttrFromTensor(const framework::Tensor* tensor) {
  const auto* tensor_data = tensor->data<T>();
27
  framework::Tensor cpu_tensor;
28 29
  if (platform::is_gpu_place(tensor->place()) ||
      platform::is_npu_place(tensor->place())) {
30
    TensorCopySync(*tensor, platform::CPUPlace(), &cpu_tensor);
31
    tensor_data = cpu_tensor.data<T>();
32 33 34 35
  }
  return tensor_data[0];
}

Q
QI JUN 已提交
36
template <typename DeviceContext, typename T>
Y
Yu Yang 已提交
37
class ScaleKernel : public framework::OpKernel<T> {
Y
Yu Yang 已提交
38
 public:
39 40
  virtual void Compute(const framework::ExecutionContext& ctx) const {
    auto* in_var = ctx.InputVar("X");
C
chengduo 已提交
41
    auto* in = framework::GetLoDTensorOrSelectedRowsValueFromVar(*in_var);
S
sneaxiy 已提交
42 43

    auto bias = static_cast<T>(ctx.Attr<float>("bias"));
S
sneaxiy 已提交
44
    auto bias_after_scale = ctx.Attr<bool>("bias_after_scale");
S
sneaxiy 已提交
45

46 47 48
    auto scale = static_cast<T>(ctx.Attr<float>("scale"));
    if (ctx.HasInput("ScaleTensor")) {
      auto* scale_tensor = ctx.Input<framework::Tensor>("ScaleTensor");
49
      scale = GetAttrFromTensor<T>(scale_tensor);
50 51
    }

C
chengduo 已提交
52
    auto* out_var = ctx.OutputVar("Out");
S
sneaxiy 已提交
53 54 55 56 57 58 59
    if (in_var->IsType<framework::SelectedRows>() && in_var != out_var) {
      auto& in_slr = in_var->Get<framework::SelectedRows>();
      auto* out_slr = out_var->GetMutable<framework::SelectedRows>();
      out_slr->set_rows(in_slr.rows());
      out_slr->set_height(in_slr.height());
    }

C
chengduo 已提交
60 61 62 63 64
    auto* out =
        framework::GetMutableLoDTensorOrSelectedRowsValueFromVar(out_var);
    out->mutable_data<T>(in->place());

    PADDLE_ENFORCE_EQ(in->dims(), out->dims(),
65 66 67 68
                      paddle::platform::errors::InvalidArgument(
                          "the input and output should have the same dim"
                          "but input dim is %s, output dim is %s",
                          in->dims(), out->dims()));
C
chengduo 已提交
69

S
sneaxiy 已提交
70
    auto eigen_out = framework::EigenVector<T>::Flatten(*out);
Y
Yu Yang 已提交
71
    auto eigen_in = framework::EigenVector<T>::Flatten(*in);
S
sneaxiy 已提交
72
    auto& dev = *ctx.template device_context<DeviceContext>().eigen_device();
73 74
    EigenScale<std::decay_t<decltype(dev)>, T>::Eval(
        dev, eigen_out, eigen_in, scale, bias, bias_after_scale);
Y
Yu Yang 已提交
75 76 77 78 79
  }
};

}  // namespace operators
}  // namespace paddle