elementwise_add_op.h 1.6 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
G
gongweibao 已提交
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
G
gongweibao 已提交
6

L
Luo Tao 已提交
7
    http://www.apache.org/licenses/LICENSE-2.0
G
gongweibao 已提交
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. */
14

F
fengjiayi 已提交
15 16
#pragma once

17 18
#include <algorithm>
#include <utility>
W
Wu Yi 已提交
19
#include "paddle/fluid/operators/elementwise/elementwise_op.h"
20

21 22 23
// only can include the headers in paddle/phi/include dirs
#include "paddle/phi/kernels/elementwise_grad_kernel.h"
#include "paddle/phi/kernels/math_kernel.h"
24

G
gongweibao 已提交
25 26 27
namespace paddle {
namespace operators {

Q
QI JUN 已提交
28
template <typename DeviceContext, typename T>
Y
Yu Yang 已提交
29
class ElementwiseAddKernel : public framework::OpKernel<T> {
G
gongweibao 已提交
30
 public:
C
chengduo 已提交
31 32 33 34
  void Compute(const framework::ExecutionContext &ctx) const override {
    auto *x = ctx.Input<framework::LoDTensor>("X");
    auto *y = ctx.Input<framework::LoDTensor>("Y");
    auto *z = ctx.Output<framework::LoDTensor>("Out");
C
chengduoZH 已提交
35
    z->mutable_data<T>(ctx.GetPlace());
36 37 38

    auto &dev_ctx = ctx.device_context<DeviceContext>();
    int axis = ctx.Attr<int>("axis");
39
    phi::AddRawKernel<T>(
W
Wilber 已提交
40 41
        static_cast<const typename framework::ConvertToPtenContext<
            DeviceContext>::TYPE &>(dev_ctx),
42
        *x, *y, axis, z);
G
gongweibao 已提交
43 44 45 46 47
  }
};

}  // namespace operators
}  // namespace paddle