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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
namespace ops = paddle::operators;
namespace plat = paddle::platform;

namespace paddle {
namespace operators {

#define LOGICAL_BINARY_FUNCTOR(func_name, op)         \
  template <typename T>                               \
  struct func_name {                                  \
    using ELEMENT_TYPE = T;                           \
    HOSTDEVICE bool operator()(const T* args) const { \
      return args[0] op args[1];                      \
    }                                                 \
  };

LOGICAL_BINARY_FUNCTOR(CudaOrFunctor, ||)
LOGICAL_BINARY_FUNCTOR(CudaAndFunctor, &&)
LOGICAL_BINARY_FUNCTOR(CudaXorFunctor, ^)
#undef LOGICAL_BINARY_FUNCTOR

template <typename T>
struct CudaNotFunctor {
  using ELEMENT_TYPE = T;
  HOSTDEVICE bool operator()(const T* args) const { return !args[0]; }
};

template <typename Functor>
class BinaryLogicalOpKernel<platform::CUDADeviceContext, Functor>
    : public framework::OpKernel<typename Functor::ELEMENT_TYPE> {
 public:
  using InT = typename Functor::ELEMENT_TYPE;
  using OutT = bool;
  void Compute(const framework::ExecutionContext& ctx) const override {
    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) {
      LaunchElementwiseCudaKernel<ElementwiseType::kUnary, InT, OutT>(
          cuda_ctx, ins, &outs, axis, functor);
    } else {
      LaunchElementwiseCudaKernel<ElementwiseType::kBinary, InT, OutT>(
          cuda_ctx, ins, &outs, axis, functor);
    }
  }
};

}  // namespace operators
}  // namespace paddle

#define REGISTER_LOGICAL_CUDA_KERNEL(op_name, func) \
  REGISTER_OP_CUDA_KERNEL(                          \
      op_name,                                      \
      ops::BinaryLogicalOpKernel<plat::CUDADeviceContext, ops::func<bool>>);

REGISTER_LOGICAL_CUDA_KERNEL(logical_or, CudaOrFunctor)
REGISTER_LOGICAL_CUDA_KERNEL(logical_and, CudaAndFunctor)
REGISTER_LOGICAL_CUDA_KERNEL(logical_xor, CudaXorFunctor)
REGISTER_LOGICAL_CUDA_KERNEL(logical_not, CudaNotFunctor)
#undef REGISTER_LOGICAL_CUDA_KERNEL