scale_op_xpu.cc 2.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/* Copyright (c) 2020 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. */

#ifdef PADDLE_WITH_XPU

#include <string>
18
#include "paddle/fluid/framework/op_registry.h"
19
#include "paddle/pten/kernels/scale_kernel.h"
20 21 22 23 24

namespace paddle {
namespace operators {
template <typename DeviceContext, typename T>
class ScaleXPUKernel : public framework::OpKernel<T> {
T
taixiurong 已提交
25 26
  using XPUType = typename XPUTypeTrait<T>::Type;

27 28 29 30
 public:
  virtual void Compute(const framework::ExecutionContext& ctx) const {
    auto* in_var = ctx.InputVar("X");
    auto* in = framework::GetLoDTensorOrSelectedRowsValueFromVar(*in_var);
T
taixiurong 已提交
31 32
    auto scale = static_cast<float>(ctx.Attr<float>("scale"));
    auto bias = static_cast<float>(ctx.Attr<float>("bias"));
33 34
    auto bias_after_scale = ctx.Attr<bool>("bias_after_scale");
    auto* out_var = ctx.OutputVar("Out");
35 36 37
    if (in_var->IsType<pten::SelectedRows>() && in_var != out_var) {
      auto& in_slr = in_var->Get<pten::SelectedRows>();
      auto* out_slr = out_var->GetMutable<pten::SelectedRows>();
38 39 40 41 42 43 44
      out_slr->set_rows(in_slr.rows());
      out_slr->set_height(in_slr.height());
    }
    auto* out =
        framework::GetMutableLoDTensorOrSelectedRowsValueFromVar(out_var);
    out->mutable_data<T>(in->place());
    auto& dev_ctx = ctx.template device_context<DeviceContext>();
45 46 47 48 49
    // call pten kernel
    pten::ScaleKernel<T>(
        static_cast<const typename framework::ConvertToPtenContext<
            DeviceContext>::TYPE&>(dev_ctx),
        *in, scale, bias, bias_after_scale, out);
50 51 52 53 54 55 56
  }
};

}  // namespace operators
}  // namespace paddle

namespace ops = paddle::operators;
T
taixiurong 已提交
57

58
REGISTER_OP_XPU_KERNEL(
T
taixiurong 已提交
59 60 61 62
    scale, ops::ScaleXPUKernel<paddle::platform::XPUDeviceContext, float>,
    ops::ScaleXPUKernel<paddle::platform::XPUDeviceContext,
                        paddle::platform::float16>,
    ops::ScaleXPUKernel<paddle::platform::XPUDeviceContext, int64_t>);
63 64

#endif