elementwise_add_op.h 2.4 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
#pragma once
16 17 18 19 20 21 22 23
#ifdef __xpu__
#include <memory>
#include <string>
#include "paddle/fluid/operators/elementwise/elementwise_op.h"
#include "paddle/fluid/operators/elementwise/elementwise_op_broadcast.cu.h"
#include "paddle/fluid/operators/elementwise/elementwise_xpu.h"
#include "paddle/fluid/platform/device/device_wrapper.h"
#else
24 25
#include <algorithm>
#include <utility>
W
Wu Yi 已提交
26
#include "paddle/fluid/operators/elementwise/elementwise_op.h"
27

28 29 30
// 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"
31
#endif
32

G
gongweibao 已提交
33 34 35
namespace paddle {
namespace operators {

Q
QI JUN 已提交
36
template <typename DeviceContext, typename T>
Y
Yu Yang 已提交
37
class ElementwiseAddKernel : public framework::OpKernel<T> {
G
gongweibao 已提交
38
 public:
39 40 41 42 43 44 45 46 47 48 49
  void Compute(const framework::ExecutionContext& ctx) const override {
#ifdef __xpu__
    std::vector<const framework::Tensor*> ins;
    std::vector<framework::Tensor*> outs;
    int axis = PackTensorsIntoVector<T>(ctx, &ins, &outs);
    const auto& xpu_ctx =
        ctx.template device_context<paddle::platform::XPUDeviceContext>();
    paddle::operators::LaunchElementwiseCudaKernel<ElementwiseType::kBinary, T,
                                                   T, kps::AddFunctor<T>, 1>(
        xpu_ctx, ins, &outs, axis, kps::AddFunctor<T>());
#else
C
chengduo 已提交
50 51 52
    auto *x = ctx.Input<framework::LoDTensor>("X");
    auto *y = ctx.Input<framework::LoDTensor>("Y");
    auto *z = ctx.Output<framework::LoDTensor>("Out");
C
chengduoZH 已提交
53
    z->mutable_data<T>(ctx.GetPlace());
54 55 56

    auto &dev_ctx = ctx.device_context<DeviceContext>();
    int axis = ctx.Attr<int>("axis");
57
    phi::AddRawKernel<T>(
W
Wilber 已提交
58 59
        static_cast<const typename framework::ConvertToPtenContext<
            DeviceContext>::TYPE &>(dev_ctx),
60
        *x, *y, axis, z);
61
#endif
G
gongweibao 已提交
62 63 64 65 66
  }
};

}  // namespace operators
}  // namespace paddle