logical_op.cu 2.9 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
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
6

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

W
Wu Yi 已提交
15
#include "paddle/fluid/operators/controlflow/logical_op.h"
16
#include "paddle/fluid/operators/elementwise/elementwise_op_broadcast.cu.h"
17

18 19 20 21 22 23 24 25
namespace paddle {
namespace operators {

template <typename Functor>
class BinaryLogicalOpKernel<platform::CUDADeviceContext, Functor>
    : public framework::OpKernel<typename Functor::ELEMENT_TYPE> {
 public:
  void Compute(const framework::ExecutionContext& ctx) const override {
26 27 28
    using InT = typename Functor::ELEMENT_TYPE;
    using OutT = bool;

29 30 31 32 33 34 35 36
    auto functor = Functor();
    std::vector<const framework::Tensor*> ins;
    std::vector<framework::Tensor*> outs;
    const auto& cuda_ctx =
        ctx.template device_context<platform::CUDADeviceContext>();
    int axis = PackTensorsIntoVector<OutT>(ctx, &ins, &outs);

    if (ins.size() == 1) {
37 38
      paddle::operators::LaunchElementwiseCudaKernel<ElementwiseType::kUnary,
                                                     InT, OutT>(
39 40
          cuda_ctx, ins, &outs, axis, functor);
    } else {
41 42
      paddle::operators::LaunchElementwiseCudaKernel<ElementwiseType::kBinary,
                                                     InT, OutT>(
43 44 45 46 47 48 49 50
          cuda_ctx, ins, &outs, axis, functor);
    }
  }
};

}  // namespace operators
}  // namespace paddle

51 52 53
namespace ops = paddle::operators;
namespace plat = paddle::platform;

54 55 56 57 58 59 60 61 62 63
#define REGISTER_LOGICAL_CUDA_KERNEL(op_name, func)                            \
  REGISTER_OP_CUDA_KERNEL(                                                     \
      op_name,                                                                 \
      ops::BinaryLogicalOpKernel<plat::CUDADeviceContext, ops::func<bool>>,    \
      ops::BinaryLogicalOpKernel<plat::CUDADeviceContext, ops::func<int8_t>>,  \
      ops::BinaryLogicalOpKernel<plat::CUDADeviceContext, ops::func<int16_t>>, \
      ops::BinaryLogicalOpKernel<plat::CUDADeviceContext, ops::func<int>>,     \
      ops::BinaryLogicalOpKernel<plat::CUDADeviceContext, ops::func<int64_t>>, \
      ops::BinaryLogicalOpKernel<plat::CUDADeviceContext, ops::func<float>>,   \
      ops::BinaryLogicalOpKernel<plat::CUDADeviceContext, ops::func<double>>);
64

65 66 67 68
REGISTER_LOGICAL_CUDA_KERNEL(logical_or, LogicalOrFunctor)
REGISTER_LOGICAL_CUDA_KERNEL(logical_and, LogicalAndFunctor)
REGISTER_LOGICAL_CUDA_KERNEL(logical_xor, LogicalXorFunctor)
REGISTER_LOGICAL_CUDA_KERNEL(logical_not, LogicalNotFunctor)
69
#undef REGISTER_LOGICAL_CUDA_KERNEL