logical_op.cu 2.8 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
L
Luo Tao 已提交
2 3 4 5 6 7 8 9 10
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. */
11

W
Wu Yi 已提交
12
#include "paddle/fluid/operators/controlflow/logical_op.h"
13
#include "paddle/fluid/operators/elementwise/elementwise_op_broadcast.cu.h"
14

15 16 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
namespace ops = paddle::operators;
namespace plat = paddle::platform;

namespace paddle {
namespace operators {

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

48 49 50 51 52 53 54 55 56 57
#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>>);
58

59 60 61 62
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)
63
#undef REGISTER_LOGICAL_CUDA_KERNEL