scale_op.h 1.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"
Y
Yu Yang 已提交
19

Y
Yu Yang 已提交
20 21
namespace paddle {
namespace operators {
Q
QI JUN 已提交
22
template <typename DeviceContext, typename T>
Y
Yu Yang 已提交
23
class ScaleKernel : public framework::OpKernel<T> {
Y
Yu Yang 已提交
24
 public:
25 26 27
  virtual void Compute(const framework::ExecutionContext& ctx) const {
    auto* in_var = ctx.InputVar("X");
    auto* in = ctx.Input<framework::Tensor>("X");
Y
Yu Yang 已提交
28

29 30 31
    auto* out_var = ctx.OutputVar("Out");
    auto* out = ctx.Output<framework::Tensor>("Out");
    out->mutable_data<T>(in->place());
Y
Yu Yang 已提交
32

33 34 35 36 37 38 39 40 41 42 43 44 45
    PADDLE_ENFORCE_EQ(in->dims(), out->dims(),
                      "in and out should have the same dim");

    auto scale = static_cast<T>(ctx.Attr<float>("scale"));

    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());
    }

    auto eigen_out = framework::EigenVector<T>::Flatten(*out);
Y
Yu Yang 已提交
46
    auto eigen_in = framework::EigenVector<T>::Flatten(*in);
47
    auto& dev = *ctx.template device_context<DeviceContext>().eigen_device();
Y
Yu Yang 已提交
48
    eigen_out.device(dev) = scale * eigen_in;
Y
Yu Yang 已提交
49 50 51 52 53
  }
};

}  // namespace operators
}  // namespace paddle